Skip to content

Commit 3d0edfd

Browse files
committed
release: 2.14.0
1 parent 6814df9 commit 3d0edfd

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

Diff for: CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## 2.14.0
4+
5+
### Various fixes & improvements
6+
7+
- tests: Remove broken bottle tests (#3505) by @sentrivana
8+
- Fixed config for old coverage versions (#3504) by @antonpirker
9+
- Fix AWS Lambda tests (#3495) by @antonpirker
10+
- Better test coverage reports (#3498) by @antonpirker
11+
- feat(celery): Add wrapper for `Celery().send_task` to support behavior as `Task.apply_async` (#2377) by @divaltor
12+
- fix(django): SentryWrappingMiddleware.__init__ fails if super() is object (#2466) by @cameron-simpson
13+
- feat(strawberry): Support Strawberry 0.239.2 (#3491) by @szokeasaurusrex
14+
- ref: Remove obsolete object as superclass (#3480) by @sentrivana
15+
- Fix data_category for sessions envelope items (#3473) by @sl0thentr0py
16+
- fix: Fix non-UTC timestamps (#3461) by @szokeasaurusrex
17+
- Add separate pii_denylist to EventScrubber and run it always (#3463) by @sl0thentr0py
18+
- Revert "Pin httpx till upstream gets resolved (#3465)" (#3466) by @sl0thentr0py
19+
- feat(integrations): New `SysExitIntegration` (#3401) by @szokeasaurusrex
20+
- ref(types): Replace custom TYPE_CHECKING with stdlib typing.TYPE_CHECKING (#3447) by @dev-satoshi
21+
- Pin httpx till upstream gets resolved (#3465) by @sl0thentr0py
22+
- chore(tracing): Refactor `tracing_utils.py` (#3452) by @rominf
23+
- feat: Add SENTRY_SPOTLIGHT env variable support (#3443) by @BYK
24+
- style: explicitly export symbols instead of ignoring (#3400) by @hartungstenio
25+
326
## 2.13.0
427

528
### Various fixes & improvements

Diff for: 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

Diff for: 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"

Diff for: 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="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)