Skip to content

Commit 40cc851

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.23.0'
2 parents e06ea8d + c5352c7 commit 40cc851

File tree

4 files changed

+41
-3
lines changed

4 files changed

+41
-3
lines changed

CHANGELOG.md

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

3+
## 2.23.0
4+
5+
### Various fixes & improvements
6+
7+
- Feat(profiling): Add new functions to start/stop continuous profiler (#4056) by @Zylphrex
8+
- Feat(profiling): Export start/stop profile session (#4079) by @Zylphrex
9+
- Feat(tracing): Backfill missing `sample_rand` on `PropagationContext` (#4038) by @szokeasaurusrex
10+
- Feat(logs): Add alpha version of Sentry logs (#4126) by @colin-sentry
11+
- Security(gha): fix potential for shell injection (#4099) by @mdtro
12+
- Docs: Add `init()` parameters to ApiDocs. (#4100) by @antonpirker
13+
- Docs: Document that caller must check `mutable` (#4010) by @szokeasaurusrex
14+
- Fix(Anthropic): Add partial json support to streams (#3674)
15+
- Fix(ASGI): Fix KeyError if transaction does not exist (#4095) by @kevinji
16+
- Fix(asyncio): Improve asyncio integration error handling. (#4129) by @antonpirker
17+
- Fix(AWS Lambda): Fix capturing errors during AWS Lambda INIT phase (#3943)
18+
- Fix(Bottle): Prevent internal error on 404 (#4131) by @sentrivana
19+
- Fix(CI): Fix API doc failure in CI (#4075) by @sentrivana
20+
- Fix(ClickHouse) ClickHouse in test suite (#4087) by @antonpirker
21+
- Fix(cloudresourcecontext): Added timeout to HTTP requests in CloudResourceContextIntegration (#4120) by @antonpirker
22+
- Fix(crons): Fixed bug when `cron_jobs` is set to `None` in arq integration (#4115) by @antonpirker
23+
- Fix(debug): Take into account parent handlers for debug logger (#4133) by @sentrivana
24+
- Fix(FastAPI/Starlette): Fix middleware with positional arguments. (#4118) by @antonpirker
25+
- Fix(featureflags): add LRU update/dedupe test coverage (#4082)
26+
- Fix(logging): Coerce None values into strings in logentry params. (#4121) by @antonpirker
27+
- Fix(pyspark): Grab `attemptId` more defensively (#4130) by @sentrivana
28+
- Fix(Quart): Support `quart_flask_patch` (#4132) by @sentrivana
29+
- Fix(tests): A way to locally run AWS Lambda functions (#4128) by @antonpirker
30+
- Fix(tests): Add concurrency testcase for arq (#4125) by @sentrivana
31+
- Fix(tests): Add fail_on_changes to toxgen by @sentrivana
32+
- Fix(tests): Run AWS Lambda tests locally (#3988) by @antonpirker
33+
- Fix(tests): Test relevant prereleases and allow to ignore releases
34+
- Fix(tracing): Move `TRANSACTION_SOURCE_*` constants to `Enum` (#3889) by @mgaligniana
35+
- Fix(typing): Add more typing info to Scope.update_from_kwargs's "contexts" (#4080)
36+
- Fix(typing): Set correct type for `set_context` everywhere (#4123) by @sentrivana
37+
- Chore(tests): Regenerate tox.ini (#4108) by @sentrivana
38+
- Build(deps): bump actions/create-github-app-token from 1.11.5 to 1.11.6 (#4113) by @dependabot
39+
- Build(deps): bump codecov/codecov-action from 5.3.1 to 5.4.0 (#4112) by @dependabot
40+
341
## 2.22.0
442

543
### Various fixes & improvements

docs/conf.py

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

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="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)