From 03bc65551ca94e09aab54617e74bb992c5dbb0be Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Tue, 4 Oct 2022 15:42:57 +0200 Subject: [PATCH 1/4] chore(deps): update dependency google-cloud-monitoring to v2.11.2 (#498) --- samples/snippets/v3/alerts-client/requirements.txt | 2 +- samples/snippets/v3/cloud-client/requirements.txt | 2 +- samples/snippets/v3/uptime-check-client/requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/snippets/v3/alerts-client/requirements.txt b/samples/snippets/v3/alerts-client/requirements.txt index f0b2ede7..db5d369c 100644 --- a/samples/snippets/v3/alerts-client/requirements.txt +++ b/samples/snippets/v3/alerts-client/requirements.txt @@ -1,2 +1,2 @@ -google-cloud-monitoring==2.11.1 +google-cloud-monitoring==2.11.2 tabulate==0.8.10 diff --git a/samples/snippets/v3/cloud-client/requirements.txt b/samples/snippets/v3/cloud-client/requirements.txt index 78083b0f..7d155e14 100644 --- a/samples/snippets/v3/cloud-client/requirements.txt +++ b/samples/snippets/v3/cloud-client/requirements.txt @@ -1 +1 @@ -google-cloud-monitoring==2.11.1 +google-cloud-monitoring==2.11.2 diff --git a/samples/snippets/v3/uptime-check-client/requirements.txt b/samples/snippets/v3/uptime-check-client/requirements.txt index f0b2ede7..db5d369c 100644 --- a/samples/snippets/v3/uptime-check-client/requirements.txt +++ b/samples/snippets/v3/uptime-check-client/requirements.txt @@ -1,2 +1,2 @@ -google-cloud-monitoring==2.11.1 +google-cloud-monitoring==2.11.2 tabulate==0.8.10 From a843ff7191739ea27eba3edad84e32dc260e2c9a Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Thu, 6 Oct 2022 15:40:12 +0200 Subject: [PATCH 2/4] chore(deps): update dependency backoff to v2.2.1 (#499) --- samples/snippets/v3/cloud-client/requirements-test.txt | 2 +- samples/snippets/v3/uptime-check-client/requirements-test.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/snippets/v3/cloud-client/requirements-test.txt b/samples/snippets/v3/cloud-client/requirements-test.txt index 987cc10d..46606d37 100644 --- a/samples/snippets/v3/cloud-client/requirements-test.txt +++ b/samples/snippets/v3/cloud-client/requirements-test.txt @@ -1,3 +1,3 @@ -backoff==2.1.2 +backoff==2.2.1 pytest==7.1.3 mock==4.0.3 diff --git a/samples/snippets/v3/uptime-check-client/requirements-test.txt b/samples/snippets/v3/uptime-check-client/requirements-test.txt index 6759e75e..3bc76cee 100644 --- a/samples/snippets/v3/uptime-check-client/requirements-test.txt +++ b/samples/snippets/v3/uptime-check-client/requirements-test.txt @@ -1,2 +1,2 @@ -backoff==2.1.2 +backoff==2.2.1 pytest==7.1.3 From 9bb171e7292cb60c6df9824a1c046cc57a76a9f2 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 7 Oct 2022 16:51:21 -0400 Subject: [PATCH 3/4] fix(deps): allow protobuf 3.19.5 (#500) * 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 b9faac9a..25045a19 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ 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.*", "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 = {"pandas": "pandas >= 0.17.1"} diff --git a/testing/constraints-3.7.txt b/testing/constraints-3.7.txt index ac3f22b2..b69e6917 100644 --- a/testing/constraints-3.7.txt +++ b/testing/constraints-3.7.txt @@ -7,4 +7,4 @@ google-api-core==1.32.0 proto-plus==1.22.0 pandas==0.23.2 -protobuf==3.20.2 +protobuf==3.19.5 From b8d1a7f3c48f6ede381e0022816e92231ea0c2f8 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 10 Oct 2022 10:43:18 -0700 Subject: [PATCH 4/4] chore(main): release 2.11.3 (#502) 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 6b0c2dc9..f5ef46c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ [1]: https://pypi.org/project/google-cloud-monitoring/#history +## [2.11.3](https://github.com/googleapis/python-monitoring/compare/v2.11.2...v2.11.3) (2022-10-07) + + +### Bug Fixes + +* **deps:** Allow protobuf 3.19.5 ([#500](https://github.com/googleapis/python-monitoring/issues/500)) ([9bb171e](https://github.com/googleapis/python-monitoring/commit/9bb171e7292cb60c6df9824a1c046cc57a76a9f2)) + ## [2.11.2](https://github.com/googleapis/python-monitoring/compare/v2.11.1...v2.11.2) (2022-10-03) diff --git a/setup.py b/setup.py index 25045a19..3b2c26a7 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ name = "google-cloud-monitoring" description = "Stackdriver Monitoring API client library" -version = "2.11.2" +version = "2.11.3" # Should be one of: # 'Development Status :: 3 - Alpha' # 'Development Status :: 4 - Beta'