Closed greenkeeper[bot] closed 5 years ago
After pinning to 1.0.0-rc6 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.
dependency
react-native-google-signin was updated from 1.0.0-rc7
to 1.0.0-rc8
.Your tests are still failing with this version. Compare changes
With this RC, we're finally getting close to releasing v1 proper.
This release fixes a long-standing technical debt on iOS: previously, as can be seen here we were storing the google sign in SDK in the repo and distributing it in the npm package, and referring to it in the installation instructions.
In this release we have rewritten the installation instructions for iOS and made sure that we depend only on the SDK that you get via pods or manually, if you do not use pods.
We recommend that you remove Google Sign In-related dependencies from your project and install anew. Namely, remove AddressBook.framework
, SafariServices.framework
, SystemConfiguration.framework
, libz.tbd
, GoogleUtilities.framework
, GoogleAuthUtilities.framework
, GoogleNetworkingUtilities.framework
, GoogleSignIn.bundle
, GoogleSignIn.framework
, GoogleSymbolUtilities.framework
, GoogleUtilities.framework
from the linked libraries / framework group in Xcode. Also remove RNGoogleSignin.xcodeproj
from Libraries
group.
Then follow the new installation guide for ios here.
If you run into any problems, please open a new issue with detailed description of the problem.
Thanks to everybody using and contribution to the library!
dependency
react-native-google-signin was updated from 1.0.0-rc8
to 1.0.0
.Your tests are still failing with this version. Compare changes
googlePlayServicesVersion
to googlePlayServicesAuthVersion
(#562)
Update android/build.gradle
with:
+ googlePlayServicesAuthVersion = "your version"
- googlePlayServicesVersion = "your version"
More details in the android guide.
full list of commits here
Thanks everyone using and contributing to the lib!
The new version differs by 10 commits.
6c6d60c
1.0.0
ae5fc61
rename googlePlayServicesVersion to googlePlayServicesAuthVersion (#562)
52f6ddb
Adding support for login hint [iOS] (#551)
919b35e
feat(static-types): expose types for Flow and TypeScript (#554)
7a11eda
Update android-guide.md (#565)
5711988
Update how-cocoapods.md (#558)
62baf7b
remove old images (#557)
2840448
Update android-guide.md (#556)
9b224fc
Merge pull request #555 from react-native-community/enable-static-framework-support
24062f1
Update RNGoogleSignin.podspec
See the full diff
dependency
react-native-google-signin was updated from 1.0.0
to 1.0.1
.Your tests are still failing with this version. Compare changes
loginHint
to flow and TS typingsThe new version differs by 8 commits.
b448990
1.0.1
90f2a68
Merge pull request #573 from react-native-community/@andrei/remove-ts-types
3776410
Update ios-guide.md
674f191
feat(types): udpate with loginHit
46e2322
fix(types): add types back and copy from DT
395bab4
fix(types): remove TS types rely on definitely typed
a427539
Update ios-guide.md
4654f46
Update ios-guide.md
See the full diff
dependency
react-native-google-signin was updated from 1.0.1
to 1.0.2
.Your tests are still failing with this version. Compare changes
This is a maintenance release that upgrades android build tools
Thanks everyone for using this library and contributing in any way!
dependency
react-native-google-signin was updated from 1.0.4
to 1.1.0
.Your tests are still failing with this version. Compare changes
This release adds
getCurrentUser
through #616As always, thanks for using the library, reporting issues and contributing!
The new version differs by 11 commits.
446296c
1.1.0
a5ce828
add getCurrentUser (#616)
0cb7416
specify pod version in ios docs
15b43cd
1.0.4
25d86ab
fix prop type
89c530d
import DeviceEventEmitter
914c40e
1.0.3
4808fb2
merge the JS files for buttons (#614)
f0b30fd
Added StyleProp (#611)
1397625
Update get-config-file.md
ecf86a6
Update get-config-file.md
See the full diff
dependency
react-native-google-signin was updated from 1.1.0
to 1.2.0
.Your tests are still failing with this version. Compare changes
This release adds two new functions through #619
dependency
react-native-google-signin was updated from 1.2.0
to 1.2.1
.Your tests are still failing with this version. Compare changes
dependency
react-native-google-signin was updated from 1.2.1
to 1.2.2
.Your tests are still failing with this version. Compare changes
There are also small improvements to docs.
Thanks everyone for using the library, reporting issues and contributing!
The new version differs by 6 commits.
ef95763
1.2.2
0f94458
fix typings since typescript 3.1.1 (#635)
924b152
specify GoogleSignIn
version in podspec file (#634)
f34f0cd
Corrects which certificate to get from Play Store (#631)
5867755
add RNGoogleSignin pod to cocoapods example (#630)
544538c
Updated the path to get RNGoogleSignin.xcodeproj (#627)
See the full diff
dependency
react-native-google-signin was updated from 1.2.2
to 1.2.3
.Your tests are still failing with this version. Compare changes
GoogleSignIn/GoogleSignIn.h file not found
The new version differs by 7 commits.
ee4aaf3
1.2.3
c8a0c9d
make framework search paths more explicit (#648)
4208f33
iOS fix: GoogleSignin framework location for 'Without Cocoapods' inst… (#643)
87d6837
make promise handling more streamlined (#647)
b9d3b84
check clearCachedToken argument (#646)
75f8f44
Update Custom.md
435b42e
Update Custom.md
See the full diff
The dependency react-native-google-signin was updated from
1.0.0-rc6
to1.0.0-rc7
.🚨 View failing branch.
This version is covered by your current version range and after updating it in your project the build failed.
react-native-google-signin is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.
Status Details
- ✅ **ci/circleci: build:** Your tests passed on CircleCI! ([Details](https://circleci.com/gh/dwmkerr/gameboard/955?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link)). - ❌ **ci/circleci: ios:** Your tests failed on CircleCI ([Details](https://circleci.com/gh/dwmkerr/gameboard/956?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link)).Release Notes for v1.0.0-rc7
Improvements
iosClientId
configuration option is backThe option was removed in v1.0.0-rc4 in favor of reading this value from
GoogleService-Info.plist
. In this release, you can manually pass the value to theconfigure
call and if this value is provided, it will take precedence over theclientID
specified inGoogleService-Info.plist
.Error messages provide more debugging information
Previously, the library would provide generic error messages that did not give a lot of information about what went wrong. This release adds better error messages for runtime errors as well as for the case when the native module is not correctly linked.
Commits
The new version differs by 5 commits.
2933bf1
1.0.0-rc7
99915be
show better error if module is not linked (#549)
2f832b3
add more context to error messages (#533)
aee8c44
[iOS] Add the possibility to specify iosClientId in configure() options (#547)
3e9a6b7
Update ios-guide.md (#538)
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper Bot :palm_tree: