From ac30dd08ec71d4506378b89ab93fb402d1183112 Mon Sep 17 00:00:00 2001 From: "Jonathan Hess (he/him)" <103529393+hessjcg@users.noreply.github.com> Date: Wed, 18 Feb 2026 10:44:51 -0700 Subject: [PATCH 1/5] chore(deps): Update dependencies to latest as of 2026-02-13 (#1375) From a62eff13cb9a86153323d61275321a10f9d8cfd6 Mon Sep 17 00:00:00 2001 From: Google Admin Date: Wed, 18 Feb 2026 11:00:45 -0800 Subject: [PATCH 2/5] chore: Refactor Github Action per b/485167538 (#1377) Co-authored-by: Ben Knutson --- .github/workflows/coverage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e809dbd81..8337ba403 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -59,8 +59,8 @@ jobs: - name: Verify code coverage. If your reading this and the step has failed, please add tests to cover your changes. run: | - echo "BASE BRANCH CODE COVERAGE is ${{ env.CUR_COVER }}%" - echo "PULL REQUEST CODE COVERAGE is ${{ env.PR_COVER }}%" - if [ "${{ env.PR_COVER }}" -lt "${{ env.CUR_COVER }}" ]; then + echo "BASE BRANCH CODE COVERAGE is ${CUR_COVER}%" + echo "PULL REQUEST CODE COVERAGE is ${PR_COVER}%" + if [ "${PR_COVER}" -lt "${CUR_COVER}" ]; then exit 1; fi From 8f79f4ed984fbf3d742df333ddb908af0f1f08e4 Mon Sep 17 00:00:00 2001 From: "Jonathan Hess (he/him)" <103529393+hessjcg@users.noreply.github.com> Date: Wed, 18 Feb 2026 18:46:16 -0700 Subject: [PATCH 3/5] fix: update dependencies to latest (#1379) From 0e94ddfaccf708660671a11b0a834868d393a6db Mon Sep 17 00:00:00 2001 From: "Jonathan Hess (he/him)" <103529393+hessjcg@users.noreply.github.com> Date: Mon, 16 Mar 2026 10:44:01 -0600 Subject: [PATCH 4/5] chore(deps): Update dependencies to latest versions. (#1383) --- requirements.txt | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6ab474f70..7527fab09 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,33 @@ aiofiles==25.1.0 +aiohappyeyeballs==2.6.1 aiohttp==3.13.3 +aiosignal==1.4.0 +argcomplete==3.6.3 +attrs==25.4.0 +certifi==2026.2.25 +cffi==2.0.0 +charset-normalizer==3.4.5 +colorlog==6.10.1 cryptography==46.0.3 +dependency-groups==1.3.1 +distlib==0.4.0 dnspython==2.8.0 -Requests==2.32.5 +filelock==3.20.3 +frozenlist==1.8.0 google-auth==2.47.0 +humanize==4.15.0 +idna==3.11 +multidict==6.7.1 +nox==2025.11.12 +packaging==26.0 +pip-review==1.3.0 +platformdirs==4.5.1 +propcache==0.4.1 +pyasn1==0.6.2 +pyasn1_modules==0.4.2 +pycparser==3.0 +requests==2.32.5 +rsa==4.9.1 +urllib3==2.6.3 +virtualenv==20.36.1 +yarl==1.23.0 From 1afc1166e5dab998315900d9480989dae3442d85 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 16:46:19 +0000 Subject: [PATCH 5/5] chore(main): release 1.20.1 (#1380) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ google/cloud/sql/connector/version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 200611edb..ec1f4d6e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.20.1](https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/compare/v1.20.0...v1.20.1) (2026-03-16) + + +### Bug Fixes + +* update dependencies to latest ([#1379](https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/issues/1379)) ([8f79f4e](https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/commit/8f79f4ed984fbf3d742df333ddb908af0f1f08e4)) + ## [1.20.0](https://github.com/GoogleCloudPlatform/cloud-sql-python-connector/compare/v1.19.0...v1.20.0) (2026-01-13) diff --git a/google/cloud/sql/connector/version.py b/google/cloud/sql/connector/version.py index f98ff4b5a..21e0c07ae 100644 --- a/google/cloud/sql/connector/version.py +++ b/google/cloud/sql/connector/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.20.0" +__version__ = "1.20.1"