Skip to content

Commit f34e7c6

Browse files
authored
Prepare for Firebase App Check EAP release (#352)
1 parent 550bddb commit f34e7c6

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# 7.1.0-fac-eap-1.0.0
2+
- Early Access Program (EAP) release supporting Firebase App Check tokens used
3+
to establish your application's integrity while signing in with Google
4+
- Use [`-[GIDSignIn configureWithCompletion:]`](https://github.com/google/GoogleSignIn-iOS/blob/7.1.0-fac-eap-1.0.0/GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignIn.h#L79)
5+
to configure GSI to use Firebase App Check as early as possible in your app
6+
to minimize latency.
7+
- Use [`-[GIDSignIn configureDebugProviderWithAPIKey:completion:]`](https://github.com/google/GoogleSignIn-iOS/blob/7.1.0-fac-eap-1.0.0/GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignIn.h#L91)
8+
in debug builds or continuous integration environments.
9+
- New [sample app](https://github.com/google/GoogleSignIn-iOS/tree/7.1.0-fac-eap-1.0.0/Samples/Swift/AppAttestExample)
10+
showing example of configuring GSI to use Firebase App Check.
11+
- Internal
12+
- Fix typo in `SFSafariViewController` ([#291](https://github.com/google/GoogleSignIn-iOS/pull/291))
13+
- Removes `macos-11` runner in GitHub workflows ([#302](https://github.com/google/GoogleSignIn-iOS/pull/302))
14+
- Updates button name reference so UI automation tests pass ([#308](https://github.com/google/GoogleSignIn-iOS/pull/308))
15+
- Ensure that `completion` is not nil before calling
16+
`-[GIDSignIn restorePreviousSignIn:]` ([#301](https://github.com/google/GoogleSignIn-iOS/pull/301))
17+
- Use new [delegate protocol](https://github.com/google/GTMAppAuth/pull/224)
18+
from GTMAppAuth 4.0.0 ([#299](https://github.com/google/GoogleSignIn-iOS/pull/299))
19+
120
# 7.0.0
221
- All configuration can now be provided via your `Info.plist` file. ([#228](https://github.com/google/GoogleSignIn-iOS/pull/228))
322
- Use the following keys in `<key>KEY</key><string>VALUE</string>` pairs to configure the SDK:

GoogleSignIn.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'GoogleSignIn'
3-
s.version = '7.0.0'
3+
s.version = '7.1.0-fac-eap-1.0.0'
44
s.summary = 'Enables iOS apps to sign in with Google.'
55
s.description = <<-DESC
66
The Google Sign-In SDK allows users to sign in with their Google account from third-party apps.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import PackageDescription
1919

20-
let googleSignInVersion = "7.0.0"
20+
let googleSignInVersion = "7.1.0-fac-eap-1.0.0"
2121

2222
let package = Package(
2323
name: "GoogleSignIn",

0 commit comments

Comments
 (0)