From 8c7ccb9bf98260912393c680308720ab22c315ed Mon Sep 17 00:00:00 2001 From: ohmayr Date: Tue, 28 Oct 2025 21:07:57 +0000 Subject: [PATCH 1/3] feat: onboard to librarian --- .github/.OwlBot.lock.yaml | 17 ----------------- .github/.OwlBot.yaml | 18 ------------------ .github/release-please.yml | 2 -- .github/release-trigger.yml | 2 -- .librarian/config.yaml | 6 ++++++ .librarian/state.yaml | 10 ++++++++++ 6 files changed, 16 insertions(+), 39 deletions(-) delete mode 100644 .github/.OwlBot.lock.yaml delete mode 100644 .github/.OwlBot.yaml delete mode 100644 .github/release-please.yml delete mode 100644 .github/release-trigger.yml create mode 100644 .librarian/config.yaml create mode 100644 .librarian/state.yaml diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml deleted file mode 100644 index 8e6bb54..0000000 --- a/.github/.OwlBot.lock.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2025 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -docker: - image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest - digest: sha256:5581906b957284864632cde4e9c51d1cc66b0094990b27e689132fe5cd036046 -# created: 2025-03-05 \ No newline at end of file diff --git a/.github/.OwlBot.yaml b/.github/.OwlBot.yaml deleted file mode 100644 index ed6155a..0000000 --- a/.github/.OwlBot.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -docker: - image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest - -begin-after-commit-hash: ee56c3493ec6aeb237ff515ecea949710944a20f diff --git a/.github/release-please.yml b/.github/release-please.yml deleted file mode 100644 index 466597e..0000000 --- a/.github/release-please.yml +++ /dev/null @@ -1,2 +0,0 @@ -releaseType: python -handleGHRelease: true diff --git a/.github/release-trigger.yml b/.github/release-trigger.yml deleted file mode 100644 index 5443d4c..0000000 --- a/.github/release-trigger.yml +++ /dev/null @@ -1,2 +0,0 @@ -enabled: true -multiScmName: google-auth-library-python-oauthlib diff --git a/.librarian/config.yaml b/.librarian/config.yaml new file mode 100644 index 0000000..111f94d --- /dev/null +++ b/.librarian/config.yaml @@ -0,0 +1,6 @@ +global_files_allowlist: + # Allow the container to read and write the root `CHANGELOG.md` + # file during the `release` step to update the latest client library + # versions which are hardcoded in the file. + - path: "CHANGELOG.md" + permissions: "read-write" diff --git a/.librarian/state.yaml b/.librarian/state.yaml new file mode 100644 index 0000000..c4a3529 --- /dev/null +++ b/.librarian/state.yaml @@ -0,0 +1,10 @@ +image: us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator:latest +libraries: + - id: google-auth-oauthlib + version: 2.42.0 + apis: [] + source_roots: + - . + preserve_regex: [] + remove_regex: [] + tag_format: v{version} From 3776979ef94270dc6f550a215de5fddac4d0ef0e Mon Sep 17 00:00:00 2001 From: ohmayr Date: Tue, 28 Oct 2025 21:09:11 +0000 Subject: [PATCH 2/3] fix version --- .librarian/state.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.librarian/state.yaml b/.librarian/state.yaml index c4a3529..110a68e 100644 --- a/.librarian/state.yaml +++ b/.librarian/state.yaml @@ -1,7 +1,7 @@ image: us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator:latest libraries: - id: google-auth-oauthlib - version: 2.42.0 + version: 1.2.2 apis: [] source_roots: - . From 0ff46c637ffd922bb2336a4d2c812904c6c65f4b Mon Sep 17 00:00:00 2001 From: ohmayr Date: Tue, 28 Oct 2025 21:09:22 +0000 Subject: [PATCH 3/3] chore: create a release --- .librarian/state.yaml | 3 ++- CHANGELOG.md | 19 +++++++++++++++++++ setup.py | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.librarian/state.yaml b/.librarian/state.yaml index 110a68e..3f5a49b 100644 --- a/.librarian/state.yaml +++ b/.librarian/state.yaml @@ -1,7 +1,8 @@ image: us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator:latest libraries: - id: google-auth-oauthlib - version: 1.2.2 + version: 1.3.0 + last_generated_commit: "" apis: [] source_roots: - . diff --git a/CHANGELOG.md b/CHANGELOG.md index b0259d1..91586de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ [1]: https://pypi.org/project/google-auth-oauthlib/#history +## [1.3.0](https://github.com/googleapis/google-cloud-python/compare/google-auth-oauthlib-v1.2.2...google-auth-oauthlib-v1.3.0) (2025-10-28) + + +### Features + +* onboard to librarian ([8c7ccb9bf98260912393c680308720ab22c315ed](https://github.com/googleapis/google-cloud-python/commit/8c7ccb9bf98260912393c680308720ab22c315ed)) + + +### Bug Fixes + +* explicitly declare Python 3.13 support (#408) * fix: explicitly delare Python 3.13 support +* add constraints +* 🦉 Updates from OwlBot post-processor +See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md +* 🦉 Updates from OwlBot post-processor +See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md +* remove .kokoro/samples since there are no samples +--------- ([4b1a5f33f282af79999d7ed80d11a246a7e301a2](https://github.com/googleapis/google-cloud-python/commit/4b1a5f33f282af79999d7ed80d11a246a7e301a2)) + ## [1.2.2](https://github.com/googleapis/google-auth-library-python-oauthlib/compare/v1.2.1...v1.2.2) (2025-04-01) diff --git a/setup.py b/setup.py index 7f615b8..e79a258 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ long_description = fh.read() -version = "1.2.2" +version = "1.3.0" setup( name="google-auth-oauthlib",