From ab3eb1f591124f7b6a6d3040986c68da0a0f1d7d Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Wed, 31 Jul 2024 09:00:45 +0000 Subject: [PATCH] release: 2.12.0 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 30 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f811b6d8c..06259bce94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 2.12.0 + +### Various fixes & improvements + +- Add span data to the transactions trace context (#3374) by @antonpirker +- ci: Remove Django setuptools pin (#3378) by @szokeasaurusrex +- feat(integrations): Add async support for `ai_track` decorator (#3376) by @czyber +- ref(otel): Remove experimental autoinstrumentation (#3239) by @sentrivana +- build(deps): bump checkouts/data-schemas from `0feb234` to `6d2c435` (#3369) by @dependabot +- tests: Test with Django 5.1 RC (#3370) by @sentrivana +- Expose the scope getters to top level API and use them everywhere (#3357) by @sl0thentr0py +- ci: Workaround bug preventing Django test runs (#3371) by @szokeasaurusrex +- fix(api): `push_scope` deprecation warning (#3355) (#3355) by @szokeasaurusrex +- test(sessions): Replace `push_scope` (#3354) by @szokeasaurusrex +- test(basics): Replace `push_scope` (#3353) by @szokeasaurusrex +- fix(api): Deprecate `configure_scope` (#3351) by @szokeasaurusrex +- test(client): Avoid `configure_scope` (#3350) by @szokeasaurusrex +- test(basics): Stop using `configure_scope` (#3349) by @szokeasaurusrex +- test(celery): Stop using `configure_scope` (#3348) by @szokeasaurusrex +- feat(graphene): Add span for grapqhl operation (#2788) by @czyber +- docs: Document attachment parameters (#3342) by @szokeasaurusrex +- ref(scope): Broaden `add_attachment` type (#3342) by @szokeasaurusrex +- Revert "ci: dependency review action (#3332)" (#3338) by @mdtro +- Gracefully fail attachment path not found case (#3337) by @sl0thentr0py +- build(deps): bump checkouts/data-schemas from `88273a9` to `0feb234` (#3252) by @dependabot +- ci: dependency review action (#3332) by @mdtro + ## 2.11.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index fc485b9d9a..884b977e7f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year) author = "Sentry Team and Contributors" -release = "2.11.0" +release = "2.12.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index af36e34b08..82552e4084 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -561,4 +561,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.11.0" +VERSION = "2.12.0" diff --git a/setup.py b/setup.py index 09b5cb803e..7d4fdebb9d 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.11.0", + version="2.12.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",