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..802ccbf15 --- /dev/null +++ b/.librarian/state.yaml @@ -0,0 +1,25 @@ +image: python-librarian-generator:latest +libraries: + - id: google-auth + version: 2.42.0 + 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..abf86fd3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,27 @@ [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 + +* release libraries ([818ca50aea948aeef9d4a43ac632fc9d13d3ba61](https://github.com/googleapis/google-cloud-python/commit/818ca50aea948aeef9d4a43ac632fc9d13d3ba61)) +* 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) + + +### 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..f6ad37ba9 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 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"