From 9ffbd759772dbb3c34054fd2a0cf6c99a1a060f6 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Mon, 10 Oct 2022 13:22:54 -0400 Subject: [PATCH 1/2] fix(deps): allow protobuf 3.19.5 (#648) * fix(deps): allow protobuf 3.19.5 * explicitly exclude protobuf 4.21.0 --- setup.py | 2 +- testing/constraints-3.7.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 73911a2910..71f9ec61b5 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ "google-api-core[grpc] >= 1.32.0, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*", "google-cloud-core >= 1.4.1, <3.0.0dev", "proto-plus >= 1.22.0, <2.0.0dev", - "protobuf >= 3.20.2, <5.0.0dev", + "protobuf>=3.19.5,<5.0.0dev,!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5", ] extras = {} diff --git a/testing/constraints-3.7.txt b/testing/constraints-3.7.txt index c96e62aae1..21daf4a512 100644 --- a/testing/constraints-3.7.txt +++ b/testing/constraints-3.7.txt @@ -8,4 +8,4 @@ google-api-core==1.32.0 google-cloud-core==1.4.1 proto-plus==1.22.0 -protobuf==3.20.2 # transitive from `google-api-core` +protobuf==3.19.5 # transitive from `google-api-core` From 58866949c1c9a4c8defed91b13c9943e23400c4a Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 13:59:06 -0400 Subject: [PATCH 2/2] chore(main): release 2.7.2 (#650) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c0998c9be..aa4ce2c24a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ [1]: https://pypi.org/project/google-cloud-firestore/#history +## [2.7.2](https://github.com/googleapis/python-firestore/compare/v2.7.1...v2.7.2) (2022-10-10) + + +### Bug Fixes + +* **deps:** Allow protobuf 3.19.5 ([#648](https://github.com/googleapis/python-firestore/issues/648)) ([9ffbd75](https://github.com/googleapis/python-firestore/commit/9ffbd759772dbb3c34054fd2a0cf6c99a1a060f6)) + ## [2.7.1](https://github.com/googleapis/python-firestore/compare/v2.7.0...v2.7.1) (2022-09-29) diff --git a/setup.py b/setup.py index 71f9ec61b5..9027b63c13 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ name = "google-cloud-firestore" description = "Google Cloud Firestore API client library" -version = "2.7.1" +version = "2.7.2" release_status = "Development Status :: 5 - Production/Stable" dependencies = [ "google-api-core[grpc] >= 1.32.0, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*",