diff --git a/CHANGELOG.md b/CHANGELOG.md index cc9919ead..c69a8be10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ [1]: https://pypi.org/project/google-auth/#history +### [1.11.2](https://www.github.com/googleapis/google-auth-library-python/compare/v1.11.1...v1.11.2) (2020-02-14) + + +### Reverts + +* Revert "fix: update `_GOOGLE_OAUTH2_CERTS_URL` (#365)" (#444) ([901c259](https://www.github.com/googleapis/google-auth-library-python/commit/901c259b1764f5a305a542cbae14d926ba7a57db)), closes [#365](https://www.github.com/googleapis/google-auth-library-python/issues/365) [#444](https://www.github.com/googleapis/google-auth-library-python/issues/444) + ### [1.11.1](https://www.github.com/googleapis/google-auth-library-python/compare/v1.11.0...v1.11.1) (2020-02-13) diff --git a/google/oauth2/id_token.py b/google/oauth2/id_token.py index 5113c9926..1dbfb20ad 100644 --- a/google/oauth2/id_token.py +++ b/google/oauth2/id_token.py @@ -67,7 +67,7 @@ # The URL that provides public certificates for verifying ID tokens issued # by Google's OAuth 2.0 authorization server. -_GOOGLE_OAUTH2_CERTS_URL = "https://www.googleapis.com/oauth2/v3/certs" +_GOOGLE_OAUTH2_CERTS_URL = "https://www.googleapis.com/oauth2/v1/certs" # The URL that provides public certificates for verifying ID tokens issued # by Firebase and the Google APIs infrastructure diff --git a/setup.py b/setup.py index 09ef6d14a..f0a20aa77 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ with io.open("README.rst", "r") as fh: long_description = fh.read() -version = "1.11.1" +version = "1.11.2" setup( name="google-auth",