Skip to content

Commit 049f2a0

Browse files
committed
release: 2.27.0
1 parent bbb41a3 commit 049f2a0

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

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

3+
## 2.27.0
4+
5+
### Various fixes & improvements
6+
7+
- Make sure to use the default decimal context in our code (#4231) by @antonpirker
8+
- tests: Move aiohttp under toxgen (#4319) by @sentrivana
9+
- tests: Fix version picking in toxgen (#4323) by @sentrivana
10+
- fix(integrations): ASGI integration not capture transactions in Websocket (#4293) by @guodong000
11+
- Make all relevant types public (#4315) by @antonpirker
12+
- build(deps): bump codecov/codecov-action from 5.4.0 to 5.4.2 (#4318) by @dependabot
13+
- test(logs): Avoid failure when running with integrations enabled (#4316) by @rominf
14+
- feat(spans): Record flag evaluations as span attributes (#4280) by @cmanallen
15+
- toxgen: Remove unused code and rerun (#4313) by @sentrivana
16+
- toxgen: Add cohere (#4304) by @sentrivana
17+
- toxgen: Migrate fastapi (#4302) by @sentrivana
18+
- toxgen: Add huggingface_hub (#4299) by @sentrivana
19+
- toxgen: Add huey (#4298) by @sentrivana
20+
- tests: Update tox.ini (#4297) by @sentrivana
21+
322
## 2.26.1
423

524
### 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.26.1"
34+
release = "2.27.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
@@ -966,4 +966,4 @@ def _get_default_options():
966966
del _get_default_options
967967

968968

969-
VERSION = "2.26.1"
969+
VERSION = "2.27.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.26.1",
24+
version="2.27.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)