Skip to content

Commit 8d2f854

Browse files
author
getsentry-bot
committed
Merge branch 'release/1.27.0'
2 parents d8a81a9 + 7ba4fd9 commit 8d2f854

4 files changed

Lines changed: 29 additions & 3 deletions

File tree

CHANGELOG.md

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

3+
## 1.27.0
4+
5+
### Various fixes & improvements
6+
7+
- Support for SQLAlchemy 2.0 (#2200) by @antonpirker
8+
- Add instrumentation of `aiohttp` client requests (#1761) by @md384
9+
- Add Django template tag for adding Sentry tracing information (#2222) by @antonpirker
10+
- By adding `{{ sentry_trace_meta }}` to your Django 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.
11+
12+
- Update Flask HTML meta helper (#2203) by @antonpirker
13+
- Take trace ID always from propagation context (#2209) by @antonpirker
14+
- Fix trace context in event payload (#2205) by @antonpirker
15+
- Use new top level API in `trace_propagation_meta` (#2202) by @antonpirker
16+
- Do not overwrite existing baggage on outgoing requests (#2191, #2214) by @sentrivana
17+
- Set the transaction/span status from an OTel span (#2115) by @daniil-konovalenko
18+
- Fix propagation of OTel `NonRecordingSpan` (#2187) by @hartungstenio
19+
- Fix `TaskLockedException` handling in Huey integration (#2206) by @Zhenay
20+
- Add message format configuration arguments to Loguru integration (#2208) by @Gwill
21+
- Profiling: Add client reports for profiles (#2207) by @Zylphrex
22+
- CI: Fix CI (#2220) by @antonpirker
23+
- Dependencies: Bump `checkouts/data-schemas` from `7fdde87` to `1b85152` (#2218) by @dependabot
24+
- Dependencies: Bump `mypy` from 1.3.0 to 1.4.1 (#2194) by @dependabot
25+
- Docs: Change API doc theme (#2210) by @sentrivana
26+
- Docs: Allow (some) autocompletion for top-level API (#2213) by @sentrivana
27+
- Docs: Revert autocomplete hack (#2224) by @sentrivana
28+
329
## 1.26.0
430

531
### 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.26.0"
33+
release = "1.27.0"
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.26.0"
231+
VERSION = "1.27.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="1.26.0",
24+
version="1.27.0",
2525
author="Sentry Team and Contributors",
2626
author_email="hello@sentry.io",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)