From 2020ecac89aaf5f0005c5a264da1b33a5d9857f0 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Wed, 20 Mar 2024 10:18:39 +0000 Subject: [PATCH 1/2] release: 1.43.0 --- CHANGELOG.md | 12 ++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84708cd6ae..5d53de6f43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 1.43.0 + +### Various fixes & improvements + +- feat: Add optional `keep_alive` (#2842) by @sentrivana +- fix(awslambda): aws_event can be an empty list (#2849) by @sentrivana +- build(deps): bump checkouts/data-schemas from `ed078ed` to `8232f17` (#2832) by @dependabot +- feat(integrations): Add support for celery-redbeat cron tasks (#2643) by @kwigley +- Small APIdocs improvement (#2828) by @antonpirker +- Re-export `Event` in `types.py` (#2829) by @szokeasaurusrex +- Fixed OpenAI tests (#2834) by @antonpirker + ## 1.42.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 48bf8dc82e..2cd901f5fa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,7 +30,7 @@ copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year) author = "Sentry Team and Contributors" -release = "1.42.0" +release = "1.43.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 6af08b4a40..738ca2e1c0 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -321,4 +321,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.42.0" +VERSION = "1.43.0" diff --git a/setup.py b/setup.py index b1e9956ada..9f4155cad4 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.42.0", + version="1.43.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python", From 970c57790c1b8b35e2404e12316028d047ce02dd Mon Sep 17 00:00:00 2001 From: Ivana Kellyerova Date: Wed, 20 Mar 2024 11:24:54 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d53de6f43..86a849d203 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,32 @@ ### Various fixes & improvements -- feat: Add optional `keep_alive` (#2842) by @sentrivana -- fix(awslambda): aws_event can be an empty list (#2849) by @sentrivana -- build(deps): bump checkouts/data-schemas from `ed078ed` to `8232f17` (#2832) by @dependabot -- feat(integrations): Add support for celery-redbeat cron tasks (#2643) by @kwigley -- Small APIdocs improvement (#2828) by @antonpirker +- Add optional `keep_alive` (#2842) by @sentrivana + + If you're experiencing frequent network issues between the SDK and Sentry, + you can try turning on TCP keep-alive: + + ```python + import sentry_sdk + + sentry_sdk.init( + # ...your usual settings... + keep_alive=True, + ) + ``` + +- Add support for Celery Redbeat cron tasks (#2643) by @kwigley + + The SDK now supports the Redbeat scheduler in addition to the default + Celery Beat scheduler for auto instrumenting crons. See + [the docs](https://docs.sentry.io/platforms/python/integrations/celery/crons/) + for more information about how to set this up. + +- `aws_event` can be an empty list (#2849) by @sentrivana - Re-export `Event` in `types.py` (#2829) by @szokeasaurusrex +- Small API docs improvement (#2828) by @antonpirker - Fixed OpenAI tests (#2834) by @antonpirker +- Bump `checkouts/data-schemas` from `ed078ed` to `8232f17` (#2832) by @dependabot ## 1.42.0