From c67b73063d14ce3ff49a3f36009bceb8abdf6652 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Wed, 20 Mar 2024 14:44:17 +0000 Subject: [PATCH] release: 2.0.0rc3 --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 34 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2e8dac2cb..7f1885b6c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## 2.0.0rc3 + +### Various fixes & improvements + +- Use new scopes default integrations. (#2856) by @antonpirker +- Updated migration guide (#2859) by @antonpirker +- Use new scopes api in openai integration (#2853) by @antonpirker +- Use new scopes API in Celery integration. (#2851) by @antonpirker +- Use new scopes API in Django, SQLAlchemy, and asyncpg integration. (#2845) by @antonpirker +- Update CHANGELOG.md (970c5779) by @sentrivana +- release: 1.43.0 (2020ecac) by @getsentry-bot +- ref(redis): Use new scopes API (#2854) by @sentrivana +- feat: Add optional `keep_alive` (#2842) by @sentrivana +- ref(gql): Use new scopes API in GQL Integration (#2838) by @szokeasaurusrex +- ref: Ariadne integration new scope API (#2850) by @szokeasaurusrex +- ref(logging): New scopes API in LoggingIntegration (#2855) by @szokeasaurusrex +- fix(awslambda): aws_event can be an empty list (#2849) by @sentrivana +- Revert "ref(logging): New scopes API in LoggingIntegration" (#2861) by @sentrivana +- ref(logging): New scopes API in LoggingIntegration (#2861) by @sentrivana +- ref: Use `scope.should_send_default_pii` in FastAPI integration (#2846) by @szokeasaurusrex +- build(deps): bump checkouts/data-schemas from `ed078ed` to `8232f17` (#2832) by @dependabot +- ref: `should_send_default_pii` shortcut (#2844) by @szokeasaurusrex +- ref(fastapi): Use new scopes API in FastAPI integration (#2836) by @szokeasaurusrex +- ref: Patched functions decorator for integrations (#2454) by @szokeasaurusrex +- feat(integrations): Add support for celery-redbeat cron tasks (#2643) by @kwigley +- Moved should_send_default_pii into client (#2840) by @antonpirker +- Small APIdocs improvement (#2828) by @antonpirker +- test(gql): Remove problematic tests (#2835) by @szokeasaurusrex + +_Plus 2 more_ + ## 2.0.0rc2 ## New Features diff --git a/docs/conf.py b/docs/conf.py index f698579229..fead741ffd 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.0.0rc2" +release = "2.0.0rc3" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 6ea1f24358..fd3ca01c4c 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -331,4 +331,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.0.0rc2" +VERSION = "2.0.0rc3" diff --git a/setup.py b/setup.py index ec58649dc6..d9834ecbcc 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.0.0rc2", + version="2.0.0rc3", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",