GoogleCloudPlatform / getting-started-python

Code samples for using Python on Google Cloud Platform
https://cloud.google.com/python
Apache License 2.0
783 stars 587 forks source link

chore(deps): update all dependencies #547

Open renovate-bot opened 1 year ago

renovate-bot commented 1 year ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
Flask (changelog) ==2.2.5 -> ==3.0.3 age adoption passing confidence major
flake8 (changelog) ==6.0.0 -> ==7.1.1 age adoption passing confidence major
flask (changelog) ==2.2.5 -> ==3.0.3 age adoption passing confidence major
google-cloud-error-reporting ==1.9.1 -> ==1.11.0 age adoption passing confidence minor
google-cloud-firestore ==2.11.1 -> ==2.18.0 age adoption passing confidence minor
google-cloud-logging ==3.5.0 -> ==3.11.2 age adoption passing confidence minor
google-cloud-pubsub ==2.16.1 -> ==2.23.1 age adoption passing confidence minor
google-cloud-storage ==2.9.0 -> ==2.18.2 age adoption passing confidence minor
google-cloud-translate (source) ==3.11.1 -> ==3.16.0 age adoption passing confidence minor
nox ==2023.4.22 -> ==2024.4.15 age adoption passing confidence major
pytest (changelog) ==7.3.1 -> ==8.3.3 age adoption passing confidence major
pytest (changelog) ==7.1.2 -> ==8.3.3 age adoption passing confidence major
python 3.11-slim -> 3.12-slim age adoption passing confidence final minor

Release Notes

pallets/flask (Flask) ### [`v3.0.3`](https://redirect.github.com/pallets/flask/blob/HEAD/CHANGES.rst#Version-303) [Compare Source](https://redirect.github.com/pallets/flask/compare/3.0.2...3.0.3) Released 2024-04-07 - The default `hashlib.sha1` may not be available in FIPS builds. Don't access it at import time so the developer has time to change the default. :issue:`5448` - Don't initialize the `cli` attribute in the sansio scaffold, but rather in the `Flask` concrete class. :pr:`5270` ### [`v3.0.2`](https://redirect.github.com/pallets/flask/blob/HEAD/CHANGES.rst#Version-302) [Compare Source](https://redirect.github.com/pallets/flask/compare/3.0.1...3.0.2) Released 2024-02-03 - Correct type for `jinja_loader` property. :issue:`5388` - Fix error with `--extra-files` and `--exclude-patterns` CLI options. :issue:`5391` ### [`v3.0.1`](https://redirect.github.com/pallets/flask/blob/HEAD/CHANGES.rst#Version-301) [Compare Source](https://redirect.github.com/pallets/flask/compare/3.0.0...3.0.1) Released 2024-01-18 - Correct type for `path` argument to `send_file`. :issue:`5230` - Fix a typo in an error message for the `flask run --key` option. :pr:`5344` - Session data is untagged without relying on the built-in `json.loads` `object_hook`. This allows other JSON providers that don't implement that. :issue:`5381` - Address more type findings when using mypy strict mode. :pr:`5383` ### [`v3.0.0`](https://redirect.github.com/pallets/flask/blob/HEAD/CHANGES.rst#Version-300) [Compare Source](https://redirect.github.com/pallets/flask/compare/2.3.3...3.0.0) Released 2023-09-30 - Remove previously deprecated code. :pr:`5223` - Deprecate the `__version__` attribute. Use feature detection, or `importlib.metadata.version("flask")`, instead. :issue:`5230` - Restructure the code such that the Flask (app) and Blueprint classes have Sans-IO bases. :pr:`5127` - Allow self as an argument to url_for. :pr:`5264` - Require Werkzeug >= 3.0.0. ### [`v2.3.3`](https://redirect.github.com/pallets/flask/blob/HEAD/CHANGES.rst#Version-233) [Compare Source](https://redirect.github.com/pallets/flask/compare/2.3.2...2.3.3) Released 2023-08-21 - Python 3.12 compatibility. - Require Werkzeug >= 2.3.7. - Use `flit_core` instead of `setuptools` as build backend. - Refactor how an app's root and instance paths are determined. :issue:`5160` ### [`v2.3.2`](https://redirect.github.com/pallets/flask/blob/HEAD/CHANGES.rst#Version-232) [Compare Source](https://redirect.github.com/pallets/flask/compare/2.3.1...2.3.2) Released 2023-05-01 - Set `Vary: Cookie` header when the session is accessed, modified, or refreshed. - Update Werkzeug requirement to >=2.3.3 to apply recent bug fixes. ### [`v2.3.1`](https://redirect.github.com/pallets/flask/blob/HEAD/CHANGES.rst#Version-231) [Compare Source](https://redirect.github.com/pallets/flask/compare/2.3.0...2.3.1) Released 2023-04-25 - Restore deprecated `from flask import Markup`. :issue:`5084` ### [`v2.3.0`](https://redirect.github.com/pallets/flask/blob/HEAD/CHANGES.rst#Version-230) [Compare Source](https://redirect.github.com/pallets/flask/compare/2.2.5...2.3.0) Released 2023-04-25 - Drop support for Python 3.7. :pr:`5072` - Update minimum requirements to the latest versions: Werkzeug>=2.3.0, Jinja2>3.1.2, itsdangerous>=2.1.2, click>=8.1.3. - Remove previously deprecated code. :pr:`4995` - The `push` and `pop` methods of the deprecated `_app_ctx_stack` and `_request_ctx_stack` objects are removed. `top` still exists to give extensions more time to update, but it will be removed. - The `FLASK_ENV` environment variable, `ENV` config key, and `app.env` property are removed. - The `session_cookie_name`, `send_file_max_age_default`, `use_x_sendfile`, `propagate_exceptions`, and `templates_auto_reload` properties on `app` are removed. - The `JSON_AS_ASCII`, `JSON_SORT_KEYS`, `JSONIFY_MIMETYPE`, and `JSONIFY_PRETTYPRINT_REGULAR` config keys are removed. - The `app.before_first_request` and `bp.before_app_first_request` decorators are removed. - `json_encoder` and `json_decoder` attributes on app and blueprint, and the corresponding `json.JSONEncoder` and `JSONDecoder` classes, are removed. - The `json.htmlsafe_dumps` and `htmlsafe_dump` functions are removed. - Calling setup methods on blueprints after registration is an error instead of a warning. :pr:`4997` - Importing `escape` and `Markup` from `flask` is deprecated. Import them directly from `markupsafe` instead. :pr:`4996` - The `app.got_first_request` property is deprecated. :pr:`4997` - The `locked_cached_property` decorator is deprecated. Use a lock inside the decorated function if locking is needed. :issue:`4993` - Signals are always available. `blinker>=1.6.2` is a required dependency. The `signals_available` attribute is deprecated. :issue:`5056` - Signals support `async` subscriber functions. :pr:`5049` - Remove uses of locks that could cause requests to block each other very briefly. :issue:`4993` - Use modern packaging metadata with `pyproject.toml` instead of `setup.cfg`. :pr:`4947` - Ensure subdomains are applied with nested blueprints. :issue:`4834` - `config.from_file` can use `text=False` to indicate that the parser wants a binary file instead. :issue:`4989` - If a blueprint is created with an empty name it raises a `ValueError`. :issue:`5010` - `SESSION_COOKIE_DOMAIN` does not fall back to `SERVER_NAME`. The default is not to set the domain, which modern browsers interpret as an exact match rather than a subdomain match. Warnings about `localhost` and IP addresses are also removed. :issue:`5051` - The `routes` command shows each rule's `subdomain` or `host` when domain matching is in use. :issue:`5004` - Use postponed evaluation of annotations. :pr:`5071`
pycqa/flake8 (flake8) ### [`v7.1.1`](https://redirect.github.com/pycqa/flake8/compare/7.1.0...7.1.1) [Compare Source](https://redirect.github.com/pycqa/flake8/compare/7.1.0...7.1.1) ### [`v7.1.0`](https://redirect.github.com/pycqa/flake8/compare/7.0.0...7.1.0) [Compare Source](https://redirect.github.com/pycqa/flake8/compare/7.0.0...7.1.0) ### [`v7.0.0`](https://redirect.github.com/pycqa/flake8/compare/6.1.0...7.0.0) [Compare Source](https://redirect.github.com/pycqa/flake8/compare/6.1.0...7.0.0) ### [`v6.1.0`](https://redirect.github.com/pycqa/flake8/compare/6.0.0...6.1.0) [Compare Source](https://redirect.github.com/pycqa/flake8/compare/6.0.0...6.1.0)
googleapis/python-error-reporting (google-cloud-error-reporting) ### [`v1.11.0`](https://redirect.github.com/googleapis/python-error-reporting/blob/HEAD/CHANGELOG.md#1110-2024-03-26) [Compare Source](https://redirect.github.com/googleapis/python-error-reporting/compare/v1.10.0...v1.11.0) ##### Features - Allow users to explicitly configure universe domain ([#​475](https://redirect.github.com/googleapis/python-error-reporting/issues/475)) ([e4c3454](https://redirect.github.com/googleapis/python-error-reporting/commit/e4c3454bd5ba9f452479b0bc956c6ef011766d14)) ### [`v1.10.0`](https://redirect.github.com/googleapis/python-error-reporting/blob/HEAD/CHANGELOG.md#1100-2023-12-10) [Compare Source](https://redirect.github.com/googleapis/python-error-reporting/compare/v1.9.2...v1.10.0) ##### Features - Add support for Python 3.12 ([#​459](https://redirect.github.com/googleapis/python-error-reporting/issues/459)) ([36c1b59](https://redirect.github.com/googleapis/python-error-reporting/commit/36c1b598b35561e56815ce729884410134c3357d)) - Use native namespaces instead of pkg_resources ([#​463](https://redirect.github.com/googleapis/python-error-reporting/issues/463)) ([a63e3f2](https://redirect.github.com/googleapis/python-error-reporting/commit/a63e3f25ce5ef0cd0077838cdbb6ceff0f15ce31)) ##### Bug Fixes - Use `retry_async` instead of `retry` in async client ([#​462](https://redirect.github.com/googleapis/python-error-reporting/issues/462)) ([44c2b14](https://redirect.github.com/googleapis/python-error-reporting/commit/44c2b146aec92e272134ebaa6945fe78f98753bd)) ##### Documentation - Minor formatting ([#​448](https://redirect.github.com/googleapis/python-error-reporting/issues/448)) ([48823d4](https://redirect.github.com/googleapis/python-error-reporting/commit/48823d4529fc2a2ac7b6c3f745c3ea5cb0ec9d38)) ### [`v1.9.2`](https://redirect.github.com/googleapis/python-error-reporting/blob/HEAD/CHANGELOG.md#192-2023-07-04) [Compare Source](https://redirect.github.com/googleapis/python-error-reporting/compare/v1.9.1...v1.9.2) ##### Bug Fixes - Add async context manager return types ([#​434](https://redirect.github.com/googleapis/python-error-reporting/issues/434)) ([319fa54](https://redirect.github.com/googleapis/python-error-reporting/commit/319fa54a19cb9aca3a079439fd7c6bd2c3163f71))
googleapis/python-firestore (google-cloud-firestore) ### [`v2.18.0`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2180-2024-08-26) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.17.2...v2.18.0) ##### Features - Support returning computed distance and set distance thresholds on VectorQueries ([#​960](https://redirect.github.com/googleapis/python-firestore/issues/960)) ([5c2192d](https://redirect.github.com/googleapis/python-firestore/commit/5c2192d3c66f6b6a11f122affbfb29556a77a535)) ##### Bug Fixes - Remove custom retry loop ([#​948](https://redirect.github.com/googleapis/python-firestore/issues/948)) ([04bb206](https://redirect.github.com/googleapis/python-firestore/commit/04bb20628a8e68a0ad86433c18c37734b6f282c8)) ### [`v2.17.2`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2172-2024-08-13) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.17.1...v2.17.2) ##### Bug Fixes - Allow protobuf 5.x; require protobuf >=3.20.2 ([#​950](https://redirect.github.com/googleapis/python-firestore/issues/950)) ([6f86506](https://redirect.github.com/googleapis/python-firestore/commit/6f86506030ba02b8d9b3699cf9d66d6fa7df1e91)) - Support async vector search from a collection ([#​949](https://redirect.github.com/googleapis/python-firestore/issues/949)) ([6446e29](https://redirect.github.com/googleapis/python-firestore/commit/6446e294b83fe202c83e3da1a66b9981f8bbe66a)) ### [`v2.17.1`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2171-2024-08-09) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.17.0...v2.17.1) ##### Bug Fixes - Allow protobuf 5.x ([#​919](https://redirect.github.com/googleapis/python-firestore/issues/919)) ([3a13bf9](https://redirect.github.com/googleapis/python-firestore/commit/3a13bf960cc1f463843b6372d2e5eb0ab4c2e75f)) ### [`v2.17.0`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2170-2024-07-12) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.16.1...v2.17.0) ##### Features - Support async Vector Search ([#​901](https://redirect.github.com/googleapis/python-firestore/issues/901)) ([2de1620](https://redirect.github.com/googleapis/python-firestore/commit/2de16209409c9d9ba41d3444400e6a39ee1b2936)) - Use generator for stream results ([#​926](https://redirect.github.com/googleapis/python-firestore/issues/926)) ([3e5df35](https://redirect.github.com/googleapis/python-firestore/commit/3e5df3565c9fc6f73f60207a46ebe1cd70c4df8d)) ### [`v2.16.1`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2161-2024-04-17) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.16.0...v2.16.1) ##### Bug Fixes - **repr** method in vector.py ([#​903](https://redirect.github.com/googleapis/python-firestore/issues/903)) ([6886f2b](https://redirect.github.com/googleapis/python-firestore/commit/6886f2bbfb8e2320be58ba1b129733c8f2c5f8ba)) ##### Documentation - Allow 14 week backup retention for Firestore daily backups ([#​899](https://redirect.github.com/googleapis/python-firestore/issues/899)) ([9521ded](https://redirect.github.com/googleapis/python-firestore/commit/9521deddc5a4b16956f37136f84928ac99688022)) ### [`v2.16.0`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2160-2024-04-02) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.15.0...v2.16.0) ##### Features - A new message `Backup` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `BackupSchedule` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `CreateBackupScheduleRequest` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `DailyRecurrence` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `DeleteBackupRequest` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `DeleteBackupScheduleRequest` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `GetBackupRequest` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `GetBackupScheduleRequest` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `ListBackupSchedulesRequest` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `ListBackupSchedulesResponse` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `ListBackupsRequest` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `ListBackupsResponse` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `RestoreDatabaseMetadata` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `RestoreDatabaseRequest` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `UpdateBackupScheduleRequest` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new message `WeeklyRecurrence` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new method `CreateBackupSchedule` is added to service `FirestoreAdmin` ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new method `DeleteBackup` is added to service `FirestoreAdmin` ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new method `DeleteBackupSchedule` is added to service `FirestoreAdmin` ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new method `GetBackup` is added to service `FirestoreAdmin` ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new method `GetBackupSchedule` is added to service `FirestoreAdmin` ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new method `ListBackups` is added to service `FirestoreAdmin` ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new method `ListBackupSchedules` is added to service `FirestoreAdmin` ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new method `RestoreDatabase` is added to service `FirestoreAdmin` ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new method `UpdateBackupSchedule` is added to service `FirestoreAdmin` ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new resource_definition `firestore.googleapis.com/Backup` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - A new resource_definition `firestore.googleapis.com/BackupSchedule` is added ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - Add ExplainMetrics field to RunAggregationQueryResponse ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - Add ExplainMetrics field to RunQueryResponse ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - Add ExplainOptions field to RunAggregationQueryRequest ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - Add ExplainOptions field to RunQueryRequest ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - Add new types ExplainOptions, ExplainMetrics, PlanSummary, ExecutionStats ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - Add Vector Index API ([#​894](https://redirect.github.com/googleapis/python-firestore/issues/894)) ([c76f087](https://redirect.github.com/googleapis/python-firestore/commit/c76f087624619cc752be856df2c64510913d0a79)) - Add VectorSearch API ([fc7b906](https://redirect.github.com/googleapis/python-firestore/commit/fc7b906fc0a759df7c5b626474f132099117b6ae)) - Support Vector Search ([#​896](https://redirect.github.com/googleapis/python-firestore/issues/896)) ([08fcaaf](https://redirect.github.com/googleapis/python-firestore/commit/08fcaafa3c8e943c95e79d3654f8e76463c597d5)) ##### Bug Fixes - Add google-auth as a direct dependency ([#​875](https://redirect.github.com/googleapis/python-firestore/issues/875)) ([ae5ba71](https://redirect.github.com/googleapis/python-firestore/commit/ae5ba715e603652b94b2e7baaa21c5543d4e1e93)) ##### Documentation - Correct BackupSchedule recurrence docs that mentioned specific time of day ([#​898](https://redirect.github.com/googleapis/python-firestore/issues/898)) ([a8ed3ea](https://redirect.github.com/googleapis/python-firestore/commit/a8ed3ea56392fa95b3b1913c9d10fa4e3d7f441a)) - Fix docs structure for Firestore ([#​868](https://redirect.github.com/googleapis/python-firestore/issues/868)) ([8ddb859](https://redirect.github.com/googleapis/python-firestore/commit/8ddb859c8178043c0dcd09c85d68ba5d311563bf)) ### [`v2.15.0`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2150-2024-02-20) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.14.0...v2.15.0) ##### Features - Add DeleteDatabase API and delete protection ([18f61c2](https://redirect.github.com/googleapis/python-firestore/commit/18f61c2ffd15cfd065fcfdb0caa1bcca8eb4c6c6)) ##### Bug Fixes - Find emulator project id from environment variable ([afd16e1](https://redirect.github.com/googleapis/python-firestore/commit/afd16e109a875df6ef51b3fa760235b9b454c9be)) ##### Documentation - Fix formatting due to unclosed backtick ([18f61c2](https://redirect.github.com/googleapis/python-firestore/commit/18f61c2ffd15cfd065fcfdb0caa1bcca8eb4c6c6)) - Improve the documentation on Document.fields ([#​831](https://redirect.github.com/googleapis/python-firestore/issues/831)) ([19a55bd](https://redirect.github.com/googleapis/python-firestore/commit/19a55bda7b5f5e26ff334ae79f0a33b2bb9472e3)) - Update Database API description ([18f61c2](https://redirect.github.com/googleapis/python-firestore/commit/18f61c2ffd15cfd065fcfdb0caa1bcca8eb4c6c6)) ### [`v2.14.0`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2140-2023-12-13) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.13.1...v2.14.0) ##### Features - Add support for Python 3.12 ([#​795](https://redirect.github.com/googleapis/python-firestore/issues/795)) ([b301f8b](https://redirect.github.com/googleapis/python-firestore/commit/b301f8b10a80b38103fb3fbca544adeab594a8af)) - Expose Firestore namespace ID fields in import/export APIs to stable ([3a624a9](https://redirect.github.com/googleapis/python-firestore/commit/3a624a9ddf00f8c9f84593d483bfae7c7d4276d9)) - Expose Firestore PITR fields in Database to stable ([3a624a9](https://redirect.github.com/googleapis/python-firestore/commit/3a624a9ddf00f8c9f84593d483bfae7c7d4276d9)) - Expose Firestore snapshot_time field in export API to stable ([3a624a9](https://redirect.github.com/googleapis/python-firestore/commit/3a624a9ddf00f8c9f84593d483bfae7c7d4276d9)) - Introduce compatibility with native namespace packages ([#​792](https://redirect.github.com/googleapis/python-firestore/issues/792)) ([510adce](https://redirect.github.com/googleapis/python-firestore/commit/510adce5405fef37f00e57416fa9269f8cf4f02a)) - SERVER_TIMESTAMP should survive deep copies ([#​820](https://redirect.github.com/googleapis/python-firestore/issues/820)) ([#​821](https://redirect.github.com/googleapis/python-firestore/issues/821)) ([2b17705](https://redirect.github.com/googleapis/python-firestore/commit/2b177050af225074602184fc4a43d01ea06ca32f)) ##### Bug Fixes - Remove used of deprecated `datetime.datetime.utcnow()` and `datetime.utcfromtimestamp()` ([4a74d71](https://redirect.github.com/googleapis/python-firestore/commit/4a74d71a383a0c5c92285464a8ec7f55a53a3f95)) - Use `retry_async` instead of `retry` in async client ([cae9e46](https://redirect.github.com/googleapis/python-firestore/commit/cae9e46262c2b5fbbdda372c7fd5dbf9833fc77e)) ##### Documentation - Assorted typo fixes and whitespace updates ([3a624a9](https://redirect.github.com/googleapis/python-firestore/commit/3a624a9ddf00f8c9f84593d483bfae7c7d4276d9)) - Deprecate google.cloud.firestore_v1.rate_limiter.utcnow ([4a74d71](https://redirect.github.com/googleapis/python-firestore/commit/4a74d71a383a0c5c92285464a8ec7f55a53a3f95)) ### [`v2.13.1`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2131-2023-11-06) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.13.0...v2.13.1) ##### Bug Fixes - Order normalization with descending query ([#​788](https://redirect.github.com/googleapis/python-firestore/issues/788)) ([dbe8ef7](https://redirect.github.com/googleapis/python-firestore/commit/dbe8ef7dcaa1b23d520a37ec14375c1adf41e0e6)) ### [`v2.13.0`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2130-2023-10-23) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.12.0...v2.13.0) ##### Features - Sum/Avg aggregation queries ([#​715](https://redirect.github.com/googleapis/python-firestore/issues/715)) ([443475b](https://redirect.github.com/googleapis/python-firestore/commit/443475b01395a1749b02035313c54e1d775da09b)) ##### Bug Fixes - Ensure transactions rollback on failure ([#​767](https://redirect.github.com/googleapis/python-firestore/issues/767)) ([cdaf25b](https://redirect.github.com/googleapis/python-firestore/commit/cdaf25b35d27355e4ea577843004fdc2d16bb4ac)) - Improve AsyncQuery typing ([#​782](https://redirect.github.com/googleapis/python-firestore/issues/782)) ([ae1247b](https://redirect.github.com/googleapis/python-firestore/commit/ae1247b4502d395eac7b387dbdd5ef162264069f)) ##### Documentation - Minor formatting ([41b5ea0](https://redirect.github.com/googleapis/python-firestore/commit/41b5ea091245bea291c8de841205ecb53a26087f)) ### [`v2.12.0`](https://redirect.github.com/googleapis/python-firestore/blob/HEAD/CHANGELOG.md#2120-2023-08-07) [Compare Source](https://redirect.github.com/googleapis/python-firestore/compare/v2.11.1...v2.12.0) ##### Features - Add ApiScope and COLLECTION_RECURSIVE query_scope for Firestore index ([#​718](https://redirect.github.com/googleapis/python-firestore/issues/718)) ([d8de142](https://redirect.github.com/googleapis/python-firestore/commit/d8de142b52ed0a7f9e299309173cc72b20184e5c)) - Add bloom filter related proto fields ([#​710](https://redirect.github.com/googleapis/python-firestore/issues/710)) ([26ac1cf](https://redirect.github.com/googleapis/python-firestore/commit/26ac1cfd7450866e6f567169c4662410a4d11e5b)) - Add CreateDatabase API ([#​724](https://redirect.github.com/googleapis/python-firestore/issues/724)) ([64e4404](https://redirect.github.com/googleapis/python-firestore/commit/64e44042869cbe2b48316f7baba537a6379992eb)) - Multi db test parametrization ([#​717](https://redirect.github.com/googleapis/python-firestore/issues/717)) ([91fc8bb](https://redirect.github.com/googleapis/python-firestore/commit/91fc8bbcc239366b954eb32d19f41f44a404fd99)) - Publish proto definitions for SUM/AVG in Firestore ([#​746](https://redirect.github.com/googleapis/python-firestore/issues/746)) ([ccadec5](https://redirect.github.com/googleapis/python-firestore/commit/ccadec5eba81c20618a94c0e4a23f07dfb7c1ea7)) ##### Bug Fixes - Add async context manager return types ([#​732](https://redirect.github.com/googleapis/python-firestore/issues/732)) ([2d42731](https://redirect.github.com/googleapis/python-firestore/commit/2d42731996586fd63e9b8453b0eb627d3e23a310)) ##### Documentation - Minor formatting and grammar ([eb4fe8e](https://redirect.github.com/googleapis/python-firestore/commit/eb4fe8e5a13681ca1ae0909e941b9c28d216b887))
googleapis/python-logging (google-cloud-logging) ### [`v3.11.2`](https://redirect.github.com/googleapis/python-logging/blob/HEAD/CHANGELOG.md#3112-2024-08-15) [Compare Source](https://redirect.github.com/googleapis/python-logging/compare/v3.11.1...v3.11.2) ##### Bug Fixes - **deps:** Require google-cloud-appengine-logging>=0.1.3 ([550abca](https://redirect.github.com/googleapis/python-logging/commit/550abca2846218d114a6b4b42cb165489e630374)) - **deps:** Require google-cloud-audit-log >= 0.2.4 ([550abca](https://redirect.github.com/googleapis/python-logging/commit/550abca2846218d114a6b4b42cb165489e630374)) - **deps:** Require opentelemetry-api>=1.9.0 ([550abca](https://redirect.github.com/googleapis/python-logging/commit/550abca2846218d114a6b4b42cb165489e630374)) - Fixed type hinting issue with specifying Transport class ([#​930](https://redirect.github.com/googleapis/python-logging/issues/930)) ([e2875d6](https://redirect.github.com/googleapis/python-logging/commit/e2875d664c153a4328bd42790dfb7b4ac36a9048)) ### [`v3.11.1`](https://redirect.github.com/googleapis/python-logging/blob/HEAD/CHANGELOG.md#3111-2024-08-06) [Compare Source](https://redirect.github.com/googleapis/python-logging/compare/v3.11.0...v3.11.1) ##### Bug Fixes - Allow protobuf 5.x ([#​888](https://redirect.github.com/googleapis/python-logging/issues/888)) ([7746e64](https://redirect.github.com/googleapis/python-logging/commit/7746e643af29b1008d6e6d6a9958c8337c958dd4)) ### [`v3.11.0`](https://redirect.github.com/googleapis/python-logging/blob/HEAD/CHANGELOG.md#3110-2024-07-15) [Compare Source](https://redirect.github.com/googleapis/python-logging/compare/v3.10.0...v3.11.0) ##### Features - OpenTelemetry trace/spanID integration for Python handlers ([#​889](https://redirect.github.com/googleapis/python-logging/issues/889)) ([78168a3](https://redirect.github.com/googleapis/python-logging/commit/78168a38577b698130a861af4e4d229f42660330)) ##### Bug Fixes - Added environment specific labels to client library when running in Cloud Run Jobs ([#​877](https://redirect.github.com/googleapis/python-logging/issues/877)) ([9c5e8f0](https://redirect.github.com/googleapis/python-logging/commit/9c5e8f0548f88235fe6474469bc37685e2498dd1)) - Added missing import into logger.py ([#​896](https://redirect.github.com/googleapis/python-logging/issues/896)) ([9ca242d](https://redirect.github.com/googleapis/python-logging/commit/9ca242d10f9f3bca120b292f478d62f5fa1d3c06)) - Added type hints to CloudLoggingHandler constructor ([#​903](https://redirect.github.com/googleapis/python-logging/issues/903)) ([6959345](https://redirect.github.com/googleapis/python-logging/commit/69593459614be968f7a0136aa76701c4fc408834)) ##### Documentation - Add summary_overview template ([#​878](https://redirect.github.com/googleapis/python-logging/issues/878)) ([b60714c](https://redirect.github.com/googleapis/python-logging/commit/b60714cb1cc3aac79c86225f8f9cbd24d8ab170f)) - Changed table in web-framework-integration to bulleted list ([#​875](https://redirect.github.com/googleapis/python-logging/issues/875)) ([a4aa3a7](https://redirect.github.com/googleapis/python-logging/commit/a4aa3a7cf1e3bb32ec2772084a7dc6c16e1454ff)) - Documentation update for OpenTelemetry ([#​915](https://redirect.github.com/googleapis/python-logging/issues/915)) ([2a0539a](https://redirect.github.com/googleapis/python-logging/commit/2a0539a30e6dcf45c0970e3aacfd4a2772877526)) - Update `dictConfig` snippet ([#​885](https://redirect.github.com/googleapis/python-logging/issues/885)) ([6264107](https://redirect.github.com/googleapis/python-logging/commit/62641075042a3da9bb9c059d963bad14a1586b1c)) ### [`v3.10.0`](https://redirect.github.com/googleapis/python-logging/blob/HEAD/CHANGELOG.md#3100-2024-03-13) [Compare Source](https://redirect.github.com/googleapis/python-logging/compare/v3.9.0...v3.10.0) ##### Features - Allow users to explicitly configure universe domain ([#​846](https://redirect.github.com/googleapis/python-logging/issues/846)) ([e998a21](https://redirect.github.com/googleapis/python-logging/commit/e998a219740cf8b2373e462867244a6860b0c88c)) ##### Bug Fixes - Added placeholder kwargs to StructuredLogHandler ([#​845](https://redirect.github.com/googleapis/python-logging/issues/845)) ([9bc0a37](https://redirect.github.com/googleapis/python-logging/commit/9bc0a37d910340d828db8bab33d67785f184f00c)) - Allowed for a partial override of loggers that get excluded from setup_client ([#​831](https://redirect.github.com/googleapis/python-logging/issues/831)) ([870c940](https://redirect.github.com/googleapis/python-logging/commit/870c9403e03d31a0f22dddc257cd5fb2b4fc5ee3)) - Remove usage in including_default_value_fields to prepare for protobuf 5.x ([#​866](https://redirect.github.com/googleapis/python-logging/issues/866)) ([66a534d](https://redirect.github.com/googleapis/python-logging/commit/66a534d1b83d7c63f5c7b013bf27ed54dd2786c3)) - Use value of cluster-location in GKE for tagging location ([#​830](https://redirect.github.com/googleapis/python-logging/issues/830)) ([c15847c](https://redirect.github.com/googleapis/python-logging/commit/c15847c215c18ad3970efba12f5d337e6d499883)) ##### Documentation - Added documentation for Django/Flask integrations and dictConfig ([#​848](https://redirect.github.com/googleapis/python-logging/issues/848)) ([c65ec92](https://redirect.github.com/googleapis/python-logging/commit/c65ec92bf348e2bcdd8f4c5bacc152cfb4737eb1)) ### [`v3.9.0`](https://redirect.github.com/googleapis/python-logging/blob/HEAD/CHANGELOG.md#390-2023-12-08) [Compare Source](https://redirect.github.com/googleapis/python-logging/compare/v3.8.0...v3.9.0) ##### Features - Add support for Python 3.12 ([#​813](https://redirect.github.com/googleapis/python-logging/issues/813)) ([6591b53](https://redirect.github.com/googleapis/python-logging/commit/6591b53e3fcd67e156765f329700443647b70349)) - Use native namespaces instead of pkg_resources ([#​812](https://redirect.github.com/googleapis/python-logging/issues/812)) ([10ad75d](https://redirect.github.com/googleapis/python-logging/commit/10ad75d2b9276df389f5069f9f143f8f4621d04d)) ##### Bug Fixes - Fixed DeprecationWarning for datetime objects for Python 3.12 ([#​824](https://redirect.github.com/googleapis/python-logging/issues/824)) ([2384981](https://redirect.github.com/googleapis/python-logging/commit/2384981c9137a57a647a69a32b67dcacd619ea0a)) - Fixed object paths in autogenerated code in owlbot.py ([#​804](https://redirect.github.com/googleapis/python-logging/issues/804)) ([b14bb14](https://redirect.github.com/googleapis/python-logging/commit/b14bb144fad2dcf067b7e62e402b708f45ebadbe)) - Updated protobuf JSON formatting to support nested protobufs ([#​797](https://redirect.github.com/googleapis/python-logging/issues/797)) ([a00c261](https://redirect.github.com/googleapis/python-logging/commit/a00c261ee07a5dcaac9f5b966b4bb6729a2bbe65)) - Use `retry_async` instead of `retry` in async client ([#​816](https://redirect.github.com/googleapis/python-logging/issues/816)) ([c79f7f5](https://redirect.github.com/googleapis/python-logging/commit/c79f7f55dddb170eac29f24b23bfe1dde8bfbda8)) - Use warning instead of warn in system tests to avoid DeprecationWarning ([#​821](https://redirect.github.com/googleapis/python-logging/issues/821)) ([c447175](https://redirect.github.com/googleapis/python-logging/commit/c4471758e1efee0e3599b08969449b2ce71bd1b4)) ### [`v3.8.0`](https://redirect.github.com/googleapis/python-logging/blob/HEAD/CHANGELOG.md#380-2023-10-03) [Compare Source](https://redirect.github.com/googleapis/python-logging/compare/v3.7.0...v3.8.0) ##### Features - Add cloud_run_job monitored resource type. ([#​788](https://redirect.github.com/googleapis/python-logging/issues/788)) ([3b310d6](https://redirect.github.com/googleapis/python-logging/commit/3b310d68b68df5bb31e21ac30b23207ef50c3f6f)) ### [`v3.7.0`](https://redirect.github.com/googleapis/python-logging/blob/HEAD/CHANGELOG.md#370-2023-09-25) [Compare Source](https://redirect.github.com/googleapis/python-logging/compare/v3.6.0...v3.7.0) ##### Features - Add ConfigServiceV2.CreateBucketAsync method for creating Log Buckets asynchronously ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Add ConfigServiceV2.CreateLink method for creating linked datasets for Log Analytics Buckets ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Add ConfigServiceV2.DeleteLink method for deleting linked datasets ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Add ConfigServiceV2.GetLink methods for describing linked datasets ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Add ConfigServiceV2.ListLinks method for listing linked datasets ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Add ConfigServiceV2.UpdateBucketAsync method for creating Log Buckets asynchronously ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Add LogBucket.analytics_enabled field that specifies whether Log Bucket's Analytics features are enabled ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Add LogBucket.index_configs field that contains a list of Log Bucket's indexed fields and related configuration data ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Log Analytics features of the Cloud Logging API ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) ##### Bug Fixes - Add async context manager return types ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Add severity to structured log write ([#​783](https://redirect.github.com/googleapis/python-logging/issues/783)) ([31a7f69](https://redirect.github.com/googleapis/python-logging/commit/31a7f69ed94719546136a3bf1b3ecdb28e369414)) - Handle exceptions raised when fetching Django request data ([#​758](https://redirect.github.com/googleapis/python-logging/issues/758)) ([5ecf886](https://redirect.github.com/googleapis/python-logging/commit/5ecf88606b4f29b00ff8b18ae71c151d203d5c3b)) - Unintended exception omittion ([#​736](https://redirect.github.com/googleapis/python-logging/issues/736)) ([022dc54](https://redirect.github.com/googleapis/python-logging/commit/022dc545f781648043296b3ca04d835fcb6f1d7e)) ##### Documentation - Documentation for the Log Analytics features of the Cloud Logging API ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) - Minor formatting ([30f24a8](https://redirect.github.com/googleapis/python-logging/commit/30f24a8bb3b0be2511264a18c3c93bdd3996fc93)) ### [`v3.6.0`](https://redirect.github.com/googleapis/python-logging/blob/HEAD/CHANGELOG.md#360-2023-07-05) [Compare Source](https://redirect.github.com/googleapis/python-logging/compare/v3.5.0...v3.6.0) ##### Features - Add logic to convert severity string to uppercase ([#​744](https://redirect.github.com/googleapis/python-logging/issues/744)) ([c1c8ce1](https://redirect.github.com/googleapis/python-logging/commit/c1c8ce158f566150319c2d4fb2f068b10668d507)) ##### Bug Fixes - Properly handle None from metadata server ([#​718](https://redirect.github.com/googleapis/python-logging/issues/718)) ([dedaff9](https://redirect.github.com/googleapis/python-logging/commit/dedaff95b2e2ed178a26aa9a04cfafb9b803ec60)) ##### Documentation - Fix formatting of request arg in docstring ([#​734](https://redirect.github.com/googleapis/python-logging/issues/734)) ([dbb1794](https://redirect.github.com/googleapis/python-logging/commit/dbb179407f20beb0f8927570dbc1630c62b23268))
googleapis/python-pubsub (google-cloud-pubsub) ### [`v2.23.1`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2231-2024-09-09) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.23.0...v2.23.1) ##### Bug Fixes - Replace asserts with None checks for graceful shutdown ([#​1244](https://redirect.github.com/googleapis/python-pubsub/issues/1244)) ([ced4f52](https://redirect.github.com/googleapis/python-pubsub/commit/ced4f527c7f918a87d1b89c2b5da59dbdf00e2c3)) ### [`v2.23.0`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2230-2024-07-29) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.22.0...v2.23.0) ##### Features - Add max messages batching for Cloud Storage subscriptions ([#​1224](https://redirect.github.com/googleapis/python-pubsub/issues/1224)) ([91c89d3](https://redirect.github.com/googleapis/python-pubsub/commit/91c89d36c5099591408ab0661c55929e786b1b04)) ### [`v2.22.0`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2220-2024-07-06) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.21.5...v2.22.0) ##### Features - Add service_account_email for export subscriptions ([ec0cc34](https://redirect.github.com/googleapis/python-pubsub/commit/ec0cc349b344b6882979838171b6cae4209a9b02)) - Add use_topic_schema for Cloud Storage Subscriptions ([ec0cc34](https://redirect.github.com/googleapis/python-pubsub/commit/ec0cc349b344b6882979838171b6cae4209a9b02)) ### [`v2.21.5`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2215-2024-06-20) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.21.4...v2.21.5) ##### Bug Fixes - Allow Protobuf 5.x ([a369f04](https://redirect.github.com/googleapis/python-pubsub/commit/a369f04c46e4b3db34dcf8cc2ef7cda4ea491e26)) ### [`v2.21.4`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2214-2024-06-18) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.21.3...v2.21.4) ##### Documentation - **samples:** Add code sample for optimistic subscribe ([#​1182](https://redirect.github.com/googleapis/python-pubsub/issues/1182)) ([d8e8aa5](https://redirect.github.com/googleapis/python-pubsub/commit/d8e8aa59ab0288fdaf5a1cc5e476581e73d0f82c)) ### [`v2.21.3`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2213-2024-06-10) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.21.2...v2.21.3) ##### Bug Fixes - Race condition where future callbacks invoked before client is in paused state ([#​1145](https://redirect.github.com/googleapis/python-pubsub/issues/1145)) ([d12bac6](https://redirect.github.com/googleapis/python-pubsub/commit/d12bac6d94b337aa8978006600fb00e5b13d741d)) - Suppress warnings caused during pytest runs ([#​1189](https://redirect.github.com/googleapis/python-pubsub/issues/1189)) ([cd51149](https://redirect.github.com/googleapis/python-pubsub/commit/cd51149c9e0d3c59d1c75395c05308e860908bf9)) - Typecheck errors in samples/snippets/subscriber.py ([#​1186](https://redirect.github.com/googleapis/python-pubsub/issues/1186)) ([3698450](https://redirect.github.com/googleapis/python-pubsub/commit/3698450041cb4db0e2957832c24450f674b89c11)) ### [`v2.21.2`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2212-2024-05-30) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.21.1...v2.21.2) ##### Bug Fixes - Test failures due to grpcio changes ([#​1178](https://redirect.github.com/googleapis/python-pubsub/issues/1178)) ([086dd46](https://redirect.github.com/googleapis/python-pubsub/commit/086dd4660ec56d9ff2d41a32ec0b8e8dc44acc55)) ### [`v2.21.1`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2211-2024-04-04) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.21.0...v2.21.1) ##### Bug Fixes - Set timeout to infinite for publishing with ordering keys enabled ([#​1134](https://redirect.github.com/googleapis/python-pubsub/issues/1134)) ([67daf3c](https://redirect.github.com/googleapis/python-pubsub/commit/67daf3c64239d22eabe59c3df214057a4e59a39e)) ### [`v2.21.0`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2210-2024-03-26) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.20.3...v2.21.0) ##### Features - Add custom datetime format for Cloud Storage subscriptions ([#​1131](https://redirect.github.com/googleapis/python-pubsub/issues/1131)) ([4da6744](https://redirect.github.com/googleapis/python-pubsub/commit/4da67441ddab01a173620d8c03bc640271c785c6)) ### [`v2.20.3`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2203-2024-03-21) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.20.2...v2.20.3) ##### Documentation - **samples:** Update Region Tags ([#​1128](https://redirect.github.com/googleapis/python-pubsub/issues/1128)) ([e3bc89e](https://redirect.github.com/googleapis/python-pubsub/commit/e3bc89eaa51337c93144d6c3100486353d494ad9)) ### [`v2.20.2`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2202-2024-03-15) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.20.1...v2.20.2) ##### Documentation - **samples:** Add Create Topic with Kinesis IngestionDataSourceSettings Sample ([#​1120](https://redirect.github.com/googleapis/python-pubsub/issues/1120)) ([83dc9ff](https://redirect.github.com/googleapis/python-pubsub/commit/83dc9fff13aa35518fb9b6a73472816da852d975)) - **samples:** Update Topic with Kinesis Ingestion Settings ([#​1123](https://redirect.github.com/googleapis/python-pubsub/issues/1123)) ([e0e2d83](https://redirect.github.com/googleapis/python-pubsub/commit/e0e2d831da8d17288c3ae8900bea2388ce8758af)) ### [`v2.20.1`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2201-2024-03-06) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.20.0...v2.20.1) ##### Bug Fixes - Catch and surface BaseException() ([#​1108](https://redirect.github.com/googleapis/python-pubsub/issues/1108)) ([07e427f](https://redirect.github.com/googleapis/python-pubsub/commit/07e427f675464b9aa79c68dede67082529054980)) ### [`v2.20.0`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2200-2024-03-05) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.19.8...v2.20.0) ##### Features - Add include_recaptcha_script for as a new action in firewall policies ([#​1109](https://redirect.github.com/googleapis/python-pubsub/issues/1109)) ([54041a5](https://redirect.github.com/googleapis/python-pubsub/commit/54041a527398eb0ec5daa97a346ba3202ce349f3)) ##### Documentation - **samples:** Correct type and description of `timeout` parameter in subscriber quickstart ([#​1051](https://redirect.github.com/googleapis/python-pubsub/issues/1051)) ([141a473](https://redirect.github.com/googleapis/python-pubsub/commit/141a473561bd0e45d3137a02cbefddb454ab3af4)) ### [`v2.19.8`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2198-2024-03-05) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.19.7...v2.19.8) ##### Bug Fixes - **deps:** Exclude google-auth 2.24.0 and 2.25.0 ([#​1102](https://redirect.github.com/googleapis/python-pubsub/issues/1102)) ([165c983](https://redirect.github.com/googleapis/python-pubsub/commit/165c983803c48a17141765395cf9ec2e6a7056fa)) ### [`v2.19.7`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2197-2024-02-24) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.19.6...v2.19.7) ##### Bug Fixes - **deps:** Require `google-api-core>=1.34.1` ([#​1080](https://redirect.github.com/googleapis/python-pubsub/issues/1080)) ([1a5a134](https://redirect.github.com/googleapis/python-pubsub/commit/1a5a1342de8736c6a2b1ac63476667f8a02b5bb8)) ### [`v2.19.6`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2196-2024-02-23) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.19.5...v2.19.6) ##### Bug Fixes - Remove LOGGER.exception() line ([#​1087](https://redirect.github.com/googleapis/python-pubsub/issues/1087)) ([a395d26](https://redirect.github.com/googleapis/python-pubsub/commit/a395d26ed0fffaee8662f988da97dd35c480af4f)) ### [`v2.19.5`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2195-2024-02-22) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.19.4...v2.19.5) ##### Bug Fixes - Update system_test_python_versions ([#​1096](https://redirect.github.com/googleapis/python-pubsub/issues/1096)) ([c659ac7](https://redirect.github.com/googleapis/python-pubsub/commit/c659ac777f177e54d7272a8de93fa9f554b15d46)) ### [`v2.19.4`](https://redirect.github.com/googleapis/python-pubsub/blob/HEAD/CHANGELOG.md#2194-2024-02-09) [Compare Source](https://redirect.github.com/googleapis/python-pubsub/compare/v2.19.3...v2.19.4) ##### Bug Fixes - **diregapic:** S/bazel/bazelisk/ in DIREGAPIC build GitHub action ([#​1064](https://redirect.github.com/googleapis/python-pubsub/issues/1064)) ([d56ad12](https://redirect.github.com/googleapis/python-pubsub/commit/d56ad12f197e9e379d2a4a0a38be108808985c23)) ### [`

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR was generated by Mend Renovate. View the repository job log.