From 0df20a76a4c8f2ac4deea461038ebc479394c14d Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Tue, 8 Oct 2024 11:54:51 +0000 Subject: [PATCH] release: 2.16.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7db062694d..b62d184ad4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 2.16.0 + +### Various fixes & improvements + +- Remove flaky test (#3626) by @sentrivana +- Add 3.13 to setup.py (#3574) by @sentrivana +- Add 3.13 to basepython (#3589) by @sentrivana +- feat(bottle): Add `failed_request_status_codes` (#3618) by @szokeasaurusrex +- feat: Add opportunistic Brotli compression (#3612) by @BYK +- fix(django): improve getting psycopg3 connection info (#3580) by @nijel +- feat: Add `__notes__` support (#3620) by @szokeasaurusrex +- fix: Open relevant error when SpotlightMiddleware is on (#3614) by @BYK +- build(deps): bump codecov/codecov-action from 4.5.0 to 4.6.0 (#3617) by @dependabot +- feat(django): Add SpotlightMiddleware when Spotlight is enabled (#3600) by @BYK +- feat: Add httpcore based HTTP2Transport (#3588) by @BYK +- Add http_methods_to_capture to ASGI Django (#3607) by @sentrivana +- ref(bottle): Delete never-reached code (#3605) by @szokeasaurusrex +- Remove useless makefile targets (#3604) by @antonpirker +- Simplify tox version spec (#3609) by @sentrivana +- Consolidate contributing docs (#3606) by @antonpirker +- Fix type of sample_rate in DSC (and add explanatory tests) (#3603) by @antonpirker + ## 2.15.0 ### Integrations diff --git a/docs/conf.py b/docs/conf.py index c1a219e278..390f576219 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year) author = "Sentry Team and Contributors" -release = "2.15.0" +release = "2.16.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 631edd8a83..5c79615da3 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -574,4 +574,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.15.0" +VERSION = "2.16.0" diff --git a/setup.py b/setup.py index 57e61b2969..2bf78cbf69 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.15.0", + version="2.16.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",