Skip to content

Commit 0fb04be

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.14.0'
2 parents 6814df9 + 1e73ce9 commit 0fb04be

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

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

3+
## 2.14.0
4+
5+
### Various fixes & improvements
6+
7+
- New `SysExitIntegration` (#3401) by @szokeasaurusrex
8+
9+
For more information, see the documentation for the [SysExitIntegration](https://docs.sentry.io/platforms/python/integrations/sys_exit).
10+
11+
- Add `SENTRY_SPOTLIGHT` env variable support (#3443) by @BYK
12+
- Support Strawberry `0.239.2` (#3491) by @szokeasaurusrex
13+
- Add separate `pii_denylist` to `EventScrubber` and run it always (#3463) by @sl0thentr0py
14+
- Celery: Add wrapper for `Celery().send_task` to support behavior as `Task.apply_async` (#2377) by @divaltor
15+
- Django: SentryWrappingMiddleware.__init__ fails if super() is object (#2466) by @cameron-simpson
16+
- Fix data_category for sessions envelope items (#3473) by @sl0thentr0py
17+
- Fix non-UTC timestamps (#3461) by @szokeasaurusrex
18+
- Remove obsolete object as superclass (#3480) by @sentrivana
19+
- Replace custom `TYPE_CHECKING` with stdlib `typing.TYPE_CHECKING` (#3447) by @dev-satoshi
20+
- Refactor `tracing_utils.py` (#3452) by @rominf
21+
- Explicitly export symbol in subpackages instead of ignoring (#3400) by @hartungstenio
22+
- Better test coverage reports (#3498) by @antonpirker
23+
- Fixed config for old coverage versions (#3504) by @antonpirker
24+
- Fix AWS Lambda tests (#3495) by @antonpirker
25+
- Remove broken Bottle tests (#3505) by @sentrivana
26+
327
## 2.13.0
428

529
### Various fixes & improvements

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
2929
author = "Sentry Team and Contributors"
3030

31-
release = "2.13.0"
31+
release = "2.14.0"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -567,4 +567,4 @@ def _get_default_options():
567567
del _get_default_options
568568

569569

570-
VERSION = "2.13.0"
570+
VERSION = "2.14.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.13.0",
24+
version="2.14.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)