Skip to content

Commit 380f514

Browse files
committed
release: 1.9.9
1 parent 9fd938e commit 380f514

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## 1.9.9
4+
5+
### Django update (ongoing)
6+
7+
* Support Django 4.0
8+
* include other Django enhancements brought up by the community
9+
10+
By: @BeryJu (#1526)
11+
12+
### Various fixes & improvements
13+
14+
- fix(profiling): Profiler mode type hints (#1633) by @Zylphrex
15+
- New ASGIMiddleware tests (#1600) by @antonpirker
16+
- build(deps): bump mypy from 0.961 to 0.971 (#1517) by @dependabot
17+
- build(deps): bump black from 22.3.0 to 22.8.0 (#1596) by @dependabot
18+
- build(deps): bump sphinx from 5.0.2 to 5.1.1 (#1524) by @dependabot
19+
- ref: upgrade linters to flake8 5.x (#1610) by @asottile-sentry
20+
- feat(profiling): Introduce different profiler schedulers (#1616) by @Zylphrex
21+
- fix(profiling): Check transaction sampled status before profiling (#1624) by @Zylphrex
22+
- Wrap Baggage ser/deser in capture_internal_exceptions (#1630) by @sl0thentr0py
23+
- Faster Tests (DjangoCon) (#1602) by @antonpirker
24+
- feat(profiling): Add support for profiles_sample_rate (#1613) by @Zylphrex
25+
- feat(profiling): Support for multithreaded profiles (#1570) by @Zylphrex
26+
327
## 1.9.8
428

529
### Various fixes & improvements

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
copyright = "2019, Sentry Team and Contributors"
3030
author = "Sentry Team and Contributors"
3131

32-
release = "1.9.8"
32+
release = "1.9.9"
3333
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3434

3535

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def _get_default_options():
104104
del _get_default_options
105105

106106

107-
VERSION = "1.9.8"
107+
VERSION = "1.9.9"
108108
SDK_INFO = {
109109
"name": "sentry.python",
110110
"version": VERSION,

setup.py

Lines changed: 1 addition & 1 deletion
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="1.9.8",
24+
version="1.9.9",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)