Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Unreleased
- Update the AppAuth-iOS dependency to version 2.1.0 ([#954](https://github.com/openid/AppAuth-iOS/pull/954), [#955](https://github.com/openid/AppAuth-iOS/pull/955))
# 9.2.0
- Expose the refresh token expiration date ([#577](https://github.com/google/GoogleSignIn-iOS/pull/577))
- Support requesting the `amr` (Authentication Methods References) claim ([#600](https://github.com/google/GoogleSignIn-iOS/pull/600))
- Remove keychain entries on a fresh install ([#567](https://github.com/google/GoogleSignIn-iOS/pull/567))
- Update the AppAuth-iOS dependency minimum to 2.1.0 ([#603](https://github.com/google/GoogleSignIn-iOS/pull/603))
- Fix optional bundle handling for localized strings ([#373](https://github.com/google/GoogleSignIn-iOS/pull/373))
- Include all public headers unconditionally in the umbrella header ([#595](https://github.com/google/GoogleSignIn-iOS/pull/595))
- Move `GIDSignInButton` import outside of conditional compilation ([#591](https://github.com/google/GoogleSignIn-iOS/pull/591))
- Internal
- Fix Swift Package Manager deprecation warnings ([#579](https://github.com/google/GoogleSignIn-iOS/pull/579))
- Improve doc comment for `GIDSignInButtonStyle` ([#204](https://github.com/google/GoogleSignIn-iOS/pull/204))
- Resolve unassigned child warning in the `AppIcon` asset catalog ([#348](https://github.com/google/GoogleSignIn-iOS/pull/348))
- Refactor GitHub Actions workflow ([#580](https://github.com/google/GoogleSignIn-iOS/pull/580))
- Upgrade GitHub Actions to the latest versions for Node 24 compatibility ([#592](https://github.com/google/GoogleSignIn-iOS/pull/592), [#593](https://github.com/google/GoogleSignIn-iOS/pull/593))

# 9.1.0
- Allow requesting `claims` (currently, only `auth_time`) via [Sign-in methods](https://github.com/google/GoogleSignIn-iOS/blob/gandhiakshat/update-changelog-for-9.1.0-release/GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignIn.h#L240) ([#550](https://github.com/google/GoogleSignIn-iOS/pull/550), [#552](https://github.com/google/GoogleSignIn-iOS/pull/552), [#553](https://github.com/google/GoogleSignIn-iOS/pull/553), [#569](https://github.com/google/GoogleSignIn-iOS/pull/569))
Expand Down
2 changes: 1 addition & 1 deletion GoogleSignIn.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'GoogleSignIn'
s.version = '9.1.0'
s.version = '9.2.0'
s.summary = 'Enables iOS apps to sign in with Google.'
s.description = <<-DESC
The Google Sign-In SDK allows users to sign in with their Google account from third-party apps.
Expand Down
2 changes: 1 addition & 1 deletion GoogleSignInSwiftSupport.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'GoogleSignInSwiftSupport'
s.version = '9.1.0'
s.version = '9.2.0'
s.swift_version = '5.0'
s.summary = 'Adds Swift-focused support for Google Sign-In.'
s.description = 'Additional Swift support for the Google Sign-In SDK.'
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import PackageDescription

let googleSignInVersion = "9.1.0"
let googleSignInVersion = "9.2.0"

let package = Package(
name: "GoogleSignIn",
Expand Down
2 changes: 1 addition & 1 deletion Package@swift-5.5.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import PackageDescription

let googleSignInVersion = "9.1.0"
let googleSignInVersion = "9.2.0"

let package = Package(
name: "GoogleSignIn",
Expand Down
Loading