Skip to content

Commit 0d450c2

Browse files
committed
release: 1.30.0
1 parent 46c24ea commit 0d450c2

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+
## 1.30.0
4+
5+
### Various fixes & improvements
6+
7+
- Set response status code in transaction "response" context. (#2312) by @antonpirker
8+
- Add missing context kwarg to _sentry_task_factory (#2267) by @JohnnyDeuss
9+
- build(deps): bump sphinx from 7.1.2 to 7.2.4 (#2322) by @dependabot
10+
- Allow to use OTel for performance instrumentation (experimental) (#2272) by @sentrivana
11+
- build(deps): bump mypy from 1.4.1 to 1.5.1 (#2319) by @dependabot
12+
- Add docstrings for Scope.update_from_* (#2311) by @sentrivana
13+
- In Postgres take the connection params from the connection (#2308) by @antonpirker
14+
- build(deps): bump sphinx from 7.0.1 to 7.1.2 (#2296) by @dependabot
15+
- build(deps): bump checkouts/data-schemas from `1b85152` to `ebc77d3` (#2254) by @dependabot
16+
- Fix arq attribute error on settings, support worker args (#2260) by @rossmacarthur
17+
- test(threading): Add test for `ThreadPoolExecutor` (#2259) by @gggritso
18+
- Moved is_sentry_url to utils (#2304) by @szokeasaurusrex
19+
- fix: Exceptions include detail property for their value (#2193) by @nicolassanmar
20+
- Officially support Python 3.11 (#2300) by @sentrivana
21+
- Enable backpressure handling by default (#2298) by @sl0thentr0py
22+
- Stop recording spans for internal web requests to Sentry (#2297) by @szokeasaurusrex
23+
- Context manager monitor (#2290) by @szokeasaurusrex
24+
325
## 1.29.2
426

527
### Various fixes & improvements

docs/conf.py

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

33-
release = "1.29.2"
33+
release = "1.30.0"
3434
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3535

3636

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,4 +264,4 @@ def _get_default_options():
264264
del _get_default_options
265265

266266

267-
VERSION = "1.29.2"
267+
VERSION = "1.30.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.29.2",
24+
version="1.30.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)