-
Notifications
You must be signed in to change notification settings - Fork 81
Comparing changes
Open a pull request
base repository: googleapis/python-firestore
base: v2.12.0
head repository: googleapis/python-firestore
compare: v2.13.0
- 15 commits
- 68 files changed
- 11 contributors
Commits on Sep 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c21bae2 - Browse repository at this point
Copy the full SHA c21bae2View commit details -
Configuration menu - View commit details
-
Copy full SHA for a22d363 - Browse repository at this point
Copy the full SHA a22d363View commit details
Commits on Sep 19, 2023
-
chore: update required test version (#762)
the sync-repo-settings file required system-3.8, but this repo still uses system-3.7. This PR fixes the required check to match
Configuration menu - View commit details
-
Copy full SHA for d0d3054 - Browse repository at this point
Copy the full SHA d0d3054View commit details -
* docs: Minor formatting chore: Update gapic-generator-python to v1.11.5 build: Update rules_python to 0.24.0 PiperOrigin-RevId: 563436317 Source-Link: googleapis/googleapis@42fd37b Source-Link: googleapis/googleapis-gen@280264c Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjgwMjY0Y2EwMmZiOTMxNmI0MjM3YTk2ZDBhZjFhMjM0M2E4MWE1NiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Victor Chudnovsky <[email protected]> Co-authored-by: Daniel Sanche <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 41b5ea0 - Browse repository at this point
Copy the full SHA 41b5ea0View commit details -
chore(deps): update all dependencies (#756)
* chore(deps): update all dependencies * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Daniel Sanche <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 00a9589 - Browse repository at this point
Copy the full SHA 00a9589View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9840d43 - Browse repository at this point
Copy the full SHA 9840d43View commit details
Commits on Sep 29, 2023
-
Configuration menu - View commit details
-
Copy full SHA for cdaf25b - Browse repository at this point
Copy the full SHA cdaf25bView commit details
Commits on Oct 7, 2023
-
chore: expand Target.target_id docs (#774)
* chore: expand Target.target_id docs chore: improve FieldReference.field_path docs chore: (preview only) expose Query Profile API PiperOrigin-RevId: 570489360 Source-Link: googleapis/googleapis@5c5f6b7 Source-Link: googleapis/googleapis-gen@cb29ed5 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiY2IyOWVkNTZiNzM4YWIwNDM2MGQyZTFjYmYzYjFiYzg3ODVmOGNhMSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 954498b - Browse repository at this point
Copy the full SHA 954498bView commit details -
chore: [autoapprove] bump cryptography from 41.0.3 to 41.0.4 (#771)
Source-Link: googleapis/synthtool@dede53f Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:fac304457974bb530cc5396abd4ab25d26a469cd3bc97cbfb18c8d4324c584eb Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1547351 - Browse repository at this point
Copy the full SHA 1547351View commit details
Commits on Oct 10, 2023
-
chore: [autoapprove] Update
black
andisort
to latest versions (#777) Source-Link: googleapis/synthtool@0c7b033 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:08e34975760f002746b1d8c86fdc90660be45945ee6d9db914d1508acdf9a547 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d07eebf - Browse repository at this point
Copy the full SHA d07eebfView commit details
Commits on Oct 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ae1247b - Browse repository at this point
Copy the full SHA ae1247bView commit details
Commits on Oct 19, 2023
-
feat: Sum/Avg aggregation queries (#715)
* Feat: Sum/Avg Feature Adds the ability to perform sum/avg aggregation query through: - query.sum(), - query.avg(), - async_query.sum(), - async_query.avg() * fixed proto sum attribute name * added query tests with alias unset * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * added async tests * added missing decorators * fixed wrong expected values in tests * fixed empty avg aggregations * ran blacken * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * aggregation test should cover all aggregations * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fixed async test * improved transaction tests * cleaned up new tests * removed test logic that belongs in unit tests * ran blacken * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * reverted removed line * fix docstrings * accept FieldPath for aggregations * fixed docstrings * made test changes to avoid index requirements * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fixed lint issues * added field path to collections * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fixed docs issue * added tests with start_at * add no cover marks to TYPE_CHECKING * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * skip cursor aggregations * import query type * fixed no cover comments --------- Co-authored-by: Daniel Sanche <[email protected]> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: kolea2 <[email protected]> Co-authored-by: Daniel Sanche <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 443475b - Browse repository at this point
Copy the full SHA 443475bView commit details
Commits on Oct 23, 2023
-
chore: Update gapic-generator-python to v1.11.9 (#779)
* chore: Update gapic-generator-python to v1.11.7 PiperOrigin-RevId: 573230664 Source-Link: googleapis/googleapis@93beed3 Source-Link: googleapis/googleapis-gen@f4a4eda Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZjRhNGVkYWE4MDU3NjM5ZmNmNmFkZjkxNzk4NzIyODBkMWE4ZjY1MSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: Update gapic-generator-python to v1.11.8 PiperOrigin-RevId: 574178735 Source-Link: googleapis/googleapis@7307199 Source-Link: googleapis/googleapis-gen@ce3af21 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiY2UzYWYyMWI3YzU1OWE4N2MyYmVmYzA3NmJlMGUzYWVkYTNhMjZmMCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: Update gapic-generator-python to v1.11.9 PiperOrigin-RevId: 574520922 Source-Link: googleapis/googleapis@5183984 Source-Link: googleapis/googleapis-gen@a59af19 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYTU5YWYxOWQ0YWM2NTA5ZmFlZGYxY2MzOTAyOTE0MWI2YTViODk2OCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Daniel Sanche <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 25590d2 - Browse repository at this point
Copy the full SHA 25590d2View commit details -
chore: rename rst files to avoid conflict with service names (#785)
Source-Link: googleapis/synthtool@d52e638 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:4f9b3b106ad0beafc2c8a415e3f62c1a0cc23cabea115dbe841b848f581cfe99 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 82122e7 - Browse repository at this point
Copy the full SHA 82122e7View commit details -
chore(main): release 2.13.0 (#763)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Daniel Sanche <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 817ce01 - Browse repository at this point
Copy the full SHA 817ce01View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v2.12.0...v2.13.0