From 4059a5d33a5d5c66776adddbb0eeea373a66dffb Mon Sep 17 00:00:00 2001 From: ohmayr Date: Tue, 14 Oct 2025 08:23:13 +0000 Subject: [PATCH 1/3] feat: onboard `google-auth` to librarian --- .librarian/config.yaml | 6 ++++++ .librarian/state.yaml | 25 +++++++++++++++++++++++++ CHANGELOG.md | 7 +++++++ google/auth/__init__.py | 3 +++ 4 files changed, 41 insertions(+) create mode 100644 .librarian/config.yaml create mode 100644 .librarian/state.yaml diff --git a/.librarian/config.yaml b/.librarian/config.yaml new file mode 100644 index 000000000..111f94dd5 --- /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 000000000..019f97510 --- /dev/null +++ b/.librarian/state.yaml @@ -0,0 +1,25 @@ +image: python-librarian-generator:latest +libraries: + - id: google-auth + version: 2.41.1 + last_generated_commit: 102d9f92ac6ed649a61efd9b208e4d1de278e9bb + apis: [] + source_roots: + - docs + - google + - samples + - scripts + - system_tests + - testing + - tests + - tests_async + - .repo-metadata.json + - CHANGELOG.md + - CONTRIBUTING.rst + - LICENSE + - MANIFEST.in + - noxfile.py + preserve_regex: + - .* + remove_regex: [] + tag_format: 'v{version}' diff --git a/CHANGELOG.md b/CHANGELOG.md index 90299bdf5..7651fbd5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ [1]: https://pypi.org/project/google-auth/#history +## [2.41.2](https://github.com/googleapis/google-auth-library-python/compare/v2.41.1...v2.41.2) (2025-10-14) + + +### Bug Fixes + +* Testing changes + ## [2.41.1](https://github.com/googleapis/google-auth-library-python/compare/v2.41.0...v2.41.1) (2025-09-30) diff --git a/google/auth/__init__.py b/google/auth/__init__.py index 765bbd705..fc352451a 100644 --- a/google/auth/__init__.py +++ b/google/auth/__init__.py @@ -51,3 +51,6 @@ class Python37DeprecationWarning(DeprecationWarning): # pragma: NO COVER # Set default logging handler to avoid "No handler found" warnings. logging.getLogger(__name__).addHandler(logging.NullHandler()) + + +## test change \ No newline at end of file From aeb74c34635e95bb75fb33bd9310fea79e55957b Mon Sep 17 00:00:00 2001 From: ohmayr Date: Wed, 15 Oct 2025 22:44:17 +0000 Subject: [PATCH 2/3] remove files --- .github/.OwlBot.lock.yaml | 17 ----------------- .github/.OwlBot.yaml | 18 ------------------ .github/release-please.yml | 2 -- .github/release-trigger.yml | 1 - 4 files changed, 38 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 diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml deleted file mode 100644 index c4e82889d..000000000 --- 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:023a21377a2a00008057f99f0118edadc30a19d1636a3fee47189ebec2f3921c -# created: 2025-03-31T16:51:40.130756953Z diff --git a/.github/.OwlBot.yaml b/.github/.OwlBot.yaml deleted file mode 100644 index ed6155aab..000000000 --- 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 466597e5b..000000000 --- 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 d4ca94189..000000000 --- a/.github/release-trigger.yml +++ /dev/null @@ -1 +0,0 @@ -enabled: true From efd607d4c874f806eed876e7cc5447be40cb1308 Mon Sep 17 00:00:00 2001 From: ohmayr Date: Wed, 15 Oct 2025 23:32:02 +0000 Subject: [PATCH 3/3] chore: create a release --- .librarian/state.yaml | 4 ++-- CHANGELOG.md | 14 ++++++++++++++ google/auth/version.py | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.librarian/state.yaml b/.librarian/state.yaml index 019f97510..802ccbf15 100644 --- a/.librarian/state.yaml +++ b/.librarian/state.yaml @@ -1,7 +1,7 @@ image: python-librarian-generator:latest libraries: - id: google-auth - version: 2.41.1 + version: 2.42.0 last_generated_commit: 102d9f92ac6ed649a61efd9b208e4d1de278e9bb apis: [] source_roots: @@ -22,4 +22,4 @@ libraries: preserve_regex: - .* remove_regex: [] - tag_format: 'v{version}' + tag_format: v{version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 7651fbd5c..6b4ad1ee7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ [1]: https://pypi.org/project/google-auth/#history +## [2.42.0](https://github.com/googleapis/google-cloud-python/compare/google-auth-v2.41.1...google-auth-v2.42.0) (2025-10-15) + + +### Features + +* onboard `google-auth` to librarian ([4059a5d33a5d5c66776adddbb0eeea373a66dffb](https://github.com/googleapis/google-cloud-python/commit/4059a5d33a5d5c66776adddbb0eeea373a66dffb)) +* Add trust boundary support for external accounts. (#1809) * feat: Add trust boundary support for external accounts. +* Add trust boundary support to external account authorized users. +* Fix lint issues +* Implement additional unit tests for external account authorized user. +* fix formatting issue +* Add a unit test with invalid audiance +* add missing unit tests ([36ecb1d65883477d27faf9c2281fc289659b9903](https://github.com/googleapis/google-cloud-python/commit/36ecb1d65883477d27faf9c2281fc289659b9903)) + ## [2.41.2](https://github.com/googleapis/google-auth-library-python/compare/v2.41.1...v2.41.2) (2025-10-14) diff --git a/google/auth/version.py b/google/auth/version.py index 6f67e6b34..208942661 100644 --- a/google/auth/version.py +++ b/google/auth/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "2.41.1" +__version__ = "2.42.0"