Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .release-please-bulk-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"packages/bigquery-magics": "0.15.0",
"packages/db-dtypes": "1.7.0",
"packages/db-dtypes": "1.7.1",
"packages/django-google-spanner": "5.0.0",
"packages/gapic-generator": "1.36.0",
"packages/gapic-generator": "1.36.1",
"packages/gcp-sphinx-docfx-yaml": "3.3.0",
"packages/google-ads-admanager": "0.10.0",
"packages/google-ads-datamanager": "0.9.1",
Expand All @@ -17,15 +17,15 @@
"packages/google-apps-meet": "0.5.0",
"packages/google-apps-script-type": "0.8.0",
"packages/google-area120-tables": "0.15.0",
"packages/google-auth": "2.55.1",
"packages/google-auth": "2.55.2",
"packages/google-auth-httplib2": "0.4.0",
"packages/google-auth-oauthlib": "1.4.0",
"packages/google-backstory": "0.1.0",
"packages/google-cloud-access-approval": "1.20.0",
"packages/google-cloud-access-context-manager": "0.6.0",
"packages/google-cloud-advisorynotifications": "0.7.0",
"packages/google-cloud-agentidentitycredentials": "0.1.0",
"packages/google-cloud-agentregistry": "0.0.0",
"packages/google-cloud-agentregistry": "0.1.0",
"packages/google-cloud-alloydb": "0.11.0",
"packages/google-cloud-alloydb-connectors": "0.5.0",
"packages/google-cloud-api-gateway": "1.16.0",
Expand Down Expand Up @@ -210,7 +210,7 @@
"packages/google-cloud-source-context": "1.11.0",
"packages/google-cloud-spanner": "3.69.0",
"packages/google-cloud-speech": "2.40.0",
"packages/google-cloud-storage": "3.12.0",
"packages/google-cloud-storage": "3.12.1",
"packages/google-cloud-storage-control": "1.12.0",
"packages/google-cloud-storage-transfer": "1.21.0",
"packages/google-cloud-storagebatchoperations": "0.8.0",
Expand Down
10 changes: 5 additions & 5 deletions librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ libraries:
python:
library_type: INTEGRATION
- name: db-dtypes
version: 1.7.0
version: 1.7.1
python:
library_type: INTEGRATION
- name: django-google-spanner
version: 5.0.0
python:
library_type: INTEGRATION
- name: gapic-generator
version: 1.36.0
version: 1.36.1
python:
library_type: CORE
- name: gcp-sphinx-docfx-yaml
Expand Down Expand Up @@ -227,7 +227,7 @@ libraries:
metadata_name_override: area120tables
default_version: v1alpha1
- name: google-auth
version: 2.55.1
version: 2.55.2
python:
library_type: AUTH
- name: google-auth-httplib2
Expand Down Expand Up @@ -286,7 +286,7 @@ libraries:
python:
default_version: v1
- name: google-cloud-agentregistry
version: 0.0.0
version: 0.1.0
apis:
- path: google/cloud/agentregistry/v1
copyright_year: "2026"
Expand Down Expand Up @@ -1962,7 +1962,7 @@ libraries:
metadata_name_override: speech
default_version: v1
- name: google-cloud-storage
version: 3.12.0
version: 3.12.1
apis:
- path: google/storage/v2
python:
Expand Down
7 changes: 7 additions & 0 deletions packages/db-dtypes/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

[1]: https://pypi.org/project/db-dtypes/#history

## [1.7.1](https://github.com/googleapis/google-cloud-python/compare/db-dtypes-v1.7.0...db-dtypes-v1.7.1) (2026-06-30)


### Bug Fixes

* avoid deprecated unitless operations for NumPy 2.5 compatibility ([#17589](https://github.com/googleapis/google-cloud-python/issues/17589)) ([d0b2abc](https://github.com/googleapis/google-cloud-python/commit/d0b2abc2aef8d95402c026cccbc866d812b819b8))

## [1.7.0](https://github.com/googleapis/google-cloud-python/compare/db-dtypes-v1.6.0...db-dtypes-v1.7.0) (2026-06-02)


Expand Down
6 changes: 3 additions & 3 deletions packages/db-dtypes/db_dtypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
date_dtype_name = "dbdate"
time_dtype_name = "dbtime"
_EPOCH = datetime.datetime(1970, 1, 1)
_NPEPOCH = numpy.datetime64(_EPOCH, "ns")
_NPEPOCH = numpy.datetime64(_EPOCH)
_NP_DTYPE = "datetime64[ns]"

# Numpy converts datetime64 scalars to datetime.datetime only if microsecond or
Expand Down Expand Up @@ -119,7 +119,7 @@ def _datetime(
)

if pandas.isna(scalar):
return numpy.datetime64("NaT", "ns")
return numpy.datetime64("NaT")
if isinstance(scalar, datetime.time):
return pandas.Timestamp(
year=1970,
Expand Down Expand Up @@ -250,7 +250,7 @@ def _datetime(
scalar = scalar.as_py()

if pandas.isna(scalar):
return numpy.datetime64("NaT", "D")
return numpy.datetime64("NaT")
elif isinstance(scalar, numpy.datetime64):
dateObj = pandas.Timestamp(scalar)
elif isinstance(scalar, datetime.date):
Expand Down
2 changes: 1 addition & 1 deletion packages/db-dtypes/db_dtypes/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1.7.0" # pragma: NO COVER
__version__ = "1.7.1" # pragma: NO COVER
7 changes: 7 additions & 0 deletions packages/gapic-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

[1]: https://pypi.org/project/gapic-generator/#history

## [1.36.1](https://github.com/googleapis/google-cloud-python/compare/gapic-generator-v1.36.0...gapic-generator-v1.36.1) (2026-06-30)


### Bug Fixes

* **deps:** bump google-api-core to 2.25.0 ([#17599](https://github.com/googleapis/google-cloud-python/issues/17599)) ([8b359e2](https://github.com/googleapis/google-cloud-python/commit/8b359e24279bc9c444114a1476c715647b960c4f))

## [1.36.0](https://github.com/googleapis/google-cloud-python/compare/gapic-generator-v1.35.0...gapic-generator-v1.36.0) (2026-06-25)


Expand Down
2 changes: 1 addition & 1 deletion packages/gapic-generator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
name = "gapic-generator"
description = "Google API Client Generator for Python"
url = "https://github.com/googleapis/google-cloud-python/tree/main/packages/gapic-generator"
version = "1.36.0"
version = "1.36.1"
release_status = "Development Status :: 5 - Production/Stable"
dependencies = [
# Ensure that the lower bounds of these dependencies match what we have in the
Expand Down
7 changes: 7 additions & 0 deletions packages/google-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

[1]: https://pypi.org/project/google-auth/#history

## [2.55.2](https://github.com/googleapis/google-cloud-python/compare/google-auth-v2.55.1...google-auth-v2.55.2) (2026-06-30)


### Bug Fixes

* **auth:** align mTLS discovery and enforce fail-fast transport configuration. ([#17470](https://github.com/googleapis/google-cloud-python/issues/17470)) ([f492d3d](https://github.com/googleapis/google-cloud-python/commit/f492d3d5e5a4b693caf7c9a8fbfdfc073a1bcda8))

## [2.55.1](https://github.com/googleapis/google-cloud-python/compare/google-auth-v2.55.0...google-auth-v2.55.1) (2026-06-25)


Expand Down
2 changes: 1 addition & 1 deletion packages/google-auth/google/auth/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "2.55.1"
__version__ = "2.55.2"
9 changes: 9 additions & 0 deletions packages/google-cloud-agentregistry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.1.0 (2026-06-30)


### Features

* **google/cloud/agentregistry/v1:** add google-cloud-agentregistry ([#17565](https://github.com/googleapis/google-cloud-python/issues/17565)) ([f479800](https://github.com/googleapis/google-cloud-python/commit/f479800a962d9eb8cdaa1f9559ed86ad2f819ddb))

## Changelog

[PyPI History][1]

[1]: https://pypi.org/project/google-cloud-agentregistry/#history
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.0.0" # {x-release-please-version}
__version__ = "0.1.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.0.0" # {x-release-please-version}
__version__ = "0.1.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"language": "PYTHON",
"name": "google-cloud-agentregistry",
"version": "0.0.0"
"version": "0.1.0"
},
"snippets": [
{
Expand Down
7 changes: 7 additions & 0 deletions packages/google-cloud-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

[1]: https://pypi.org/project/google-cloud-storage/#history

## [3.12.1](https://github.com/googleapis/google-cloud-python/compare/google-cloud-storage-v3.12.0...google-cloud-storage-v3.12.1) (2026-06-30)


### Bug Fixes

* **storage:** log occasional (1 in 5 million) additional bytes received from GCS in read path ([#17423](https://github.com/googleapis/google-cloud-python/issues/17423)) ([335c12f](https://github.com/googleapis/google-cloud-python/commit/335c12ff4cc5e4911a005a790d14ab1e1e346197))

## [3.12.0](https://github.com/googleapis/google-cloud-python/compare/google-cloud-storage-v3.11.0...google-cloud-storage-v3.12.0) (2026-06-11)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "3.12.0" # {x-release-please-version}
__version__ = "3.12.1" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "3.12.0" # {x-release-please-version}
__version__ = "3.12.1" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "3.12.0"
__version__ = "3.12.1"
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"language": "PYTHON",
"name": "google-cloud-storage",
"version": "3.12.0"
"version": "3.12.1"
},
"snippets": [
{
Expand Down
Loading