From 97c6a4c6205752f8b8c9a4647d9557be934320aa Mon Sep 17 00:00:00 2001 From: Jonathan Edey Date: Thu, 7 Nov 2024 11:27:14 -0500 Subject: [PATCH 1/2] feat(firestore): Upgrade `google-cloud-firestore` to support Firestore Multi Database --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index fa48f7f5..8dfe583e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,6 +9,6 @@ pytest-mock >= 3.6.1 cachecontrol >= 0.12.14 google-api-core[grpc] >= 1.22.1, < 3.0.0dev; platform.python_implementation != 'PyPy' google-api-python-client >= 1.7.8 -google-cloud-firestore >= 2.9.1; platform.python_implementation != 'PyPy' +google-cloud-firestore >= 2.12.0; platform.python_implementation != 'PyPy' google-cloud-storage >= 1.37.1 pyjwt[crypto] >= 2.5.0 \ No newline at end of file diff --git a/setup.py b/setup.py index e479e39e..cefb21cb 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ 'cachecontrol>=0.12.14', 'google-api-core[grpc] >= 1.22.1, < 3.0.0dev; platform.python_implementation != "PyPy"', 'google-api-python-client >= 1.7.8', - 'google-cloud-firestore>=2.9.1; platform.python_implementation != "PyPy"', + 'google-cloud-firestore>=2.12.0; platform.python_implementation != "PyPy"', 'google-cloud-storage>=1.37.1', 'pyjwt[crypto] >= 2.5.0', ] From b67ebf3667c7181c384df57e97f54f53465e18df Mon Sep 17 00:00:00 2001 From: Jonathan Edey Date: Thu, 7 Nov 2024 12:08:32 -0500 Subject: [PATCH 2/2] Bump to v2.19.0 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8dfe583e..fd5b0b39 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,6 +9,6 @@ pytest-mock >= 3.6.1 cachecontrol >= 0.12.14 google-api-core[grpc] >= 1.22.1, < 3.0.0dev; platform.python_implementation != 'PyPy' google-api-python-client >= 1.7.8 -google-cloud-firestore >= 2.12.0; platform.python_implementation != 'PyPy' +google-cloud-firestore >= 2.19.0; platform.python_implementation != 'PyPy' google-cloud-storage >= 1.37.1 pyjwt[crypto] >= 2.5.0 \ No newline at end of file diff --git a/setup.py b/setup.py index cefb21cb..23be6d48 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ 'cachecontrol>=0.12.14', 'google-api-core[grpc] >= 1.22.1, < 3.0.0dev; platform.python_implementation != "PyPy"', 'google-api-python-client >= 1.7.8', - 'google-cloud-firestore>=2.12.0; platform.python_implementation != "PyPy"', + 'google-cloud-firestore>=2.19.0; platform.python_implementation != "PyPy"', 'google-cloud-storage>=1.37.1', 'pyjwt[crypto] >= 2.5.0', ]