From c83e7428f44263e6d62ab88cb61034e7f438b2b4 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Thu, 21 Nov 2024 15:22:15 +0000 Subject: [PATCH] release: 2.19.0 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 29 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c47d0e0458..dab245e15a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## 2.19.0 + +### Various fixes & improvements + +- feat: Send PII to Spotlight when no DSN is set (#3804) by @BYK +- Auto enable Litestar integration (#3540) by @provinzkraut +- fix(httpx): Prevent Sentry baggage duplication (#3728) by @szokeasaurusrex +- test(gcp): Only run GCP tests when they should (#3721) by @szokeasaurusrex +- fix(falcon): Don't exhaust request body stream (#3768) by @szokeasaurusrex +- fix(integrations): Check retries_left before capturing exception (#3803) by @malkovro +- fix(openai): Use name instead of description (#3807) by @sourceful-rob +- Shorten CI workflow names (#3805) by @sentrivana +- build(deps): bump codecov/codecov-action from 4.6.0 to 5.0.2 (#3792) by @dependabot +- feat(spotlight): Auto enable cache_spans for Spotlight on DEBUG (#3791) by @BYK +- Make sentry-sdk[pure-eval] installable with pip==24.0 (#3757) by @sentrivana +- tests: Test with pyspark prerelease (#3760) by @sentrivana +- fix: include_tracing_fields arg to control unvetted data in rust_tracing integration (#3780) by @matt-codecov +- feat: introduce rust_tracing integration (#3717) by @matt-codecov +- Fix aws lambda tests (by reducing event size) (#3770) by @antonpirker +- feat(spotlight): Inject Spotlight button on Django (#3751) by @BYK +- ref(init): Deprecate `sentry_sdk.init` context manager (#3729) by @szokeasaurusrex +- Handle parameter `stack_info` for the `LoggingIntegration` (#3745) by @gmcrocetti +- Fix(Arq): fix integration with Worker settings as a dict (#3742) by @saber-solooki +- feat(spotlight): Add info logs when Sentry is enabled (#3735) by @BYK +- build(deps): bump actions/checkout from 4.2.1 to 4.2.2 (#3691) by @dependabot + ## 2.18.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 6d33e5809a..55d5295381 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -31,7 +31,7 @@ copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year) author = "Sentry Team and Contributors" -release = "2.18.0" +release = "2.19.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index bb2a73337e..488743b579 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -576,4 +576,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.18.0" +VERSION = "2.19.0" diff --git a/setup.py b/setup.py index 29a40c6663..fda3daa229 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.18.0", + version="2.19.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",