Skip to content

Commit 491aa8c

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.11.0'
2 parents 0812858 + 065b23e commit 491aa8c

File tree

4 files changed

+49
-3
lines changed

4 files changed

+49
-3
lines changed

CHANGELOG.md

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

3+
## 2.11.0
4+
5+
### Various fixes & improvements
6+
7+
- Add `disabled_integrations` (#3328) by @sentrivana
8+
9+
Disabling individual integrations is now much easier.
10+
Instead of disabling all automatically enabled integrations and specifying the ones
11+
you want to keep, you can now use the new
12+
[`disabled_integrations`](https://docs.sentry.io/platforms/python/configuration/options/#auto-enabling-integrations)
13+
config option to provide a list of integrations to disable:
14+
15+
```python
16+
import sentry_sdk
17+
from sentry_sdk.integrations.flask import FlaskIntegration
18+
19+
sentry_sdk.init(
20+
# Do not use the Flask integration even if Flask is installed.
21+
disabled_integrations=[
22+
FlaskIntegration(),
23+
],
24+
)
25+
```
26+
27+
- Use operation name as transaction name in Strawberry (#3294) by @sentrivana
28+
- WSGI integrations respect `SCRIPT_NAME` env variable (#2622) by @sarvaSanjay
29+
- Make Django DB spans have origin `auto.db.django` (#3319) by @antonpirker
30+
- Sort breadcrumbs by time before sending (#3307) by @antonpirker
31+
- Fix `KeyError('sentry-monitor-start-timestamp-s')` (#3278) by @Mohsen-Khodabakhshi
32+
- Set MongoDB tags directly on span data (#3290) by @0Calories
33+
- Lower logger level for some messages (#3305) by @sentrivana and @antonpirker
34+
- Emit deprecation warnings from `Hub` API (#3280) by @szokeasaurusrex
35+
- Clarify that `instrumenter` is internal-only (#3299) by @szokeasaurusrex
36+
- Support Django 5.1 (#3207) by @sentrivana
37+
- Remove apparently unnecessary `if` (#3298) by @szokeasaurusrex
38+
- Preliminary support for Python 3.13 (#3200) by @sentrivana
39+
- Move `sentry_sdk.init` out of `hub.py` (#3276) by @szokeasaurusrex
40+
- Unhardcode integration list (#3240) by @rominf
41+
- Allow passing of PostgreSQL port in tests (#3281) by @rominf
42+
- Add tests for `@ai_track` decorator (#3325) by @colin-sentry
43+
- Do not include type checking code in coverage report (#3327) by @antonpirker
44+
- Fix test_installed_modules (#3309) by @szokeasaurusrex
45+
- Fix typos and grammar in a comment (#3293) by @szokeasaurusrex
46+
- Fixed failed tests setup (#3303) by @antonpirker
47+
- Only assert warnings we are interested in (#3314) by @szokeasaurusrex
48+
349
## 2.10.0
450

551
### Various fixes & improvements

docs/conf.py

Lines changed: 1 addition & 1 deletion
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.10.0"
31+
release = "2.11.0"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,4 +563,4 @@ def _get_default_options():
563563
del _get_default_options
564564

565565

566-
VERSION = "2.10.0"
566+
VERSION = "2.11.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="2.10.0",
24+
version="2.11.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)