Skip to content

Commit 0271219

Browse files
author
getsentry-bot
committed
Merge branch 'release/1.27.1'
2 parents f07a08c + 40906dc commit 0271219

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

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

3+
## 1.27.1
4+
5+
### Various fixes & improvements
6+
7+
- Add Starlette/FastAPI template tag for adding Sentry tracing information (#2225) by @antonpirker
8+
- By adding `{{ sentry_trace_meta }}` to your Starlette/FastAPI Jinja2 templates we will include Sentry trace information as a meta tag in the rendered HTML to allow your frontend to pick up and continue the trace started in the backend.
9+
- Fixed generation of baggage when a DSC is already in propagation context (#2232) by @antonpirker
10+
- Handle explicitly passing `None` for `trace_configs` in `aiohttp` (#2230) by @Harmon758
11+
- Support newest Starlette versions (#2227) by @antonpirker
12+
313
## 1.27.0
414

515
### Various fixes & improvements

docs/conf.py

Lines changed: 1 addition & 1 deletion
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.27.0"
33+
release = "1.27.1"
3434
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3535

3636

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,4 +228,4 @@ def _get_default_options():
228228
del _get_default_options
229229

230230

231-
VERSION = "1.27.0"
231+
VERSION = "1.27.1"

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="1.27.0",
24+
version="1.27.1",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)