Skip to content

Commit

Permalink
release: 2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Sep 9, 2024
1 parent 6814df9 commit 3d0edfd
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## 2.14.0

### Various fixes & improvements

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

## 2.13.0

### Various fixes & improvements
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
author = "Sentry Team and Contributors"

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


Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,4 +567,4 @@ def _get_default_options():
del _get_default_options


VERSION = "2.13.0"
VERSION = "2.14.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def get_file_text(file_name):

setup(
name="sentry-sdk",
version="2.13.0",
version="2.14.0",
author="Sentry Team and Contributors",
author_email="[email protected]",
url="https://github.com/getsentry/sentry-python",
Expand Down

0 comments on commit 3d0edfd

Please sign in to comment.