Skip to content

Commit

Permalink
release: 1.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Aug 29, 2023
1 parent 46c24ea commit 0d450c2
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 1.30.0

### Various fixes & improvements

- Set response status code in transaction "response" context. (#2312) by @antonpirker
- Add missing context kwarg to _sentry_task_factory (#2267) by @JohnnyDeuss
- build(deps): bump sphinx from 7.1.2 to 7.2.4 (#2322) by @dependabot
- Allow to use OTel for performance instrumentation (experimental) (#2272) by @sentrivana
- build(deps): bump mypy from 1.4.1 to 1.5.1 (#2319) by @dependabot
- Add docstrings for Scope.update_from_* (#2311) by @sentrivana
- In Postgres take the connection params from the connection (#2308) by @antonpirker
- build(deps): bump sphinx from 7.0.1 to 7.1.2 (#2296) by @dependabot
- build(deps): bump checkouts/data-schemas from `1b85152` to `ebc77d3` (#2254) by @dependabot
- Fix arq attribute error on settings, support worker args (#2260) by @rossmacarthur
- test(threading): Add test for `ThreadPoolExecutor` (#2259) by @gggritso
- Moved is_sentry_url to utils (#2304) by @szokeasaurusrex
- fix: Exceptions include detail property for their value (#2193) by @nicolassanmar
- Officially support Python 3.11 (#2300) by @sentrivana
- Enable backpressure handling by default (#2298) by @sl0thentr0py
- Stop recording spans for internal web requests to Sentry (#2297) by @szokeasaurusrex
- Context manager monitor (#2290) by @szokeasaurusrex

## 1.29.2

### Various fixes & improvements
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
author = "Sentry Team and Contributors"

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


Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,4 +264,4 @@ def _get_default_options():
del _get_default_options


VERSION = "1.29.2"
VERSION = "1.30.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def get_file_text(file_name):

setup(
name="sentry-sdk",
version="1.29.2",
version="1.30.0",
author="Sentry Team and Contributors",
author_email="hello@sentry.io",
url="https://github.com/getsentry/sentry-python",
Expand Down

0 comments on commit 0d450c2

Please sign in to comment.