Skip to content

Commit 0df20a7

Browse files
committed
release: 2.16.0
1 parent 01b4687 commit 0df20a7

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## 2.16.0
4+
5+
### Various fixes & improvements
6+
7+
- Remove flaky test (#3626) by @sentrivana
8+
- Add 3.13 to setup.py (#3574) by @sentrivana
9+
- Add 3.13 to basepython (#3589) by @sentrivana
10+
- feat(bottle): Add `failed_request_status_codes` (#3618) by @szokeasaurusrex
11+
- feat: Add opportunistic Brotli compression (#3612) by @BYK
12+
- fix(django): improve getting psycopg3 connection info (#3580) by @nijel
13+
- feat: Add `__notes__` support (#3620) by @szokeasaurusrex
14+
- fix: Open relevant error when SpotlightMiddleware is on (#3614) by @BYK
15+
- build(deps): bump codecov/codecov-action from 4.5.0 to 4.6.0 (#3617) by @dependabot
16+
- feat(django): Add SpotlightMiddleware when Spotlight is enabled (#3600) by @BYK
17+
- feat: Add httpcore based HTTP2Transport (#3588) by @BYK
18+
- Add http_methods_to_capture to ASGI Django (#3607) by @sentrivana
19+
- ref(bottle): Delete never-reached code (#3605) by @szokeasaurusrex
20+
- Remove useless makefile targets (#3604) by @antonpirker
21+
- Simplify tox version spec (#3609) by @sentrivana
22+
- Consolidate contributing docs (#3606) by @antonpirker
23+
- Fix type of sample_rate in DSC (and add explanatory tests) (#3603) by @antonpirker
24+
325
## 2.15.0
426

527
### Integrations

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
2929
author = "Sentry Team and Contributors"
3030

31-
release = "2.15.0"
31+
release = "2.16.0"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -574,4 +574,4 @@ def _get_default_options():
574574
del _get_default_options
575575

576576

577-
VERSION = "2.15.0"
577+
VERSION = "2.16.0"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_file_text(file_name):
2121

2222
setup(
2323
name="sentry-sdk",
24-
version="2.15.0",
24+
version="2.16.0",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)