diff --git a/CHANGELOG.md b/CHANGELOG.md index dbb35eb1eb..d1d0a78ce8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 2.19.1 + +### Various fixes & improvements + +- Copy scope.client reference as well (#3857) by @sl0thentr0py +- fix(spotlight): Don't give up on Spotlight on 3 errors (#3856) by @BYK +- fix(django): Fix errors when instrumenting Django cache (#3855) by @BYK +- Script for checking if our instrumented libs are python 3.13 compatible (#3425) by @antonpirker +- Add missing stack frames (#3673) by @antonpirker +- fix(grpc): Return proper metadata object instead of list in… (#3205) by @fdellekart +- Improve ray tests (#3846) by @antonpirker +- Test with celery 5.5.0rc3 (#3842) by @sentrivana +- Revert "Fix spans for streaming responses in WSGI based frameworks (#3798)" (#3836) by @antonpirker +- Fix asyncio testing setup (#3832) by @sl0thentr0py +- build(deps): bump codecov/codecov-action from 5.0.2 to 5.0.7 (#3821) by @dependabot +- Fix CI (#3834) by @sentrivana +- ref(flags): rename launch darkly hook to match JS SDK (#3743) by @aliu39 +- Use new clickhouse gh action (#3826) by @antonpirker +- Fix spans for streaming responses in WSGI based frameworks (#3798) by @antonpirker + ## 2.19.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 55d5295381..4f5c210322 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.19.0" +release = "2.19.1" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 6750e85f99..f338543dee 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -581,4 +581,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.19.0" +VERSION = "2.19.1" diff --git a/setup.py b/setup.py index fda3daa229..7782d57a36 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.19.0", + version="2.19.1", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",