Skip to content

Tags: googleapis/google-cloud-python

Tags

release-17226

Toggle release-17226's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: librarian release pull request: 20260521T194308Z (#17226)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.14.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>gapic-generator: v1.33.0</summary>

##
[v1.33.0](gapic-generator-v1.32.0...gapic-generator-v1.33.0)
(2026-05-21)

### Bug Fixes

* bump idna from 3.14 to 3.15 in /packages/gapic-generator (#17179)
([0f7c68b](0f7c68bf))

* restore messages not attached to rpc in selective_gapic_generation
(#16951)
([3ef95d6](3ef95d61))

* resolve core dependencies locally and batch pip installs (#17032)
([5ca8803](5ca88030))

* resolve core dependencies locally and batch pip installs
([5ca8803](5ca88030))

</details>

b/515393379

gapic-generator-v1.33.0

Toggle gapic-generator-v1.33.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: librarian release pull request: 20260521T194308Z (#17226)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.14.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>gapic-generator: v1.33.0</summary>

##
[v1.33.0](gapic-generator-v1.32.0...gapic-generator-v1.33.0)
(2026-05-21)

### Bug Fixes

* bump idna from 3.14 to 3.15 in /packages/gapic-generator (#17179)
([0f7c68b](0f7c68bf))

* restore messages not attached to rpc in selective_gapic_generation
(#16951)
([3ef95d6](3ef95d61))

* resolve core dependencies locally and batch pip installs (#17032)
([5ca8803](5ca88030))

* resolve core dependencies locally and batch pip installs
([5ca8803](5ca88030))

</details>

b/515393379

release-17158

Toggle release-17158's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: librarian release pull request: 20260515T192321Z (#17158)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.13.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>google-auth: v2.53.0</summary>

##
[v2.53.0](suztomo/google-cloud-python@google-auth-v2.52.0...google-auth-v2.53.0)
(2026-05-15)

### Bug Fixes

* allowlist agents-nonprod trust domains for agent identity (#17155)
([44c93d2](suztomo@44c93d2e))

* fail-fast on invalid or non-workload certificate configs in agent
identity discovery (#17116)
([f27a546](suztomo@f27a5461))

</details>

b/513591686

google-auth-v2.53.0

Toggle google-auth-v2.53.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: librarian release pull request: 20260515T192321Z (#17158)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.13.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>google-auth: v2.53.0</summary>

##
[v2.53.0](suztomo/google-cloud-python@google-auth-v2.52.0...google-auth-v2.53.0)
(2026-05-15)

### Bug Fixes

* allowlist agents-nonprod trust domains for agent identity (#17155)
([44c93d2](suztomo@44c93d2e))

* fail-fast on invalid or non-workload certificate configs in agent
identity discovery (#17116)
([f27a546](suztomo@f27a5461))

</details>

b/513591686

release-17056

Toggle release-17056's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: release bigframes 2.40.0 (#17056)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.13.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>bigframes: v2.40.0</summary>

##
[v2.40.0](bigframes-v2.39.0...bigframes-v2.40.0)
(2026-05-13)

### Features

* Add `bigframes.execution_history` API to track BigQuery jobs (#16588)
([fa20a74](fa20a740))
  ```python
  import bigframes.pandas as bpd
  bpd.options.compute.enable_execution_history = True
  df = bpd.read_gbq("my_table")
  # ... perform operations ...
  history = bpd.execution_history
  print(history.jobs) # Access BigQuery job details for executed queries
  ```

* Implement `ai.similarity` and `ai.embed` for text embeddings and
semantic similarity (#16771, #16759)
([d4afa2c](d4afa2c8),
[fcb4579](fcb4579b))
  ```python
  import bigframes.pandas as bpd
  # Generate embeddings
  df["embeddings"] = bpd.bigquery.ai.embed(df["text_col"])
  # Compute similarity
df["similarity"] = bpd.bigquery.ai.similarity(df["embeddings_a"],
df["embeddings_b"])
  ```

* Support `hparam_range` and `hparam_candidates` parameters for
hyperparameter tuning in model creation (#16640)
([ca47835](ca47835c))
* Update `ai.score`, `ai.classify` and `ai.if_` parameters to match
their SQL equivalents (#16919, #16990, #16857)
([9f42fe1](9f42fe14),
[e9c52b1](e9c52b12),
[f3cb4ad](f3cb4ad0))
* Support unstable sorting in `sort_values` and `sort_index` (#16665)
([bbdeb70](bbdeb70f))
* Support loading Avro and ORC data formats (#16555)
([6d46cba](6d46cba3))
* Add NumPy ufunc support directly on column expressions (#16554)
([2f792ab](2f792abd))

### Bug Fixes

* Fix bugs compiling ambiguous ids and in subqueries (#16617)
([479e44d](479e44dd))

* BigFrames respects bq default region (#16933)
([ef9945a](ef9945a5))

* avoid views when querying BigLake tables from SQL cells (#16562)
([fdd3e0d](fdd3e0de))

* avoid `copy` argument warning in `to_pandas` (#16917)
([fe5245b](fe5245b8))

### Performance Improvements

* Improve write api upload throughput (#16641)
([ef856b0](ef856b04))

### Documentation

* Add docs to the to_csv methods of dataframe and series (#16570)
([a8fccef](a8fccefd))

</details>

bigframes-v2.40.0

Toggle bigframes-v2.40.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: release bigframes 2.40.0 (#17056)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.13.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>bigframes: v2.40.0</summary>

##
[v2.40.0](bigframes-v2.39.0...bigframes-v2.40.0)
(2026-05-13)

### Features

* Add `bigframes.execution_history` API to track BigQuery jobs (#16588)
([fa20a74](fa20a740))
  ```python
  import bigframes.pandas as bpd
  bpd.options.compute.enable_execution_history = True
  df = bpd.read_gbq("my_table")
  # ... perform operations ...
  history = bpd.execution_history
  print(history.jobs) # Access BigQuery job details for executed queries
  ```

* Implement `ai.similarity` and `ai.embed` for text embeddings and
semantic similarity (#16771, #16759)
([d4afa2c](d4afa2c8),
[fcb4579](fcb4579b))
  ```python
  import bigframes.pandas as bpd
  # Generate embeddings
  df["embeddings"] = bpd.bigquery.ai.embed(df["text_col"])
  # Compute similarity
df["similarity"] = bpd.bigquery.ai.similarity(df["embeddings_a"],
df["embeddings_b"])
  ```

* Support `hparam_range` and `hparam_candidates` parameters for
hyperparameter tuning in model creation (#16640)
([ca47835](ca47835c))
* Update `ai.score`, `ai.classify` and `ai.if_` parameters to match
their SQL equivalents (#16919, #16990, #16857)
([9f42fe1](9f42fe14),
[e9c52b1](e9c52b12),
[f3cb4ad](f3cb4ad0))
* Support unstable sorting in `sort_values` and `sort_index` (#16665)
([bbdeb70](bbdeb70f))
* Support loading Avro and ORC data formats (#16555)
([6d46cba](6d46cba3))
* Add NumPy ufunc support directly on column expressions (#16554)
([2f792ab](2f792abd))

### Bug Fixes

* Fix bugs compiling ambiguous ids and in subqueries (#16617)
([479e44d](479e44dd))

* BigFrames respects bq default region (#16933)
([ef9945a](ef9945a5))

* avoid views when querying BigLake tables from SQL cells (#16562)
([fdd3e0d](fdd3e0de))

* avoid `copy` argument warning in `to_pandas` (#16917)
([fe5245b](fe5245b8))

### Performance Improvements

* Improve write api upload throughput (#16641)
([ef856b0](ef856b04))

### Documentation

* Add docs to the to_csv methods of dataframe and series (#16570)
([a8fccef](a8fccefd))

</details>

release-17033

Toggle release-17033's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: librarian release pull request: 20260511T211237Z (#17033)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.12.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>gapic-generator: v1.32.0</summary>

##
[v1.32.0](gapic-generator-v1.31.0...gapic-generator-v1.32.0)
(2026-05-11)

</details>

b/512181365

gapic-generator-v1.32.0

Toggle gapic-generator-v1.32.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: librarian release pull request: 20260511T211237Z (#17033)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.12.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>gapic-generator: v1.32.0</summary>

##
[v1.32.0](gapic-generator-v1.31.0...gapic-generator-v1.32.0)
(2026-05-11)

</details>

b/512181365

sqlalchemy-spanner-v1.18.0

Toggle sqlalchemy-spanner-v1.18.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: librarian release pull request: 20260506T163115Z (#16964)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.12.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>bigquery-magics: v0.15.0</summary>

##
[v0.15.0](bigquery-magics-v0.14.0...bigquery-magics-v0.15.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16949)
([fab4e71](fab4e712))

</details>


<details><summary>db-dtypes: v1.6.0</summary>

##
[v1.6.0](db-dtypes-v1.5.1...db-dtypes-v1.6.0)
(2026-05-06)

### Features

* enable mypy session for db-dtypes (#16689)
([856731e](856731e1))

</details>


<details><summary>gapic-generator: v1.31.0</summary>

##
[v1.31.0](gapic-generator-v1.30.14...gapic-generator-v1.31.0)
(2026-05-06)

### Features

* add `--resource-name-alias` flag to resolve namespace collisions
(#16769)
([6fc78e5](6fc78e58))

### Bug Fixes

* pass resource aliases to file-level CommonResources (#16945)
([9652a08](9652a08c))

</details>


<details><summary>gcp-sphinx-docfx-yaml: v3.3.0</summary>

##
[v3.3.0](gcp-sphinx-docfx-yaml-v3.2.5...gcp-sphinx-docfx-yaml-v3.3.0)
(2026-05-06)

### Bug Fixes

* provide a hub when traversing a File or Program and no parentPath is
given ([@&amp;#8203;simbahax](https://redirect.github.com/simbahax)) -
`babel-plugin-transform-block-scoping`, `babel-traverse` -
[#&amp;#8203;17737](https://redirect.github.com/babel/babel/pull/17737)
\[7.x backport] fix: Rename switch discriminant references when body
creates shadowing variable
([@&amp;#8203;magic-akari](https://redirect.github.com/magic-akari))
([5098df2](5098df26))

* correctly parse type assertions in `extends` clause
([@&amp;#8203;nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo))
-
[#&amp;#8203;17723](https://redirect.github.com/babel/babel/pull/17723)
\[7.x backport] fix(parser): improve super type argument parsing
([@&amp;#8203;JLHwung](https://redirect.github.com/JLHwung)) -
`babel-traverse` -
[#&amp;#8203;17708](https://redirect.github.com/babel/babel/pull/17708)
([5098df2](5098df26))

</details>


<details><summary>google-analytics-admin: v0.29.0</summary>

##
[v0.29.0](google-analytics-admin-v0.28.0...google-analytics-admin-v0.29.0)
(2026-05-06)

</details>


<details><summary>google-analytics-data: v0.22.0</summary>

##
[v0.22.0](google-analytics-data-v0.21.0...google-analytics-data-v0.22.0)
(2026-05-06)

</details>


<details><summary>google-apps-chat: v0.9.0</summary>

##
[v0.9.0](google-apps-chat-v0.8.0...google-apps-chat-v0.9.0)
(2026-05-06)

</details>


<details><summary>google-apps-script-type: v0.7.0</summary>

##
[v0.7.0](google-apps-script-type-v0.6.0...google-apps-script-type-v0.7.0)
(2026-05-06)

</details>


<details><summary>google-auth: v2.51.0</summary>

##
[v2.51.0](google-auth-v2.50.0...google-auth-v2.51.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.8 and 3.9 (#16946)
([dcbdd3b](dcbdd3b4))

</details>


<details><summary>google-auth-httplib2: v0.4.0</summary>

##
[v0.4.0](google-auth-httplib2-v0.3.1...google-auth-httplib2-v0.4.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.7, 3.8, and 3.9 (#16937)
([b4fa220](b4fa2200))

</details>


<details><summary>google-auth-oauthlib: v1.4.0</summary>

##
[v1.4.0](google-auth-oauthlib-v1.3.1...google-auth-oauthlib-v1.4.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16939)
([25e2a2d](25e2a2dc))

* replace deprecated `utcfromtimestamp` in google-auth-oauthlib (#16732)
([e1c5af7](e1c5af76))

</details>


<details><summary>google-cloud-access-context-manager: v0.5.0</summary>

##
[v0.5.0](google-cloud-access-context-manager-v0.4.0...google-cloud-access-context-manager-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-biglake-hive: v0.2.0</summary>

##
[v0.2.0](google-cloud-biglake-hive-v0.1.0...google-cloud-biglake-hive-v0.2.0)
(2026-05-06)

</details>


<details><summary>google-cloud-bigquery-reservation: v1.24.0</summary>

##
[v1.24.0](google-cloud-bigquery-reservation-v1.23.0...google-cloud-bigquery-reservation-v1.24.0)
(2026-05-06)

</details>


<details><summary>google-cloud-bigquery-storage: v2.38.0</summary>

##
[v2.38.0](google-cloud-bigquery-storage-v2.37.0...google-cloud-bigquery-storage-v2.38.0)
(2026-05-06)

### Bug Fixes

* provide a hub when traversing a File or Program and no parentPath is
given ([@&amp;#8203;simbahax](https://redirect.github.com/simbahax)) -
`babel-plugin-transform-block-scoping`, `babel-traverse` -
[#&amp;#8203;17737](https://redirect.github.com/babel/babel/pull/17737)
\[7.x backport] fix: Rename switch discriminant references when body
creates shadowing variable
([@&amp;#8203;magic-akari](https://redirect.github.com/magic-akari))
([5098df2](5098df26))

* correctly parse type assertions in `extends` clause
([@&amp;#8203;nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo))
-
[#&amp;#8203;17723](https://redirect.github.com/babel/babel/pull/17723)
\[7.x backport] fix(parser): improve super type argument parsing
([@&amp;#8203;JLHwung](https://redirect.github.com/JLHwung)) -
`babel-traverse` -
[#&amp;#8203;17708](https://redirect.github.com/babel/babel/pull/17708)
([5098df2](5098df26))

</details>


<details><summary>google-cloud-ces: v0.5.0</summary>

##
[v0.5.0](google-cloud-ces-v0.4.0...google-cloud-ces-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-chronicle: v0.5.0</summary>

##
[v0.5.0](google-cloud-chronicle-v0.4.0...google-cloud-chronicle-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-cloudsecuritycompliance: v0.7.0</summary>

##
[v0.7.0](google-cloud-cloudsecuritycompliance-v0.6.0...google-cloud-cloudsecuritycompliance-v0.7.0)
(2026-05-06)

</details>


<details><summary>google-cloud-compute-v1beta: v0.11.0</summary>

##
[v0.11.0](google-cloud-compute-v1beta-v0.10.0...google-cloud-compute-v1beta-v0.11.0)
(2026-05-06)

</details>


<details><summary>google-cloud-config: v0.6.0</summary>

##
[v0.6.0](google-cloud-config-v0.5.0...google-cloud-config-v0.6.0)
(2026-05-06)

</details>


<details><summary>google-cloud-core: v2.6.0</summary>

##
[v2.6.0](google-cloud-core-v2.5.1...google-cloud-core-v2.6.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16953)
([78a48b0](78a48b04))

</details>


<details><summary>google-cloud-databasecenter: v0.8.0</summary>

##
[v0.8.0](google-cloud-databasecenter-v0.7.0...google-cloud-databasecenter-v0.8.0)
(2026-05-06)

</details>


<details><summary>google-cloud-datacatalog-lineage-configmanagement:
v0.2.0</summary>

##
[v0.2.0](google-cloud-datacatalog-lineage-configmanagement-v0.1.0...google-cloud-datacatalog-lineage-configmanagement-v0.2.0)
(2026-05-06)

</details>


<details><summary>google-cloud-dataplex: v2.19.0</summary>

##
[v2.19.0](google-cloud-dataplex-v2.18.0...google-cloud-dataplex-v2.19.0)
(2026-05-06)

</details>


<details><summary>google-cloud-discoveryengine: v0.19.0</summary>

##
[v0.19.0](google-cloud-discoveryengine-v0.18.0...google-cloud-discoveryengine-v0.19.0)
(2026-05-06)

</details>


<details><summary>google-cloud-dns: v0.37.0</summary>

##
[v0.37.0](google-cloud-dns-v0.36.1...google-cloud-dns-v0.37.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16954)
([5975c48](5975c481))

</details>


<details><summary>google-cloud-documentai-toolbox: v0.16.0</summary>

##
[v0.16.0](google-cloud-documentai-toolbox-v0.15.2...google-cloud-documentai-toolbox-v0.16.0)
(2026-05-06)

</details>


<details><summary>google-cloud-gke-hub: v1.24.0</summary>

##
[v1.24.0](google-cloud-gke-hub-v1.23.0...google-cloud-gke-hub-v1.24.0)
(2026-05-06)

</details>


<details><summary>google-cloud-iam: v2.23.0</summary>

##
[v2.23.0](google-cloud-iam-v2.22.0...google-cloud-iam-v2.23.0)
(2026-05-06)

</details>


<details><summary>google-cloud-kms: v3.13.0</summary>

##
[v3.13.0](google-cloud-kms-v3.12.0...google-cloud-kms-v3.13.0)
(2026-05-06)

</details>


<details><summary>google-cloud-memorystore: v0.5.0</summary>

##
[v0.5.0](google-cloud-memorystore-v0.4.0...google-cloud-memorystore-v0.5.0)
(2026-05-06)

### Features

* enable gRPC transport (#16927)
([71b73e5](71b73e54))

</details>


<details><summary>google-cloud-modelarmor: v0.6.0</summary>

##
[v0.6.0](google-cloud-modelarmor-v0.5.0...google-cloud-modelarmor-v0.6.0)
(2026-05-06)

</details>


<details><summary>google-cloud-ndb: v2.5.0</summary>

##
[v2.5.0](google-cloud-ndb-v2.4.2...google-cloud-ndb-v2.5.0)
(2026-05-06)

### Features

* enable mypy session for ndb (#16691)
([192ccc5](192ccc52))

### Bug Fixes

* Drop support for Python 3.9 (#16950)
([d37a953](d37a9530))

</details>


<details><summary>google-cloud-netapp: v0.10.0</summary>

##
[v0.10.0](google-cloud-netapp-v0.9.0...google-cloud-netapp-v0.10.0)
(2026-05-06)

</details>


<details><summary>google-cloud-network-management: v1.35.0</summary>

##
[v1.35.0](google-cloud-network-management-v1.34.0...google-cloud-network-management-v1.35.0)
(2026-05-06)

</details>


<details><summary>google-cloud-orchestration-airflow: v1.21.0</summary>

##
[v1.21.0](google-cloud-orchestration-airflow-v1.20.0...google-cloud-orchestration-airflow-v1.21.0)
(2026-05-06)

</details>


<details><summary>google-cloud-os-login: v2.21.0</summary>

##
[v2.21.0](google-cloud-os-login-v2.20.0...google-cloud-os-login-v2.21.0)
(2026-05-06)

</details>


<details><summary>google-cloud-policytroubleshooter-iam:
v0.5.0</summary>

##
[v0.5.0](google-cloud-policytroubleshooter-iam-v0.4.0...google-cloud-policytroubleshooter-iam-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-pubsub: v2.38.0</summary>

##
[v2.38.0](google-cloud-pubsub-v2.37.0...google-cloud-pubsub-v2.38.0)
(2026-05-06)

</details>


<details><summary>google-cloud-redis-cluster: v0.5.0</summary>

##
[v0.5.0](google-cloud-redis-cluster-v0.4.0...google-cloud-redis-cluster-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-runtimeconfig: v0.37.0</summary>

##
[v0.37.0](google-cloud-runtimeconfig-v0.36.1...google-cloud-runtimeconfig-v0.37.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16947)
([e7efd90](e7efd90d))

</details>


<details><summary>google-cloud-saasplatform-saasservicemgmt:
v0.6.0</summary>

##
[v0.6.0](google-cloud-saasplatform-saasservicemgmt-v0.5.0...google-cloud-saasplatform-saasservicemgmt-v0.6.0)
(2026-05-06)

</details>


<details><summary>google-cloud-secret-manager: v2.28.0</summary>

##
[v2.28.0](google-cloud-secret-manager-v2.27.0...google-cloud-secret-manager-v2.28.0)
(2026-05-06)

</details>


<details><summary>google-cloud-spanner: v3.66.0</summary>

##
[v3.66.0](google-cloud-spanner-v3.65.0...google-cloud-spanner-v3.66.0)
(2026-05-06)

### Features

* Add last statement option samples (#16499)
([ee09805](ee098051))

### Bug Fixes

* provide a hub when traversing a File or Program and no parentPath is
given ([@&amp;#8203;simbahax](https://redirect.github.com/simbahax)) -
`babel-plugin-transform-block-scoping`, `babel-traverse` -
[#&amp;#8203;17737](https://redirect.github.com/babel/babel/pull/17737)
\[7.x backport] fix: Rename switch discriminant references when body
creates shadowing variable
([@&amp;#8203;magic-akari](https://redirect.github.com/magic-akari))
([5098df2](5098df26))

* correctly parse type assertions in `extends` clause
([@&amp;#8203;nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo))
-
[#&amp;#8203;17723](https://redirect.github.com/babel/babel/pull/17723)
\[7.x backport] fix(parser): improve super type argument parsing
([@&amp;#8203;JLHwung](https://redirect.github.com/JLHwung)) -
`babel-traverse` -
[#&amp;#8203;17708](https://redirect.github.com/babel/babel/pull/17708)
([5098df2](5098df26))

</details>


<details><summary>google-cloud-speech: v2.39.0</summary>

##
[v2.39.0](google-cloud-speech-v2.38.0...google-cloud-speech-v2.39.0)
(2026-05-06)

</details>


<details><summary>google-cloud-storagebatchoperations: v0.7.0</summary>

##
[v0.7.0](google-cloud-storagebatchoperations-v0.6.0...google-cloud-storagebatchoperations-v0.7.0)
(2026-05-06)

</details>


<details><summary>google-cloud-testutils: v1.8.0</summary>

##
[v1.8.0](google-cloud-testutils-v1.7.1...google-cloud-testutils-v1.8.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16948)
([cdc5dd5](cdc5dd5d))

</details>


<details><summary>google-cloud-vision: v3.14.0</summary>

##
[v3.14.0](google-cloud-vision-v3.13.0...google-cloud-vision-v3.14.0)
(2026-05-06)

</details>


<details><summary>google-cloud-workflows: v1.22.0</summary>

##
[v1.22.0](google-cloud-workflows-v1.21.0...google-cloud-workflows-v1.22.0)
(2026-05-06)

</details>


<details><summary>google-resumable-media: v2.9.0</summary>

##
[v2.9.0](google-resumable-media-v2.8.2...google-resumable-media-v2.9.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16938)
([33b5505](33b55050))

</details>


<details><summary>google-shopping-merchant-inventories: v1.4.0</summary>

##
[v1.4.0](google-shopping-merchant-inventories-v1.3.0...google-shopping-merchant-inventories-v1.4.0)
(2026-05-06)

</details>


<details><summary>google-shopping-merchant-products: v1.6.0</summary>

##
[v1.6.0](google-shopping-merchant-products-v1.5.0...google-shopping-merchant-products-v1.6.0)
(2026-05-06)

</details>


<details><summary>google-shopping-merchant-reports: v1.4.0</summary>

##
[v1.4.0](google-shopping-merchant-reports-v1.3.0...google-shopping-merchant-reports-v1.4.0)
(2026-05-06)

</details>


<details><summary>googleapis-common-protos: v1.75.0</summary>

##
[v1.75.0](googleapis-common-protos-v1.74.0...googleapis-common-protos-v1.75.0)
(2026-05-06)

</details>


<details><summary>proto-plus: v1.28.0</summary>

##
[v1.28.0](proto-plus-v1.27.2...proto-plus-v1.28.0)
(2026-05-06)

</details>


<details><summary>sqlalchemy-bigquery: v1.17.0</summary>

##
[v1.17.0](sqlalchemy-bigquery-v1.16.0...sqlalchemy-bigquery-v1.17.0)
(2026-05-06)

### Bug Fixes

* Support Creation of JSON columns (#16733)
([153b82a](153b82a4))

* Drop support for Python 3.8 and 3.9 (#16956)
([63f6d96](63f6d96c))

</details>


<details><summary>sqlalchemy-spanner: v1.18.0</summary>

##
[v1.18.0](sqlalchemy-spanner-v1.17.3...sqlalchemy-spanner-v1.18.0)
(2026-05-06)

### Bug Fixes

* correctly parse type assertions in `extends` clause
([@&amp;#8203;nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo))
-
[#&amp;#8203;17723](https://redirect.github.com/babel/babel/pull/17723)
\[7.x backport] fix(parser): improve super type argument parsing
([@&amp;#8203;JLHwung](https://redirect.github.com/JLHwung)) -
`babel-traverse` -
[#&amp;#8203;17708](https://redirect.github.com/babel/babel/pull/17708)
([5098df2](5098df26))

* provide a hub when traversing a File or Program and no parentPath is
given ([@&amp;#8203;simbahax](https://redirect.github.com/simbahax)) -
`babel-plugin-transform-block-scoping`, `babel-traverse` -
[#&amp;#8203;17737](https://redirect.github.com/babel/babel/pull/17737)
\[7.x backport] fix: Rename switch discriminant references when body
creates shadowing variable
([@&amp;#8203;magic-akari](https://redirect.github.com/magic-akari))
([5098df2](5098df26))

### Documentation

* fix FAQ grammar in httplib2 example&lt;/li&gt; &lt;li&gt;&lt;a
href=&#34;psf/requests@774a0b837a194ee885d4fdd9ca947900cc3daf71&#34;&gt;&lt;code&gt;774a0b8&lt;/code&gt;&lt;/a&gt;
([07a610c](07a610c5))

* exclude Response.is_permanent_redirect from API docs (&lt;a
href=&#34;https://redirect.github.com/psf/requests/issues/7244&#34;&gt;#7244&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;a
href=&#34;psf/requests@d568f47278492e630cc990a259047c67991d007a&#34;&gt;&lt;code&gt;d568f47&lt;/code&gt;&lt;/a&gt;
([07a610c](07a610c5))

* same block as other sections&lt;/li&gt; &lt;li&gt;&lt;a
href=&#34;psf/requests@9c72a41bec8597f948c9d8caa5dc3f12273b3303&#34;&gt;&lt;code&gt;9c72a41&lt;/code&gt;&lt;/a&gt;
Bump github/codeql-action from 4.33.0 to 4.34.1&lt;/li&gt;
&lt;li&gt;&lt;a
href=&#34;psf/requests@ebf71906798ec82f34e07d3168f8b8aecaf8a3be&#34;&gt;&lt;code&gt;ebf7190&lt;/code&gt;&lt;/a&gt;
Bump github/codeql-action from 4.32.0 to 4.33.0&lt;/li&gt;
&lt;li&gt;&lt;a
href=&#34;psf/requests@0e4ae38f0c93d4f92a96c774bd52c069d12a4798&#34;&gt;&lt;code&gt;0e4ae38&lt;/code&gt;&lt;/a&gt;
([07a610c](07a610c5))

* clarify Quickstart POST example (&lt;a
href=&#34;https://redirect.github.com/psf/requests/issues/6960&#34;&gt;#6960&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Additional commits viewable in &lt;a
href=&#34;psf/requests@v2.32.5...v2.33.0&#34;&gt;compare
view&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/details&gt; &lt;br /&gt;
([07a610c](07a610c5))

* add AGENTS.md for project guidance and development commands&lt;/li&gt;
&lt;li&gt;Additional commits viewable in &lt;a
href=&#34;andialbrecht/sqlparse@0.5.3...0.5.4&#34;&gt;compare
view&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/details&gt; &lt;br /&gt;
([dbbe4c8](dbbe4c81))

</details>


<details><summary>Bulk Changes</summary>

* chore: update googleapis and regenerate (#16735)
([542857d](542857d5))
Libraries:
google-analytics-admin,google-apps-chat,google-cloud-bigquery-reservation,google-cloud-ces,google-cloud-chronicle,google-cloud-config,google-cloud-databasecenter,google-cloud-dataplex,google-cloud-discoveryengine,google-cloud-iam,google-cloud-kms,google-cloud-modelarmor,google-cloud-netapp,google-cloud-network-management,google-cloud-pubsub,google-cloud-saasplatform-saasservicemgmt,google-shopping-merchant-inventories,google-shopping-merchant-products
</details>

sqlalchemy-bigquery-v1.17.0

Toggle sqlalchemy-bigquery-v1.17.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: librarian release pull request: 20260506T163115Z (#16964)

PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.12.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:234b9d1f2ddb057ed7ac6a38db0bf8163d839c65c6cf88ade52530cddebce59e
<details><summary>bigquery-magics: v0.15.0</summary>

##
[v0.15.0](bigquery-magics-v0.14.0...bigquery-magics-v0.15.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16949)
([fab4e71](fab4e712))

</details>


<details><summary>db-dtypes: v1.6.0</summary>

##
[v1.6.0](db-dtypes-v1.5.1...db-dtypes-v1.6.0)
(2026-05-06)

### Features

* enable mypy session for db-dtypes (#16689)
([856731e](856731e1))

</details>


<details><summary>gapic-generator: v1.31.0</summary>

##
[v1.31.0](gapic-generator-v1.30.14...gapic-generator-v1.31.0)
(2026-05-06)

### Features

* add `--resource-name-alias` flag to resolve namespace collisions
(#16769)
([6fc78e5](6fc78e58))

### Bug Fixes

* pass resource aliases to file-level CommonResources (#16945)
([9652a08](9652a08c))

</details>


<details><summary>gcp-sphinx-docfx-yaml: v3.3.0</summary>

##
[v3.3.0](gcp-sphinx-docfx-yaml-v3.2.5...gcp-sphinx-docfx-yaml-v3.3.0)
(2026-05-06)

### Bug Fixes

* provide a hub when traversing a File or Program and no parentPath is
given ([@&amp;#8203;simbahax](https://redirect.github.com/simbahax)) -
`babel-plugin-transform-block-scoping`, `babel-traverse` -
[#&amp;#8203;17737](https://redirect.github.com/babel/babel/pull/17737)
\[7.x backport] fix: Rename switch discriminant references when body
creates shadowing variable
([@&amp;#8203;magic-akari](https://redirect.github.com/magic-akari))
([5098df2](5098df26))

* correctly parse type assertions in `extends` clause
([@&amp;#8203;nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo))
-
[#&amp;#8203;17723](https://redirect.github.com/babel/babel/pull/17723)
\[7.x backport] fix(parser): improve super type argument parsing
([@&amp;#8203;JLHwung](https://redirect.github.com/JLHwung)) -
`babel-traverse` -
[#&amp;#8203;17708](https://redirect.github.com/babel/babel/pull/17708)
([5098df2](5098df26))

</details>


<details><summary>google-analytics-admin: v0.29.0</summary>

##
[v0.29.0](google-analytics-admin-v0.28.0...google-analytics-admin-v0.29.0)
(2026-05-06)

</details>


<details><summary>google-analytics-data: v0.22.0</summary>

##
[v0.22.0](google-analytics-data-v0.21.0...google-analytics-data-v0.22.0)
(2026-05-06)

</details>


<details><summary>google-apps-chat: v0.9.0</summary>

##
[v0.9.0](google-apps-chat-v0.8.0...google-apps-chat-v0.9.0)
(2026-05-06)

</details>


<details><summary>google-apps-script-type: v0.7.0</summary>

##
[v0.7.0](google-apps-script-type-v0.6.0...google-apps-script-type-v0.7.0)
(2026-05-06)

</details>


<details><summary>google-auth: v2.51.0</summary>

##
[v2.51.0](google-auth-v2.50.0...google-auth-v2.51.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.8 and 3.9 (#16946)
([dcbdd3b](dcbdd3b4))

</details>


<details><summary>google-auth-httplib2: v0.4.0</summary>

##
[v0.4.0](google-auth-httplib2-v0.3.1...google-auth-httplib2-v0.4.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.7, 3.8, and 3.9 (#16937)
([b4fa220](b4fa2200))

</details>


<details><summary>google-auth-oauthlib: v1.4.0</summary>

##
[v1.4.0](google-auth-oauthlib-v1.3.1...google-auth-oauthlib-v1.4.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16939)
([25e2a2d](25e2a2dc))

* replace deprecated `utcfromtimestamp` in google-auth-oauthlib (#16732)
([e1c5af7](e1c5af76))

</details>


<details><summary>google-cloud-access-context-manager: v0.5.0</summary>

##
[v0.5.0](google-cloud-access-context-manager-v0.4.0...google-cloud-access-context-manager-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-biglake-hive: v0.2.0</summary>

##
[v0.2.0](google-cloud-biglake-hive-v0.1.0...google-cloud-biglake-hive-v0.2.0)
(2026-05-06)

</details>


<details><summary>google-cloud-bigquery-reservation: v1.24.0</summary>

##
[v1.24.0](google-cloud-bigquery-reservation-v1.23.0...google-cloud-bigquery-reservation-v1.24.0)
(2026-05-06)

</details>


<details><summary>google-cloud-bigquery-storage: v2.38.0</summary>

##
[v2.38.0](google-cloud-bigquery-storage-v2.37.0...google-cloud-bigquery-storage-v2.38.0)
(2026-05-06)

### Bug Fixes

* provide a hub when traversing a File or Program and no parentPath is
given ([@&amp;#8203;simbahax](https://redirect.github.com/simbahax)) -
`babel-plugin-transform-block-scoping`, `babel-traverse` -
[#&amp;#8203;17737](https://redirect.github.com/babel/babel/pull/17737)
\[7.x backport] fix: Rename switch discriminant references when body
creates shadowing variable
([@&amp;#8203;magic-akari](https://redirect.github.com/magic-akari))
([5098df2](5098df26))

* correctly parse type assertions in `extends` clause
([@&amp;#8203;nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo))
-
[#&amp;#8203;17723](https://redirect.github.com/babel/babel/pull/17723)
\[7.x backport] fix(parser): improve super type argument parsing
([@&amp;#8203;JLHwung](https://redirect.github.com/JLHwung)) -
`babel-traverse` -
[#&amp;#8203;17708](https://redirect.github.com/babel/babel/pull/17708)
([5098df2](5098df26))

</details>


<details><summary>google-cloud-ces: v0.5.0</summary>

##
[v0.5.0](google-cloud-ces-v0.4.0...google-cloud-ces-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-chronicle: v0.5.0</summary>

##
[v0.5.0](google-cloud-chronicle-v0.4.0...google-cloud-chronicle-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-cloudsecuritycompliance: v0.7.0</summary>

##
[v0.7.0](google-cloud-cloudsecuritycompliance-v0.6.0...google-cloud-cloudsecuritycompliance-v0.7.0)
(2026-05-06)

</details>


<details><summary>google-cloud-compute-v1beta: v0.11.0</summary>

##
[v0.11.0](google-cloud-compute-v1beta-v0.10.0...google-cloud-compute-v1beta-v0.11.0)
(2026-05-06)

</details>


<details><summary>google-cloud-config: v0.6.0</summary>

##
[v0.6.0](google-cloud-config-v0.5.0...google-cloud-config-v0.6.0)
(2026-05-06)

</details>


<details><summary>google-cloud-core: v2.6.0</summary>

##
[v2.6.0](google-cloud-core-v2.5.1...google-cloud-core-v2.6.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16953)
([78a48b0](78a48b04))

</details>


<details><summary>google-cloud-databasecenter: v0.8.0</summary>

##
[v0.8.0](google-cloud-databasecenter-v0.7.0...google-cloud-databasecenter-v0.8.0)
(2026-05-06)

</details>


<details><summary>google-cloud-datacatalog-lineage-configmanagement:
v0.2.0</summary>

##
[v0.2.0](google-cloud-datacatalog-lineage-configmanagement-v0.1.0...google-cloud-datacatalog-lineage-configmanagement-v0.2.0)
(2026-05-06)

</details>


<details><summary>google-cloud-dataplex: v2.19.0</summary>

##
[v2.19.0](google-cloud-dataplex-v2.18.0...google-cloud-dataplex-v2.19.0)
(2026-05-06)

</details>


<details><summary>google-cloud-discoveryengine: v0.19.0</summary>

##
[v0.19.0](google-cloud-discoveryengine-v0.18.0...google-cloud-discoveryengine-v0.19.0)
(2026-05-06)

</details>


<details><summary>google-cloud-dns: v0.37.0</summary>

##
[v0.37.0](google-cloud-dns-v0.36.1...google-cloud-dns-v0.37.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16954)
([5975c48](5975c481))

</details>


<details><summary>google-cloud-documentai-toolbox: v0.16.0</summary>

##
[v0.16.0](google-cloud-documentai-toolbox-v0.15.2...google-cloud-documentai-toolbox-v0.16.0)
(2026-05-06)

</details>


<details><summary>google-cloud-gke-hub: v1.24.0</summary>

##
[v1.24.0](google-cloud-gke-hub-v1.23.0...google-cloud-gke-hub-v1.24.0)
(2026-05-06)

</details>


<details><summary>google-cloud-iam: v2.23.0</summary>

##
[v2.23.0](google-cloud-iam-v2.22.0...google-cloud-iam-v2.23.0)
(2026-05-06)

</details>


<details><summary>google-cloud-kms: v3.13.0</summary>

##
[v3.13.0](google-cloud-kms-v3.12.0...google-cloud-kms-v3.13.0)
(2026-05-06)

</details>


<details><summary>google-cloud-memorystore: v0.5.0</summary>

##
[v0.5.0](google-cloud-memorystore-v0.4.0...google-cloud-memorystore-v0.5.0)
(2026-05-06)

### Features

* enable gRPC transport (#16927)
([71b73e5](71b73e54))

</details>


<details><summary>google-cloud-modelarmor: v0.6.0</summary>

##
[v0.6.0](google-cloud-modelarmor-v0.5.0...google-cloud-modelarmor-v0.6.0)
(2026-05-06)

</details>


<details><summary>google-cloud-ndb: v2.5.0</summary>

##
[v2.5.0](google-cloud-ndb-v2.4.2...google-cloud-ndb-v2.5.0)
(2026-05-06)

### Features

* enable mypy session for ndb (#16691)
([192ccc5](192ccc52))

### Bug Fixes

* Drop support for Python 3.9 (#16950)
([d37a953](d37a9530))

</details>


<details><summary>google-cloud-netapp: v0.10.0</summary>

##
[v0.10.0](google-cloud-netapp-v0.9.0...google-cloud-netapp-v0.10.0)
(2026-05-06)

</details>


<details><summary>google-cloud-network-management: v1.35.0</summary>

##
[v1.35.0](google-cloud-network-management-v1.34.0...google-cloud-network-management-v1.35.0)
(2026-05-06)

</details>


<details><summary>google-cloud-orchestration-airflow: v1.21.0</summary>

##
[v1.21.0](google-cloud-orchestration-airflow-v1.20.0...google-cloud-orchestration-airflow-v1.21.0)
(2026-05-06)

</details>


<details><summary>google-cloud-os-login: v2.21.0</summary>

##
[v2.21.0](google-cloud-os-login-v2.20.0...google-cloud-os-login-v2.21.0)
(2026-05-06)

</details>


<details><summary>google-cloud-policytroubleshooter-iam:
v0.5.0</summary>

##
[v0.5.0](google-cloud-policytroubleshooter-iam-v0.4.0...google-cloud-policytroubleshooter-iam-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-pubsub: v2.38.0</summary>

##
[v2.38.0](google-cloud-pubsub-v2.37.0...google-cloud-pubsub-v2.38.0)
(2026-05-06)

</details>


<details><summary>google-cloud-redis-cluster: v0.5.0</summary>

##
[v0.5.0](google-cloud-redis-cluster-v0.4.0...google-cloud-redis-cluster-v0.5.0)
(2026-05-06)

</details>


<details><summary>google-cloud-runtimeconfig: v0.37.0</summary>

##
[v0.37.0](google-cloud-runtimeconfig-v0.36.1...google-cloud-runtimeconfig-v0.37.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16947)
([e7efd90](e7efd90d))

</details>


<details><summary>google-cloud-saasplatform-saasservicemgmt:
v0.6.0</summary>

##
[v0.6.0](google-cloud-saasplatform-saasservicemgmt-v0.5.0...google-cloud-saasplatform-saasservicemgmt-v0.6.0)
(2026-05-06)

</details>


<details><summary>google-cloud-secret-manager: v2.28.0</summary>

##
[v2.28.0](google-cloud-secret-manager-v2.27.0...google-cloud-secret-manager-v2.28.0)
(2026-05-06)

</details>


<details><summary>google-cloud-spanner: v3.66.0</summary>

##
[v3.66.0](google-cloud-spanner-v3.65.0...google-cloud-spanner-v3.66.0)
(2026-05-06)

### Features

* Add last statement option samples (#16499)
([ee09805](ee098051))

### Bug Fixes

* provide a hub when traversing a File or Program and no parentPath is
given ([@&amp;#8203;simbahax](https://redirect.github.com/simbahax)) -
`babel-plugin-transform-block-scoping`, `babel-traverse` -
[#&amp;#8203;17737](https://redirect.github.com/babel/babel/pull/17737)
\[7.x backport] fix: Rename switch discriminant references when body
creates shadowing variable
([@&amp;#8203;magic-akari](https://redirect.github.com/magic-akari))
([5098df2](5098df26))

* correctly parse type assertions in `extends` clause
([@&amp;#8203;nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo))
-
[#&amp;#8203;17723](https://redirect.github.com/babel/babel/pull/17723)
\[7.x backport] fix(parser): improve super type argument parsing
([@&amp;#8203;JLHwung](https://redirect.github.com/JLHwung)) -
`babel-traverse` -
[#&amp;#8203;17708](https://redirect.github.com/babel/babel/pull/17708)
([5098df2](5098df26))

</details>


<details><summary>google-cloud-speech: v2.39.0</summary>

##
[v2.39.0](google-cloud-speech-v2.38.0...google-cloud-speech-v2.39.0)
(2026-05-06)

</details>


<details><summary>google-cloud-storagebatchoperations: v0.7.0</summary>

##
[v0.7.0](google-cloud-storagebatchoperations-v0.6.0...google-cloud-storagebatchoperations-v0.7.0)
(2026-05-06)

</details>


<details><summary>google-cloud-testutils: v1.8.0</summary>

##
[v1.8.0](google-cloud-testutils-v1.7.1...google-cloud-testutils-v1.8.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16948)
([cdc5dd5](cdc5dd5d))

</details>


<details><summary>google-cloud-vision: v3.14.0</summary>

##
[v3.14.0](google-cloud-vision-v3.13.0...google-cloud-vision-v3.14.0)
(2026-05-06)

</details>


<details><summary>google-cloud-workflows: v1.22.0</summary>

##
[v1.22.0](google-cloud-workflows-v1.21.0...google-cloud-workflows-v1.22.0)
(2026-05-06)

</details>


<details><summary>google-resumable-media: v2.9.0</summary>

##
[v2.9.0](google-resumable-media-v2.8.2...google-resumable-media-v2.9.0)
(2026-05-06)

### Bug Fixes

* Drop support for Python 3.9 (#16938)
([33b5505](33b55050))

</details>


<details><summary>google-shopping-merchant-inventories: v1.4.0</summary>

##
[v1.4.0](google-shopping-merchant-inventories-v1.3.0...google-shopping-merchant-inventories-v1.4.0)
(2026-05-06)

</details>


<details><summary>google-shopping-merchant-products: v1.6.0</summary>

##
[v1.6.0](google-shopping-merchant-products-v1.5.0...google-shopping-merchant-products-v1.6.0)
(2026-05-06)

</details>


<details><summary>google-shopping-merchant-reports: v1.4.0</summary>

##
[v1.4.0](google-shopping-merchant-reports-v1.3.0...google-shopping-merchant-reports-v1.4.0)
(2026-05-06)

</details>


<details><summary>googleapis-common-protos: v1.75.0</summary>

##
[v1.75.0](googleapis-common-protos-v1.74.0...googleapis-common-protos-v1.75.0)
(2026-05-06)

</details>


<details><summary>proto-plus: v1.28.0</summary>

##
[v1.28.0](proto-plus-v1.27.2...proto-plus-v1.28.0)
(2026-05-06)

</details>


<details><summary>sqlalchemy-bigquery: v1.17.0</summary>

##
[v1.17.0](sqlalchemy-bigquery-v1.16.0...sqlalchemy-bigquery-v1.17.0)
(2026-05-06)

### Bug Fixes

* Support Creation of JSON columns (#16733)
([153b82a](153b82a4))

* Drop support for Python 3.8 and 3.9 (#16956)
([63f6d96](63f6d96c))

</details>


<details><summary>sqlalchemy-spanner: v1.18.0</summary>

##
[v1.18.0](sqlalchemy-spanner-v1.17.3...sqlalchemy-spanner-v1.18.0)
(2026-05-06)

### Bug Fixes

* correctly parse type assertions in `extends` clause
([@&amp;#8203;nicolo-ribaudo](https://redirect.github.com/nicolo-ribaudo))
-
[#&amp;#8203;17723](https://redirect.github.com/babel/babel/pull/17723)
\[7.x backport] fix(parser): improve super type argument parsing
([@&amp;#8203;JLHwung](https://redirect.github.com/JLHwung)) -
`babel-traverse` -
[#&amp;#8203;17708](https://redirect.github.com/babel/babel/pull/17708)
([5098df2](5098df26))

* provide a hub when traversing a File or Program and no parentPath is
given ([@&amp;#8203;simbahax](https://redirect.github.com/simbahax)) -
`babel-plugin-transform-block-scoping`, `babel-traverse` -
[#&amp;#8203;17737](https://redirect.github.com/babel/babel/pull/17737)
\[7.x backport] fix: Rename switch discriminant references when body
creates shadowing variable
([@&amp;#8203;magic-akari](https://redirect.github.com/magic-akari))
([5098df2](5098df26))

### Documentation

* fix FAQ grammar in httplib2 example&lt;/li&gt; &lt;li&gt;&lt;a
href=&#34;psf/requests@774a0b837a194ee885d4fdd9ca947900cc3daf71&#34;&gt;&lt;code&gt;774a0b8&lt;/code&gt;&lt;/a&gt;
([07a610c](07a610c5))

* exclude Response.is_permanent_redirect from API docs (&lt;a
href=&#34;https://redirect.github.com/psf/requests/issues/7244&#34;&gt;#7244&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;a
href=&#34;psf/requests@d568f47278492e630cc990a259047c67991d007a&#34;&gt;&lt;code&gt;d568f47&lt;/code&gt;&lt;/a&gt;
([07a610c](07a610c5))

* same block as other sections&lt;/li&gt; &lt;li&gt;&lt;a
href=&#34;psf/requests@9c72a41bec8597f948c9d8caa5dc3f12273b3303&#34;&gt;&lt;code&gt;9c72a41&lt;/code&gt;&lt;/a&gt;
Bump github/codeql-action from 4.33.0 to 4.34.1&lt;/li&gt;
&lt;li&gt;&lt;a
href=&#34;psf/requests@ebf71906798ec82f34e07d3168f8b8aecaf8a3be&#34;&gt;&lt;code&gt;ebf7190&lt;/code&gt;&lt;/a&gt;
Bump github/codeql-action from 4.32.0 to 4.33.0&lt;/li&gt;
&lt;li&gt;&lt;a
href=&#34;psf/requests@0e4ae38f0c93d4f92a96c774bd52c069d12a4798&#34;&gt;&lt;code&gt;0e4ae38&lt;/code&gt;&lt;/a&gt;
([07a610c](07a610c5))

* clarify Quickstart POST example (&lt;a
href=&#34;https://redirect.github.com/psf/requests/issues/6960&#34;&gt;#6960&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Additional commits viewable in &lt;a
href=&#34;psf/requests@v2.32.5...v2.33.0&#34;&gt;compare
view&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/details&gt; &lt;br /&gt;
([07a610c](07a610c5))

* add AGENTS.md for project guidance and development commands&lt;/li&gt;
&lt;li&gt;Additional commits viewable in &lt;a
href=&#34;andialbrecht/sqlparse@0.5.3...0.5.4&#34;&gt;compare
view&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/details&gt; &lt;br /&gt;
([dbbe4c8](dbbe4c81))

</details>


<details><summary>Bulk Changes</summary>

* chore: update googleapis and regenerate (#16735)
([542857d](542857d5))
Libraries:
google-analytics-admin,google-apps-chat,google-cloud-bigquery-reservation,google-cloud-ces,google-cloud-chronicle,google-cloud-config,google-cloud-databasecenter,google-cloud-dataplex,google-cloud-discoveryengine,google-cloud-iam,google-cloud-kms,google-cloud-modelarmor,google-cloud-netapp,google-cloud-network-management,google-cloud-pubsub,google-cloud-saasplatform-saasservicemgmt,google-shopping-merchant-inventories,google-shopping-merchant-products
</details>