edina / nbexchange

External exchange for nbgrader
Other
6 stars 2 forks source link

Update dependency sentry-sdk to v2 - autoclosed #157

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 5 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
sentry-sdk (changelog) ==1.40.1 -> ==2.10.0 age adoption passing confidence

Release Notes

getsentry/sentry-python (sentry-sdk) ### [`v2.10.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#2100) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.9.0...2.10.0) ##### Various fixes & improvements - Add client cert and key support to `HttpTransport` ([#​3258](https://togithub.com/getsentry/sentry-python/issues/3258)) by [@​grammy-jiang](https://togithub.com/grammy-jiang) Add `cert_file` and `key_file` to your `sentry_sdk.init` to use a custom client cert and key. Alternatively, the environment variables `CLIENT_CERT_FILE` and `CLIENT_KEY_FILE` can be used as well. - OpenAI: Lazy initialize tiktoken to avoid http at import time ([#​3287](https://togithub.com/getsentry/sentry-python/issues/3287)) by [@​colin-sentry](https://togithub.com/colin-sentry) - OpenAI, Langchain: Make tiktoken encoding name configurable + tiktoken usage opt-in ([#​3289](https://togithub.com/getsentry/sentry-python/issues/3289)) by [@​colin-sentry](https://togithub.com/colin-sentry) Fixed a bug where having certain packages installed along the Sentry SDK caused an HTTP request to be made to OpenAI infrastructure when the Sentry SDK was initialized. The request was made when the `tiktoken` package and at least one of the `openai` or `langchain` packages were installed. The request was fetching a `tiktoken` encoding in order to correctly measure token usage in some OpenAI and Langchain calls. This behavior is now opt-in. The choice of encoding to use was made configurable as well. To opt in, set the `tiktoken_encoding_name` parameter in the OpenAPI or Langchain integration. ```python sentry_sdk.init( integrations=[ OpenAIIntegration(tiktoken_encoding_name="cl100k_base"), LangchainIntegration(tiktoken_encoding_name="cl100k_base"), ], ) ``` - PyMongo: Send query description as valid JSON ([#​3291](https://togithub.com/getsentry/sentry-python/issues/3291)) by [@​0Calories](https://togithub.com/0Calories) - Remove Python 2 compatibility code ([#​3284](https://togithub.com/getsentry/sentry-python/issues/3284)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Fix `sentry_sdk.init` type hint ([#​3283](https://togithub.com/getsentry/sentry-python/issues/3283)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Deprecate `hub` in `Profile` ([#​3270](https://togithub.com/getsentry/sentry-python/issues/3270)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Stop using `Hub` in `init` ([#​3275](https://togithub.com/getsentry/sentry-python/issues/3275)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Delete `_should_send_default_pii` ([#​3274](https://togithub.com/getsentry/sentry-python/issues/3274)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Remove `Hub` usage in `conftest` ([#​3273](https://togithub.com/getsentry/sentry-python/issues/3273)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Rename debug logging filter ([#​3260](https://togithub.com/getsentry/sentry-python/issues/3260)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Update `NoOpSpan.finish` signature ([#​3267](https://togithub.com/getsentry/sentry-python/issues/3267)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Remove `Hub` in `Transaction.finish` ([#​3267](https://togithub.com/getsentry/sentry-python/issues/3267)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Remove Hub from `capture_internal_exception` logic ([#​3264](https://togithub.com/getsentry/sentry-python/issues/3264)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Improve `Scope._capture_internal_exception` type hint ([#​3264](https://togithub.com/getsentry/sentry-python/issues/3264)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Correct `ExcInfo` type ([#​3266](https://togithub.com/getsentry/sentry-python/issues/3266)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Stop using `Hub` in `tracing_utils` ([#​3269](https://togithub.com/getsentry/sentry-python/issues/3269)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) ### [`v2.9.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#290) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.8.0...2.9.0) ##### Various fixes & improvements - ref(transport): Improve event data category typing ([#​3243](https://togithub.com/getsentry/sentry-python/issues/3243)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - ref(tracing): Improved handling of span status ([#​3261](https://togithub.com/getsentry/sentry-python/issues/3261)) by [@​antonpirker](https://togithub.com/antonpirker) - test(client): Add tests for dropped span client reports ([#​3244](https://togithub.com/getsentry/sentry-python/issues/3244)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - test(transport): Test new client report features ([#​3244](https://togithub.com/getsentry/sentry-python/issues/3244)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - feat(tracing): Record lost spans in client reports ([#​3244](https://togithub.com/getsentry/sentry-python/issues/3244)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - test(sampling): Replace custom logic with `capture_record_lost_event_calls` ([#​3257](https://togithub.com/getsentry/sentry-python/issues/3257)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - test(transport): Non-order-dependent discarded events assertion ([#​3255](https://togithub.com/getsentry/sentry-python/issues/3255)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - test(core): Introduce `capture_record_lost_event_calls` fixture ([#​3254](https://togithub.com/getsentry/sentry-python/issues/3254)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - test(core): Fix non-idempotent test ([#​3253](https://togithub.com/getsentry/sentry-python/issues/3253)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) ### [`v2.8.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#280) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.7.1...2.8.0) ##### Various fixes & improvements - `profiler_id` uses underscore ([#​3249](https://togithub.com/getsentry/sentry-python/issues/3249)) by [@​Zylphrex](https://togithub.com/Zylphrex) - Don't send full env to subprocess ([#​3251](https://togithub.com/getsentry/sentry-python/issues/3251)) by [@​kmichel-aiven](https://togithub.com/kmichel-aiven) - Stop using `Hub` in `HttpTransport` ([#​3247](https://togithub.com/getsentry/sentry-python/issues/3247)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Remove `ipdb` from test requirements ([#​3237](https://togithub.com/getsentry/sentry-python/issues/3237)) by [@​rominf](https://togithub.com/rominf) - Avoid propagation of empty baggage ([#​2968](https://togithub.com/getsentry/sentry-python/issues/2968)) by [@​hartungstenio](https://togithub.com/hartungstenio) - Add entry point for `SentryPropagator` ([#​3086](https://togithub.com/getsentry/sentry-python/issues/3086)) by [@​mender](https://togithub.com/mender) - Bump checkouts/data-schemas from `8c13457` to `88273a9` ([#​3225](https://togithub.com/getsentry/sentry-python/issues/3225)) by [@​dependabot](https://togithub.com/dependabot) ### [`v2.7.1`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#271) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.7.0...2.7.1) ##### Various fixes & improvements - fix(otel): Fix missing baggage ([#​3218](https://togithub.com/getsentry/sentry-python/issues/3218)) by [@​sentrivana](https://togithub.com/sentrivana) - This is the config file of asdf-vm which we do not use. ([#​3215](https://togithub.com/getsentry/sentry-python/issues/3215)) by [@​antonpirker](https://togithub.com/antonpirker) - Added option to disable middleware spans in Starlette ([#​3052](https://togithub.com/getsentry/sentry-python/issues/3052)) by [@​antonpirker](https://togithub.com/antonpirker) - build: Update tornado version in setup.py to match code check. ([#​3206](https://togithub.com/getsentry/sentry-python/issues/3206)) by [@​aclemons](https://togithub.com/aclemons) ### [`v2.7.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#270) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.6.0...2.7.0) - Add `origin` to spans and transactions ([#​3133](https://togithub.com/getsentry/sentry-python/issues/3133)) by [@​antonpirker](https://togithub.com/antonpirker) - OTel: Set up typing for OTel ([#​3168](https://togithub.com/getsentry/sentry-python/issues/3168)) by [@​sentrivana](https://togithub.com/sentrivana) - OTel: Auto instrumentation skeleton ([#​3143](https://togithub.com/getsentry/sentry-python/issues/3143)) by [@​sentrivana](https://togithub.com/sentrivana) - OpenAI: If there is an internal error, still return a value ([#​3192](https://togithub.com/getsentry/sentry-python/issues/3192)) by [@​colin-sentry](https://togithub.com/colin-sentry) - MongoDB: Add MongoDB collection span tag ([#​3182](https://togithub.com/getsentry/sentry-python/issues/3182)) by [@​0Calories](https://togithub.com/0Calories) - MongoDB: Change span operation from `db.query` to `db` ([#​3186](https://togithub.com/getsentry/sentry-python/issues/3186)) by [@​0Calories](https://togithub.com/0Calories) - MongoDB: Remove redundant command name in query description ([#​3189](https://togithub.com/getsentry/sentry-python/issues/3189)) by [@​0Calories](https://togithub.com/0Calories) - Apache Spark: Fix spark driver integration ([#​3162](https://togithub.com/getsentry/sentry-python/issues/3162)) by [@​seyoon-lim](https://togithub.com/seyoon-lim) - Apache Spark: Add Spark test suite to tox.ini and to CI ([#​3199](https://togithub.com/getsentry/sentry-python/issues/3199)) by [@​sentrivana](https://togithub.com/sentrivana) - Codecov: Add failed test commits in PRs ([#​3190](https://togithub.com/getsentry/sentry-python/issues/3190)) by [@​antonpirker](https://togithub.com/antonpirker) - Update library, Python versions in tests ([#​3202](https://togithub.com/getsentry/sentry-python/issues/3202)) by [@​sentrivana](https://togithub.com/sentrivana) - Remove Hub from our test suite ([#​3197](https://togithub.com/getsentry/sentry-python/issues/3197)) by [@​antonpirker](https://togithub.com/antonpirker) - Use env vars for default CA cert bundle location ([#​3160](https://togithub.com/getsentry/sentry-python/issues/3160)) by [@​DragoonAethis](https://togithub.com/DragoonAethis) - Create a separate test group for AI ([#​3198](https://togithub.com/getsentry/sentry-python/issues/3198)) by [@​sentrivana](https://togithub.com/sentrivana) - Add additional stub packages for type checking ([#​3122](https://togithub.com/getsentry/sentry-python/issues/3122)) by [@​Daverball](https://togithub.com/Daverball) - Proper naming of requirements files ([#​3191](https://togithub.com/getsentry/sentry-python/issues/3191)) by [@​antonpirker](https://togithub.com/antonpirker) - Pinning pip because new version does not work with some versions of Celery and Httpx ([#​3195](https://togithub.com/getsentry/sentry-python/issues/3195)) by [@​antonpirker](https://togithub.com/antonpirker) - build(deps): bump supercharge/redis-github-action from 1.7.0 to 1.8.0 ([#​3193](https://togithub.com/getsentry/sentry-python/issues/3193)) by [@​dependabot](https://togithub.com/dependabot) - build(deps): bump actions/checkout from 4.1.6 to 4.1.7 ([#​3171](https://togithub.com/getsentry/sentry-python/issues/3171)) by [@​dependabot](https://togithub.com/dependabot) - build(deps): update pytest-asyncio requirement ([#​3087](https://togithub.com/getsentry/sentry-python/issues/3087)) by [@​dependabot](https://togithub.com/dependabot) ### [`v2.6.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#260) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.5.1...2.6.0) - Introduce continuous profiling mode ([#​2830](https://togithub.com/getsentry/sentry-python/issues/2830)) by [@​Zylphrex](https://togithub.com/Zylphrex) - Profiling: Add deprecation comment for profiler internals ([#​3167](https://togithub.com/getsentry/sentry-python/issues/3167)) by [@​sentrivana](https://togithub.com/sentrivana) - Profiling: Move thread data to trace context ([#​3157](https://togithub.com/getsentry/sentry-python/issues/3157)) by [@​Zylphrex](https://togithub.com/Zylphrex) - Explicitly export cron symbols for typecheckers ([#​3072](https://togithub.com/getsentry/sentry-python/issues/3072)) by [@​spladug](https://togithub.com/spladug) - Cleaning up ASGI tests for Django ([#​3180](https://togithub.com/getsentry/sentry-python/issues/3180)) by [@​antonpirker](https://togithub.com/antonpirker) - Celery: Add Celery receive latency ([#​3174](https://togithub.com/getsentry/sentry-python/issues/3174)) by [@​antonpirker](https://togithub.com/antonpirker) - Metrics: Update type hints for tag values ([#​3156](https://togithub.com/getsentry/sentry-python/issues/3156)) by [@​elramen](https://togithub.com/elramen) - Django: Fix psycopg3 reconnect error ([#​3111](https://togithub.com/getsentry/sentry-python/issues/3111)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Tracing: Keep original function signature when decorated ([#​3178](https://togithub.com/getsentry/sentry-python/issues/3178)) by [@​sentrivana](https://togithub.com/sentrivana) - Reapply "Refactor the Celery Beat integration ([#​3105](https://togithub.com/getsentry/sentry-python/issues/3105))" ([#​3144](https://togithub.com/getsentry/sentry-python/issues/3144)) ([#​3175](https://togithub.com/getsentry/sentry-python/issues/3175)) by [@​antonpirker](https://togithub.com/antonpirker) - Added contributor image to readme ([#​3183](https://togithub.com/getsentry/sentry-python/issues/3183)) by [@​antonpirker](https://togithub.com/antonpirker) - bump actions/checkout from 4.1.4 to 4.1.6 ([#​3147](https://togithub.com/getsentry/sentry-python/issues/3147)) by [@​dependabot](https://togithub.com/dependabot) - bump checkouts/data-schemas from `59f9683` to `8c13457` ([#​3146](https://togithub.com/getsentry/sentry-python/issues/3146)) by [@​dependabot](https://togithub.com/dependabot) ### [`v2.5.1`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#251) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.5.0...2.5.1) This change fixes a regression in our cron monitoring feature, which caused cron checkins not to be sent. The regression appears to have been introduced in version 2.4.0. **We recommend that all users, who use Cron monitoring and are currently running sentry-python ā‰„2.4.0, upgrade to this release as soon as possible!** ##### Other fixes & improvements - feat(tracing): Warn if not-started transaction entered ([#​3003](https://togithub.com/getsentry/sentry-python/issues/3003)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - test(scope): Ensure `last_event_id` cleared ([#​3124](https://togithub.com/getsentry/sentry-python/issues/3124)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - fix(scope): Clear last_event_id on scope clear ([#​3124](https://togithub.com/getsentry/sentry-python/issues/3124)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) ### [`v2.5.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#250) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.4.0...2.5.0) ##### Various fixes & improvements - Allow to configure status codes to report to Sentry in Starlette and FastAPI ([#​3008](https://togithub.com/getsentry/sentry-python/issues/3008)) by [@​sentrivana](https://togithub.com/sentrivana) By passing a new option to the FastAPI and Starlette integrations, you're now able to configure what status codes should be sent as events to Sentry. Here's how it works: ```python from sentry_sdk.integrations.starlette import StarletteIntegration from sentry_sdk.integrations.fastapi import FastApiIntegration sentry_sdk.init( ``` ### ... integrations=[ StarletteIntegration( failed_request_status_codes=[403, range(500, 599)], ), FastApiIntegration( failed_request_status_codes=[403, range(500, 599)], ), ] ) ``` `failed_request_status_codes` expects a list of integers or containers (objects that allow membership checks via `in`) of integers. Examples of valid `failed_request_status_codes`: - `[500]` will only send events on HTTP 500. - `[400, range(500, 599)]` will send events on HTTP 400 as well as the 500-599 range. - `[500, 503]` will send events on HTTP 500 and 503. The default is `[range(500, 599)]`. See the [FastAPI](https://docs.sentry.io/platforms/python/integrations/fastapi/) and [Starlette](https://docs.sentry.io/platforms/python/integrations/starlette/) integration docs for more details. - Support multiple keys with `cache_prefixes` (#​3136) by @​sentrivana - Support integer Redis keys (#​3132) by @​sentrivana - Update SDK version in CONTRIBUTING.md (#​3129) by @​sentrivana - Bump actions/checkout from 4.1.4 to 4.1.5 (#​3067) by @​dependabot ``` ### [`v2.4.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#240) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.3.1...2.4.0) ##### Various fixes & improvements - Celery: Made `cache.key` span data field a list ([#​3110](https://togithub.com/getsentry/sentry-python/issues/3110)) by [@​antonpirker](https://togithub.com/antonpirker) - Celery Beat: Refactor the Celery Beat integration ([#​3105](https://togithub.com/getsentry/sentry-python/issues/3105)) by [@​antonpirker](https://togithub.com/antonpirker) - GRPC: Add None check for grpc.aio interceptor ([#​3109](https://togithub.com/getsentry/sentry-python/issues/3109)) by [@​ordinary-jamie](https://togithub.com/ordinary-jamie) - Docs: Remove `last_event_id` from migration guide ([#​3126](https://togithub.com/getsentry/sentry-python/issues/3126)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - fix(django): Proper transaction names for i18n routes ([#​3104](https://togithub.com/getsentry/sentry-python/issues/3104)) by [@​sentrivana](https://togithub.com/sentrivana) - fix(scope): Copy `_last_event_id` in `Scope.__copy__` ([#​3123](https://togithub.com/getsentry/sentry-python/issues/3123)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - fix(tests): Adapt to new Anthropic version ([#​3119](https://togithub.com/getsentry/sentry-python/issues/3119)) by [@​sentrivana](https://togithub.com/sentrivana) - build(deps): bump checkouts/data-schemas from `4381a97` to `59f9683` ([#​3066](https://togithub.com/getsentry/sentry-python/issues/3066)) by [@​dependabot](https://togithub.com/dependabot) ### [`v2.3.1`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#231) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.3.0...2.3.1) ##### Various fixes & improvements - Handle also byte arras as strings in Redis caches ([#​3101](https://togithub.com/getsentry/sentry-python/issues/3101)) by [@​antonpirker](https://togithub.com/antonpirker) - Do not crash exceptiongroup (by patching excepthook and keeping the name of the function) ([#​3099](https://togithub.com/getsentry/sentry-python/issues/3099)) by [@​antonpirker](https://togithub.com/antonpirker) ### [`v2.3.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#230) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.2.1...2.3.0) ##### Various fixes & improvements - NEW: Redis integration supports now Sentry Caches module. See https://docs.sentry.io/product/performance/caches/ ([#​3073](https://togithub.com/getsentry/sentry-python/issues/3073)) by [@​antonpirker](https://togithub.com/antonpirker) - NEW: Django integration supports now Sentry Caches module. See https://docs.sentry.io/product/performance/caches/ ([#​3009](https://togithub.com/getsentry/sentry-python/issues/3009)) by [@​antonpirker](https://togithub.com/antonpirker) - Fix `cohere` testsuite for new release of `cohere` ([#​3098](https://togithub.com/getsentry/sentry-python/issues/3098)) by [@​antonpirker](https://togithub.com/antonpirker) - Fix ClickHouse integration where `_sentry_span` might be missing ([#​3096](https://togithub.com/getsentry/sentry-python/issues/3096)) by [@​sentrivana](https://togithub.com/sentrivana) ### [`v2.2.1`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#221) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.2.0...2.2.1) ##### Various fixes & improvements - Add conditional check for delivery_info's existence ([#​3083](https://togithub.com/getsentry/sentry-python/issues/3083)) by [@​cmanallen](https://togithub.com/cmanallen) - Updated deps for latest langchain version ([#​3092](https://togithub.com/getsentry/sentry-python/issues/3092)) by [@​antonpirker](https://togithub.com/antonpirker) - Fixed grpcio extras to work as described in the docs ([#​3081](https://togithub.com/getsentry/sentry-python/issues/3081)) by [@​antonpirker](https://togithub.com/antonpirker) - Use pythons venv instead of virtualenv to create virtual envs ([#​3077](https://togithub.com/getsentry/sentry-python/issues/3077)) by [@​antonpirker](https://togithub.com/antonpirker) - Celery: Add comment about kwargs_headers ([#​3079](https://togithub.com/getsentry/sentry-python/issues/3079)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Celery: Queues module producer implementation ([#​3079](https://togithub.com/getsentry/sentry-python/issues/3079)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Fix N803 flake8 failures ([#​3082](https://togithub.com/getsentry/sentry-python/issues/3082)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) ### [`v2.2.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#220) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.1.1...2.2.0) ##### New features - Celery integration now sends additional data to Sentry to enable new features to guage the health of your queues - Added a new integration for Cohere - Reintroduced the `last_event_id` function, which had been removed in 2.0.0 ##### Other fixes & improvements - Add tags + data passing functionality to @​ai_track ([#​3071](https://togithub.com/getsentry/sentry-python/issues/3071)) by [@​colin-sentry](https://togithub.com/colin-sentry) - Only propagate headers from spans within transactions ([#​3070](https://togithub.com/getsentry/sentry-python/issues/3070)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Improve type hints for set metrics ([#​3048](https://togithub.com/getsentry/sentry-python/issues/3048)) by [@​elramen](https://togithub.com/elramen) - Fix `get_client` typing ([#​3063](https://togithub.com/getsentry/sentry-python/issues/3063)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Auto-enable Anthropic integration + gate imports ([#​3054](https://togithub.com/getsentry/sentry-python/issues/3054)) by [@​colin-sentry](https://togithub.com/colin-sentry) - Made `MeasurementValue.unit` NotRequired ([#​3051](https://togithub.com/getsentry/sentry-python/issues/3051)) by [@​antonpirker](https://togithub.com/antonpirker) ### [`v2.1.1`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#211) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.1.0...2.1.1) - Fix trace propagation in Celery tasks started by Celery Beat. ([#​3047](https://togithub.com/getsentry/sentry-python/issues/3047)) by [@​antonpirker](https://togithub.com/antonpirker) ### [`v2.1.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#210) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.0.1...2.1.0) - fix(quart): Fix Quart integration ([#​3043](https://togithub.com/getsentry/sentry-python/issues/3043)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - **New integration:** [Langchain](https://docs.sentry.io/platforms/python/integrations/langchain/) ([#​2911](https://togithub.com/getsentry/sentry-python/issues/2911)) by [@​colin-sentry](https://togithub.com/colin-sentry) Usage: (Langchain is auto enabling, so you do not need to do anything special) ```python from langchain_openai import ChatOpenAI import sentry_sdk sentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, ) llm = ChatOpenAI(model="gpt-3.5-turbo-0125", temperature=0) ``` Check out [the LangChain docs](https://docs.sentry.io/platforms/python/integrations/langchain/) for details. - **New integration:** [Anthropic](https://docs.sentry.io/platforms/python/integrations/anthropic/) ([#​2831](https://togithub.com/getsentry/sentry-python/issues/2831)) by [@​czyber](https://togithub.com/czyber) Usage: (add the AnthropicIntegration to your `sentry_sdk.init()` call) ```python from anthropic import Anthropic import sentry_sdk sentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, integrations=[AnthropicIntegration()], ) client = Anthropic() ``` Check out [the Anthropic docs](https://docs.sentry.io/platforms/python/integrations/anthropic/) for details. - **New integration:** [Huggingface Hub](https://docs.sentry.io/platforms/python/integrations/huggingface/) ([#​3033](https://togithub.com/getsentry/sentry-python/issues/3033)) by [@​colin-sentry](https://togithub.com/colin-sentry) Usage: (Huggingface Hub is auto enabling, so you do not need to do anything special) ```python import sentry_sdk from huggingface_hub import InferenceClient sentry_sdk.init( dsn="...", enable_tracing=True, traces_sample_rate=1.0, ) client = InferenceClient("some-model") ``` Check out [the Huggingface docs](https://docs.sentry.io/platforms/python/integrations/huggingface/) for details. (comming soon!) - fix(huggingface): Reduce API cross-section for huggingface in test ([#​3042](https://togithub.com/getsentry/sentry-python/issues/3042)) by [@​colin-sentry](https://togithub.com/colin-sentry) - fix(django): Fix Django ASGI integration on Python 3.12 ([#​3027](https://togithub.com/getsentry/sentry-python/issues/3027)) by [@​bellini666](https://togithub.com/bellini666) - feat(perf): Add ability to put measurements directly on spans. ([#​2967](https://togithub.com/getsentry/sentry-python/issues/2967)) by [@​colin-sentry](https://togithub.com/colin-sentry) - fix(tests): Fix trytond tests ([#​3031](https://togithub.com/getsentry/sentry-python/issues/3031)) by [@​sentrivana](https://togithub.com/sentrivana) - fix(tests): Update `pytest-asyncio` to fix CI ([#​3030](https://togithub.com/getsentry/sentry-python/issues/3030)) by [@​sentrivana](https://togithub.com/sentrivana) - fix(docs): Link to respective migration guides directly ([#​3020](https://togithub.com/getsentry/sentry-python/issues/3020)) by [@​sentrivana](https://togithub.com/sentrivana) - docs(scope): Add docstring to `Scope.set_tags` ([#​2978](https://togithub.com/getsentry/sentry-python/issues/2978)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - test(scope): Fix typos in assert error message ([#​2978](https://togithub.com/getsentry/sentry-python/issues/2978)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - feat(scope): New `set_tags` function ([#​2978](https://togithub.com/getsentry/sentry-python/issues/2978)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - test(scope): Add unit test for `Scope.set_tags` ([#​2978](https://togithub.com/getsentry/sentry-python/issues/2978)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - feat(scope): Add `set_tags` to top-level API ([#​2978](https://togithub.com/getsentry/sentry-python/issues/2978)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - test(scope): Add unit test for top-level API `set_tags` ([#​2978](https://togithub.com/getsentry/sentry-python/issues/2978)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - feat(tests): Parallelize tox ([#​3025](https://togithub.com/getsentry/sentry-python/issues/3025)) by [@​sentrivana](https://togithub.com/sentrivana) - build(deps): Bump checkouts/data-schemas from `4aa14a7` to `4381a97` ([#​3028](https://togithub.com/getsentry/sentry-python/issues/3028)) by [@​dependabot](https://togithub.com/dependabot) - meta(license): Bump copyright year ([#​3029](https://togithub.com/getsentry/sentry-python/issues/3029)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) ### [`v2.0.1`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#201) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/2.0.0...2.0.1) ##### Various fixes & improvements - Fix: Do not use convenience decorator ([#​3022](https://togithub.com/getsentry/sentry-python/issues/3022)) by [@​sentrivana](https://togithub.com/sentrivana) - Refactoring propagation context ([#​2970](https://togithub.com/getsentry/sentry-python/issues/2970)) by [@​antonpirker](https://togithub.com/antonpirker) - Use `pid` for test database name in Django tests ([#​2998](https://togithub.com/getsentry/sentry-python/issues/2998)) by [@​antonpirker](https://togithub.com/antonpirker) - Remove outdated RC mention in docs ([#​3018](https://togithub.com/getsentry/sentry-python/issues/3018)) by [@​sentrivana](https://togithub.com/sentrivana) - Delete inaccurate comment from docs ([#​3002](https://togithub.com/getsentry/sentry-python/issues/3002)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Add Lambda function that deletes test Lambda functions ([#​2960](https://togithub.com/getsentry/sentry-python/issues/2960)) by [@​antonpirker](https://togithub.com/antonpirker) - Correct discarded transaction debug message ([#​3002](https://togithub.com/getsentry/sentry-python/issues/3002)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Add tests for discarded transaction debug messages ([#​3002](https://togithub.com/getsentry/sentry-python/issues/3002)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Fix comment typo in metrics ([#​2992](https://togithub.com/getsentry/sentry-python/issues/2992)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - build(deps): bump actions/checkout from 4.1.1 to 4.1.4 ([#​3011](https://togithub.com/getsentry/sentry-python/issues/3011)) by [@​dependabot](https://togithub.com/dependabot) - build(deps): bump checkouts/data-schemas from `1e17eb5` to `4aa14a7` ([#​2997](https://togithub.com/getsentry/sentry-python/issues/2997)) by [@​dependabot](https://togithub.com/dependabot) ### [`v2.0.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#200) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.45.0...2.0.0) This is the first major update in a *long* time! We dropped support for some ancient languages and frameworks (Yes, Python 2.7 is no longer supported). Additionally we refactored a big part of the foundation of the SDK (how data inside the SDK is handled). We hope you like it! For a shorter version of what you need to do, to upgrade to Sentry SDK 2.0 see: https://docs.sentry.io/platforms/python/migration/1.x-to-2.x ##### New Features - Additional integrations will now be activated automatically if the SDK detects the respective package is installed: Ariadne, ARQ, asyncpg, Chalice, clickhouse-driver, GQL, Graphene, huey, Loguru, PyMongo, Quart, Starlite, Strawberry. - Added new API for custom instrumentation: `new_scope`, `isolation_scope`. See the [Deprecated](#deprecated) section to see how they map to the existing APIs. ##### Changed (These changes are all backwards-incompatible. **Breaking Change** (if you are just skimming for that phrase)) - The Pyramid integration will not capture errors that might happen in `authenticated_userid()` in a custom `AuthenticationPolicy` class. - The method `need_code_loation` of the `MetricsAggregator` was renamed to `need_code_location`. - The `BackgroundWorker` thread used to process events was renamed from `raven-sentry.BackgroundWorker` to `sentry-sdk.BackgroundWorker`. - The `reraise` function was moved from `sentry_sdk._compat` to `sentry_sdk.utils`. - The `_ScopeManager` was moved from `sentry_sdk.hub` to `sentry_sdk.scope`. - Moved the contents of `tracing_utils_py3.py` to `tracing_utils.py`. The `start_child_span_decorator` is now in `sentry_sdk.tracing_utils`. - The actual implementation of `get_current_span` was moved to `sentry_sdk.tracing_utils`. `sentry_sdk.get_current_span` is still accessible as part of the top-level API. - `sentry_sdk.tracing_utils.add_query_source()`: Removed the `hub` parameter. It is not necessary anymore. - `sentry_sdk.tracing_utils.record_sql_queries()`: Removed the `hub` parameter. It is not necessary anymore. - `sentry_sdk.tracing_utils.get_current_span()` does now take a `scope` instead of a `hub` as parameter. - `sentry_sdk.tracing_utils.should_propagate_trace()` now takes a `Client` instead of a `Hub` as first parameter. - `sentry_sdk.utils.is_sentry_url()` now takes a `Client` instead of a `Hub` as first parameter. - `sentry_sdk.utils._get_contextvars` does not return a tuple with three values, but a tuple with two values. The `copy_context` was removed. - If you create a transaction manually and later mutate the transaction in a `configure_scope` block this does not work anymore. Here is a recipe on how to change your code to make it work: Your existing implementation: ```python transaction = sentry_sdk.transaction(...) ``` ### later in the code execution: with sentry_sdk.configure_scope() as scope: scope.set_transaction_name("new-transaction-name") ``` needs to be changed to this: ```python transaction = sentry_sdk.transaction(...) ### later in the code execution: scope = sentry_sdk.Scope.get_current_scope() scope.set_transaction_name("new-transaction-name") ``` - The classes listed in the table below are now abstract base classes. Therefore, they can no longer be instantiated. Subclasses can only be instantiated if they implement all of the abstract methods.
Show table | Class | Abstract methods | | ------------------------------------- | -------------------------------------- | | `sentry_sdk.integrations.Integration` | `setup_once` | | `sentry_sdk.metrics.Metric` | `add`, `serialize_value`, and `weight` | | `sentry_sdk.profiler.Scheduler` | `setup` and `teardown` | | `sentry_sdk.transport.Transport` | `capture_envelope` |
##### Removed (These changes are all backwards-incompatible. **Breaking Change** (if you are just skimming for that phrase)) - Removed support for Python 2 and Python 3.5. The SDK now requires at least Python 3.6. - Removed support for Celery 3.\*. - Removed support for Django 1.8, 1.9, 1.10. - Removed support for Flask 0.\*. - Removed support for gRPC < 1.39. - Removed support for Tornado < 6. - Removed `last_event_id()` top level API. The last event ID is still returned by `capture_event()`, `capture_exception()` and `capture_message()` but the top level API `sentry_sdk.last_event_id()` has been removed. - Removed support for sending events to the `/store` endpoint. Everything is now sent to the `/envelope` endpoint. If you're on SaaS you don't have to worry about this, but if you're running Sentry yourself you'll need version `20.6.0` or higher of self-hosted Sentry. - The deprecated `with_locals` configuration option was removed. Use `include_local_variables` instead. See https://docs.sentry.io/platforms/python/configuration/options/#include-local-variables. - The deprecated `request_bodies` configuration option was removed. Use `max_request_body_size`. See https://docs.sentry.io/platforms/python/configuration/options/#max-request-body-size. - Removed support for `user.segment`. It was also removed from the trace header as well as from the dynamic sampling context. - Removed support for the `install` method for custom integrations. Please use `setup_once` instead. - Removed `sentry_sdk.tracing.Span.new_span`. Use `sentry_sdk.tracing.Span.start_child` instead. - Removed `sentry_sdk.tracing.Transaction.new_span`. Use `sentry_sdk.tracing.Transaction.start_child` instead. - Removed support for creating transactions via `sentry_sdk.tracing.Span(transaction=...)`. To create a transaction, please use `sentry_sdk.tracing.Transaction(name=...)`. - Removed `sentry_sdk.utils.Auth.store_api_url`. - `sentry_sdk.utils.Auth.get_api_url`'s now accepts a `sentry_sdk.consts.EndpointType` enum instead of a string as its only parameter. We recommend omitting this argument when calling the function, since the parameter's default value is the only possible `sentry_sdk.consts.EndpointType` value. The parameter exists for future compatibility. - Removed `tracing_utils_py2.py`. The `start_child_span_decorator` is now in `sentry_sdk.tracing_utils`. - Removed the `sentry_sdk.profiler.Scheduler.stop_profiling` method. Any calls to this method can simply be removed, since this was a no-op method. ##### Deprecated - Using the `Hub` directly as well as using hub-based APIs has been deprecated. Where available, use [the top-level API instead](sentry_sdk/api.py); otherwise use the [scope API](sentry_sdk/scope.py) or the [client API](sentry_sdk/client.py). Before: ```python with hub.start_span(...): ``` ### do something ```` After: ```python import sentry_sdk with sentry_sdk.start_span(...): ### do something ```` - Hub cloning is deprecated. Before: ```python with Hub(Hub.current) as hub: ``` ### do something with the cloned hub ```` After: ```python import sentry_sdk with sentry_sdk.isolation_scope() as scope: ### do something with the forked scope ```` - `configure_scope` is deprecated. Use the new isolation scope directly via `Scope.get_isolation_scope()` instead. Before: ```python with configure_scope() as scope: ``` ### do something with `scope` ```` After: ```python from sentry_sdk.scope import Scope scope = Scope.get_isolation_scope() ```` ### [`v1.45.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1450) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.44.1...1.45.0) This is the final 1.x release for the forseeable future. Development will continue on the 2.x release line. The first 2.x version will be available in the next few weeks. ##### Various fixes & improvements - Allow to upsert monitors ([#​2929](https://togithub.com/getsentry/sentry-python/issues/2929)) by [@​sentrivana](https://togithub.com/sentrivana) It's now possible to provide `monitor_config` to the `monitor` decorator/context manager directly: ```python from sentry_sdk.crons import monitor ``` ### [`v1.44.1`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1441) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.44.0...1.44.1) ##### Various fixes & improvements - Make `monitor` async friendly ([#​2912](https://togithub.com/getsentry/sentry-python/issues/2912)) by [@​sentrivana](https://togithub.com/sentrivana) You can now decorate your async functions with the `monitor` decorator and they will correctly report their duration and completion status. - Fixed `Event | None` runtime `TypeError` ([#​2928](https://togithub.com/getsentry/sentry-python/issues/2928)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) ### [`v1.44.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1440) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.43.0...1.44.0) ##### Various fixes & improvements - ref: Define types at runtime ([#​2914](https://togithub.com/getsentry/sentry-python/issues/2914)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Explicit reexport of types ([#​2866](https://togithub.com/getsentry/sentry-python/issues/2866)) ([#​2913](https://togithub.com/getsentry/sentry-python/issues/2913)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - feat(profiling): Add thread data to spans ([#​2843](https://togithub.com/getsentry/sentry-python/issues/2843)) by [@​Zylphrex](https://togithub.com/Zylphrex) ### [`v1.43.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1430) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.42.0...1.43.0) ##### Various fixes & improvements - Add optional `keep_alive` ([#​2842](https://togithub.com/getsentry/sentry-python/issues/2842)) by [@​sentrivana](https://togithub.com/sentrivana) If you're experiencing frequent network issues between the SDK and Sentry, you can try turning on TCP keep-alive: ```python import sentry_sdk sentry_sdk.init( ``` ### ...your usual settings... keep_alive=True, ) ``` - Add support for Celery Redbeat cron tasks (#​2643) by @​kwigley The SDK now supports the Redbeat scheduler in addition to the default Celery Beat scheduler for auto instrumenting crons. See [the docs](https://docs.sentry.io/platforms/python/integrations/celery/crons/) for more information about how to set this up. - `aws_event` can be an empty list (#​2849) by @​sentrivana - Re-export `Event` in `types.py` (#​2829) by @​szokeasaurusrex - Small API docs improvement (#​2828) by @​antonpirker - Fixed OpenAI tests (#​2834) by @​antonpirker - Bump `checkouts/data-schemas` from `ed078ed` to `8232f17` (#​2832) by @​dependabot ``` ### [`v1.42.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1420) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.41.0...1.42.0) ##### Various fixes & improvements - **New integration:** [OpenAI integration](https://docs.sentry.io/platforms/python/integrations/openai/) ([#​2791](https://togithub.com/getsentry/sentry-python/issues/2791)) by [@​colin-sentry](https://togithub.com/colin-sentry) We added an integration for OpenAI to capture errors and also performance data when using the OpenAI Python SDK. Useage: This integrations is auto-enabling, so if you have the `openai` package in your project it will be enabled. Just initialize Sentry before you create your OpenAI client. ```python from openai import OpenAI import sentry_sdk sentry_sdk.init( dsn="___PUBLIC_DSN___", enable_tracing=True, traces_sample_rate=1.0, ) client = OpenAI() ``` For more information, see the documentation for [OpenAI integration](https://docs.sentry.io/platforms/python/integrations/openai/). - Discard open OpenTelemetry spans after 10 minutes ([#​2801](https://togithub.com/getsentry/sentry-python/issues/2801)) by [@​antonpirker](https://togithub.com/antonpirker) - Propagate sentry-trace and baggage headers to Huey tasks ([#​2792](https://togithub.com/getsentry/sentry-python/issues/2792)) by [@​cnschn](https://togithub.com/cnschn) - Added Event type ([#​2753](https://togithub.com/getsentry/sentry-python/issues/2753)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Improve scrub_dict typing ([#​2768](https://togithub.com/getsentry/sentry-python/issues/2768)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Dependencies: bump types-protobuf from 4.24.0.20240302 to 4.24.0.20240311 ([#​2797](https://togithub.com/getsentry/sentry-python/issues/2797)) by [@​dependabot](https://togithub.com/dependabot) ### [`v1.41.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1410) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.6...1.41.0) ##### Various fixes & improvements - Add recursive scrubbing to `EventScrubber` ([#​2755](https://togithub.com/getsentry/sentry-python/issues/2755)) by [@​Cheapshot003](https://togithub.com/Cheapshot003) By default, the `EventScrubber` will not search your events for potential PII recursively. With this release, you can enable this behavior with: ```python import sentry_sdk from sentry_sdk.scrubber import EventScrubber sentry_sdk.init( ``` ### ...your usual settings... event_scrubber=EventScrubber(recursive=True), ) ```` - Expose `socket_options` (#​2786) by @​sentrivana If the SDK is experiencing connection issues (connection resets, server closing connection without response, etc.) while sending events to Sentry, tweaking the default `urllib3` socket options to the following can help: ```python import socket from urllib3.connection import HTTPConnection import sentry_sdk sentry_sdk.init( ### ...your usual settings... socket_options=HTTPConnection.default_socket_options + [ (socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1), ### note: skip the following line if you're on MacOS since TCP_KEEPIDLE doesn't exist there (socket.SOL_TCP, socket.TCP_KEEPIDLE, 45), (socket.SOL_TCP, socket.TCP_KEEPINTVL, 10), (socket.SOL_TCP, socket.TCP_KEEPCNT, 6), ], ) ```` - Allow to configure merge target for releases ([#​2777](https://togithub.com/getsentry/sentry-python/issues/2777)) by [@​sentrivana](https://togithub.com/sentrivana) - Allow empty character in metric tags values ([#​2775](https://togithub.com/getsentry/sentry-python/issues/2775)) by [@​viglia](https://togithub.com/viglia) - Replace invalid tag values with an empty string instead of \_ ([#​2773](https://togithub.com/getsentry/sentry-python/issues/2773)) by [@​markushi](https://togithub.com/markushi) - Add documentation comment to `scrub_list` ([#​2769](https://togithub.com/getsentry/sentry-python/issues/2769)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - Fixed regex to parse version in lambda package file ([#​2767](https://togithub.com/getsentry/sentry-python/issues/2767)) by [@​antonpirker](https://togithub.com/antonpirker) - xfail broken AWS Lambda tests for now ([#​2794](https://togithub.com/getsentry/sentry-python/issues/2794)) by [@​sentrivana](https://togithub.com/sentrivana) - Removed print statements because it messes with the tests ([#​2789](https://togithub.com/getsentry/sentry-python/issues/2789)) by [@​antonpirker](https://togithub.com/antonpirker) - Bump `types-protobuf` from 4.24.0.20240129 to 4.24.0.20240302 ([#​2782](https://togithub.com/getsentry/sentry-python/issues/2782)) by [@​dependabot](https://togithub.com/dependabot) - Bump `checkouts/data-schemas` from `eb941c2` to `ed078ed` ([#​2781](https://togithub.com/getsentry/sentry-python/issues/2781)) by [@​dependabot](https://togithub.com/dependabot) ### [`v1.40.6`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1406) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.5...1.40.6) ##### Various fixes & improvements - Fix compatibility with `greenlet`/`gevent` ([#​2756](https://togithub.com/getsentry/sentry-python/issues/2756)) by [@​sentrivana](https://togithub.com/sentrivana) - Fix query source relative filepath ([#​2717](https://togithub.com/getsentry/sentry-python/issues/2717)) by [@​gggritso](https://togithub.com/gggritso) - Support `clickhouse-driver==0.2.7` ([#​2752](https://togithub.com/getsentry/sentry-python/issues/2752)) by [@​sentrivana](https://togithub.com/sentrivana) - Bump `checkouts/data-schemas` from `6121fd3` to `eb941c2` ([#​2747](https://togithub.com/getsentry/sentry-python/issues/2747)) by [@​dependabot](https://togithub.com/dependabot) ### [`v1.40.5`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1405) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.4...1.40.5) ##### Various fixes & improvements - Deprecate `last_event_id()`. ([#​2749](https://togithub.com/getsentry/sentry-python/issues/2749)) by [@​antonpirker](https://togithub.com/antonpirker) - Warn if uWSGI is set up without proper thread support ([#​2738](https://togithub.com/getsentry/sentry-python/issues/2738)) by [@​sentrivana](https://togithub.com/sentrivana) uWSGI has to be run in threaded mode for the SDK to run properly. If this is not the case, the consequences could range from features not working unexpectedly to uWSGI workers crashing. Please make sure to run uWSGI with both `--enable-threads` and `--py-call-uwsgi-fork-hooks`. - `parsed_url` can be `None` ([#​2734](https://togithub.com/getsentry/sentry-python/issues/2734)) by [@​sentrivana](https://togithub.com/sentrivana) - Python 3.7 is not supported anymore by Lambda, so removed it and added 3.12 ([#​2729](https://togithub.com/getsentry/sentry-python/issues/2729)) by [@​antonpirker](https://togithub.com/antonpirker) ### [`v1.40.4`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1404) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.3...1.40.4) ##### Various fixes & improvements - Only start metrics flusher thread on demand ([#​2727](https://togithub.com/getsentry/sentry-python/issues/2727)) by [@​sentrivana](https://togithub.com/sentrivana) - Bump checkouts/data-schemas from `aa7058c` to `6121fd3` ([#​2724](https://togithub.com/getsentry/sentry-python/issues/2724)) by [@​dependabot](https://togithub.com/dependabot) ### [`v1.40.3`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1403) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.2...1.40.3) ##### Various fixes & improvements - Turn off metrics for uWSGI ([#​2720](https://togithub.com/getsentry/sentry-python/issues/2720)) by [@​sentrivana](https://togithub.com/sentrivana) - Minor improvements ([#​2714](https://togithub.com/getsentry/sentry-python/issues/2714)) by [@​antonpirker](https://togithub.com/antonpirker) ### [`v1.40.2`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1402) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.40.1...1.40.2) ##### Various fixes & improvements - test: Fix `pytest` error ([#​2712](https://togithub.com/getsentry/sentry-python/issues/2712)) by [@​szokeasaurusrex](https://togithub.com/szokeasaurusrex) - build(deps): bump types-protobuf from 4.24.0.4 to 4.24.0.20240129 ([#​2691](https://togithub.com/getsentry/sentry-python/issues/2691)) by [@​dependabot](https://togithub.com/dependabot)

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.

šŸ”• Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.