Skip to content

Commit 79e3316

Browse files
committed
release: 1.17.0
1 parent f7b0684 commit 79e3316

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

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

3+
## 1.17.0
4+
5+
### Various fixes & improvements
6+
7+
- Add support for Sentry Crons to Celery Beat (#1935) by @antonpirker
8+
- Add decorator for Sentry tracing (#1089) by @ynouri
9+
- Added top level API to get current span (#1954) by @antonpirker
10+
- feat(profiling): Add profiler options to init (#1947) by @Zylphrex
11+
- Start a real http server instead of mocking libs (#1938) by @antonpirker
12+
- feat(profiling): Set active thread id for quart (#1830) by @Zylphrex
13+
- 🎨 Fix type annotation for ignore_errors in sentry_sdk.init() (#1928) by @tiangolo
14+
- Update get_json function call for werkzeug 2.1.0+ (#1939) by @michielderoos
15+
- fix: Rename MYPY to TYPE_CHECKING (#1934) by @untitaker
16+
- Rename 'with_locals' to 'include_local_variables' (#1924) by @antonpirker
17+
- Returning the tasks result. (#1931) by @antonpirker
18+
- Make Django signals tracing optional (#1929) by @antonpirker
19+
320
## 1.16.0
421

522
### Various fixes & improvements

docs/conf.py

+1-1
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.16.0"
32+
release = "1.17.0"
3333
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3434

3535

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,4 +156,4 @@ def _get_default_options():
156156
del _get_default_options
157157

158158

159-
VERSION = "1.16.0"
159+
VERSION = "1.17.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="1.16.0",
24+
version="1.17.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)