Skip to content

Commit e60c0b6

Browse files
committed
release: 2.7.0
1 parent 9506913 commit e60c0b6

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

CHANGELOG.md

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

3+
## 2.7.0
4+
5+
### Various fixes & improvements
6+
7+
- Do not raise error when channels is not installed (#3203) by @antonpirker
8+
- Set up typing for OTel (#3168) by @sentrivana
9+
- feat(otel): Autoinstrumentation skeleton (#3143) by @sentrivana
10+
- Update our Codecov setup (#3190) by @antonpirker
11+
- Remove Hub from our test suite (#3197) by @antonpirker
12+
- tests: Update library, Python versions (#3202) by @sentrivana
13+
- fix(tests): Add Spark testsuite to tox.ini and to CI (#3199) by @sentrivana
14+
- ref(typing): Add additional stub packages for type checking (#3122) by @Daverball
15+
- ref(ci): Create a separate test group for AI (#3198) by @sentrivana
16+
- Fix spark driver integration (#3162) by @seyoon-lim
17+
- build(deps): bump supercharge/redis-github-action from 1.7.0 to 1.8.0 (#3193) by @dependabot
18+
- build(deps): bump actions/checkout from 4.1.6 to 4.1.7 (#3171) by @dependabot
19+
- feat(pymongo): Add MongoDB collection span tag (#3182) by @0Calories
20+
- feat(transport): Use env vars for default CA cert bundle location (#3160) by @DragoonAethis
21+
- ref(pymongo): Change span operation from `db.query` to `db` (#3186) by @0Calories
22+
- Add `origin` to spans and transactions (#3133) by @antonpirker
23+
- Propper naming of requirements files (#3191) by @antonpirker
24+
- Pinning pip because new version does not work with some versions of Celery and Httpx (#3195) by @antonpirker
25+
- If there is an internal error, still return a value (#3192) by @colin-sentry
26+
- ref(pymongo): Remove redundant command name in query description (#3189) by @0Calories
27+
- build(deps-dev): update pytest-asyncio requirement (#3087) by @dependabot
28+
329
## 2.6.0
430

531
- Introduce continuous profiling mode (#2830) by @Zylphrex

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.6.0"
31+
release = "2.7.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
@@ -529,4 +529,4 @@ def _get_default_options():
529529
del _get_default_options
530530

531531

532-
VERSION = "2.6.0"
532+
VERSION = "2.7.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.6.0",
24+
version="2.7.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)