Skip to content

Commit 64adaf8

Browse files
committed
release: 1.9.10
1 parent e5b80d6 commit 64adaf8

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

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

3+
## 1.9.10
4+
5+
### Various fixes & improvements
6+
7+
- Use content-length header in ASGI instead of reading request body (#1646, #1631, #1595, #1573) (#1649) by @antonpirker
8+
- Added newer Celery versions to test suite (#1655) by @antonpirker
9+
- feat(django): Django4 support (#1632) by @antonpirker
10+
- Cancel old CI runs when new one is started. (#1651) by @antonpirker
11+
- ref(perf-issues): Increase max string size for desc (#1647) by @k-fish
12+
- Pin Sanic version for CI (#1650) by @antonpirker
13+
- Fix for partial signals in old Django and old Python versions. (#1641) by @antonpirker
14+
- feat(profiling): Convert profile output to the sample format (#1611) by @phacops
15+
- fix(profiling): Dynamically adjust profiler sleep time (#1634) by @Zylphrex
16+
317
## 1.9.9
418

519
### Django update (ongoing)

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.9"
32+
release = "1.9.10"
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.9"
107+
VERSION = "1.9.10"
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.9",
24+
version="1.9.10",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)