Skip to content

Commit 88a048f

Browse files
committed
release: 2.23.0
1 parent e06ea8d commit 88a048f

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

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

3+
## 2.23.0
4+
5+
### Various fixes & improvements
6+
7+
- build(deps): bump actions/create-github-app-token from 1.11.5 to 1.11.6 (#4113) by @dependabot
8+
- build(deps): bump codecov/codecov-action from 5.3.1 to 5.4.0 (#4112) by @dependabot
9+
- docs(baggage): Document that caller must check `mutable` (#4010) by @szokeasaurusrex
10+
- Add `init()` parameters to ApiDocs. (#4100) by @antonpirker
11+
- feat(logs): Add alpha version of Sentry logs (#4126) by @colin-sentry
12+
- Updating Readme (#4134) by @antonpirker
13+
- fix(debug): Take into account parent handlers for debug logger (#4133) by @sentrivana
14+
- fix(quart): Support `quart_flask_patch` (#4132) by @sentrivana
15+
- tests: Add concurrency testcase for arq (#4125) by @sentrivana
16+
- fix(bottle): Prevent internal error on 404 (#4131) by @sentrivana
17+
- Coerce None values into strings in logentry params. (#4121) by @antonpirker
18+
- A way to locally run AWS Lambda functions (#4128) by @antonpirker
19+
- fix(pyspark): Grab `attemptId` more defensively (#4130) by @sentrivana
20+
- Improve asyncio integration error handling. (#4129) by @antonpirker
21+
- Run AWS Lambda tests locally (#3988) by @antonpirker
22+
- Added timeout to HTTP requests in CloudResourceContextIntegration (#4120) by @antonpirker
23+
- Fix FastAPI/Starlette middleware with positional arguments. (#4118) by @antonpirker
24+
- fix(typing): Set correct type for set_context everywhere (#4123) by @sentrivana
25+
- chore(tests): Regenerate tox.ini (#4108) by @sentrivana
26+
- Fixed bug when `cron_jobs` is set to `None` in arq integration (#4115) by @antonpirker
27+
- feat(tracing): Backfill missing `sample_rand` on `PropagationContext` (#4038) by @szokeasaurusrex
28+
- fix(asgi): Fix KeyError if transaction does not exist (#4095) by @kevinji
29+
- security(gha): fix potential for shell injection (#4099) by @mdtro
30+
- ref(tracing): Move `TRANSACTION_SOURCE_*` constants to `Enum` (#3889) by @mgaligniana
31+
32+
_Plus 12 more_
33+
334
## 2.22.0
435

536
### Various fixes & improvements

docs/conf.py

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

34-
release = "2.22.0"
34+
release = "2.23.0"
3535
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3636

3737

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -965,4 +965,4 @@ def _get_default_options():
965965
del _get_default_options
966966

967967

968-
VERSION = "2.22.0"
968+
VERSION = "2.23.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="2.22.0",
24+
version="2.23.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)