Skip to content

Commit

Permalink
release: 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Jun 26, 2024
1 parent 9506913 commit e60c0b6
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## 2.7.0

### Various fixes & improvements

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

## 2.6.0

- Introduce continuous profiling mode (#2830) by @Zylphrex
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.6.0"
release = "2.7.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 @@ -529,4 +529,4 @@ def _get_default_options():
del _get_default_options


VERSION = "2.6.0"
VERSION = "2.7.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.6.0",
version="2.7.0",
author="Sentry Team and Contributors",
author_email="hello@sentry.io",
url="https://github.com/getsentry/sentry-python",
Expand Down

0 comments on commit e60c0b6

Please sign in to comment.