From 3eea98ee3aea43a0ff68d4f9906cc526a3f1fb5e Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Mon, 31 Jul 2023 08:38:12 +0000 Subject: [PATCH 1/3] release: 1.29.0 --- CHANGELOG.md | 16 ++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d66961b29..a60aa38f53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 1.29.0 + +### Various fixes & improvements + +- Always sample checkin regardless of sample_rate (#2279) by @szokeasaurusrex +- Add DB connection attributes in spans (#2274) by @antonpirker +- Clarified the procedure for running tests (#2276) by @szokeasaurusrex +- Fix chalice tests (#2278) by @sentrivana +- feat(redis): Add db.system to remaining redis spans (#2271) by @AbhiPrasad +- Capture GraphQL client errors (#2243) by @sentrivana +- build(deps): bump black from 23.3.0 to 23.7.0 (#2256) by @dependabot +- ref(crons): Add information to short-interval cron error message (#2246) by @lobsterkatie +- Read MAX_VALUE_LENGTH from client options (#2121) (#2171) by @puittenbroek +- ref(integrations): Rename `request_bodies` to `max_request_body_size` (#2247) by @mgaligniana +- Remove py3.4 from tox.ini (#2248) by @sentrivana + ## 1.28.1 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index d02c64dfc4..e8aeaf38cd 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.28.1" +release = "1.29.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index ee99210341..f0771c9005 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -263,4 +263,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.28.1" +VERSION = "1.29.0" diff --git a/setup.py b/setup.py index 0a5307d9a7..6a9a37c1b4 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.28.1", + version="1.29.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python", From 4c8b0821af3eba634ba485a05215ea73a2252a92 Mon Sep 17 00:00:00 2001 From: Ivana Kellyerova Date: Mon, 31 Jul 2023 10:44:26 +0200 Subject: [PATCH 2/3] Update changelog --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a60aa38f53..e338c91313 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,16 +4,16 @@ ### Various fixes & improvements +- Capture GraphQL client errors (#2243) by @sentrivana +- Read MAX_VALUE_LENGTH from client options (#2121) (#2171) by @puittenbroek +- Rename `request_bodies` to `max_request_body_size` (#2247) by @mgaligniana - Always sample checkin regardless of sample_rate (#2279) by @szokeasaurusrex +- Add information to short-interval cron error message (#2246) by @lobsterkatie - Add DB connection attributes in spans (#2274) by @antonpirker +- Add db.system to remaining redis spans (#2271) by @AbhiPrasad - Clarified the procedure for running tests (#2276) by @szokeasaurusrex - Fix chalice tests (#2278) by @sentrivana -- feat(redis): Add db.system to remaining redis spans (#2271) by @AbhiPrasad -- Capture GraphQL client errors (#2243) by @sentrivana -- build(deps): bump black from 23.3.0 to 23.7.0 (#2256) by @dependabot -- ref(crons): Add information to short-interval cron error message (#2246) by @lobsterkatie -- Read MAX_VALUE_LENGTH from client options (#2121) (#2171) by @puittenbroek -- ref(integrations): Rename `request_bodies` to `max_request_body_size` (#2247) by @mgaligniana +- Bump black from 23.3.0 to 23.7.0 (#2256) by @dependabot - Remove py3.4 from tox.ini (#2248) by @sentrivana ## 1.28.1 From d0af1f0761398af0202747ac06e4555cc09caf37 Mon Sep 17 00:00:00 2001 From: Ivana Kellyerova Date: Mon, 31 Jul 2023 10:59:09 +0200 Subject: [PATCH 3/3] Add more details to changelog --- CHANGELOG.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e338c91313..60ec86f162 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,15 +5,16 @@ ### Various fixes & improvements - Capture GraphQL client errors (#2243) by @sentrivana + - The SDK will now create dedicated errors whenever an HTTP client makes a reqwuest to a `/graphql` endpoint and the response contains an error. You can opt out of this by providing `capture_graphql_errors=False` to the HTTP client integration. - Read MAX_VALUE_LENGTH from client options (#2121) (#2171) by @puittenbroek - Rename `request_bodies` to `max_request_body_size` (#2247) by @mgaligniana -- Always sample checkin regardless of sample_rate (#2279) by @szokeasaurusrex +- Always sample checkin regardless of `sample_rate` (#2279) by @szokeasaurusrex - Add information to short-interval cron error message (#2246) by @lobsterkatie - Add DB connection attributes in spans (#2274) by @antonpirker -- Add db.system to remaining redis spans (#2271) by @AbhiPrasad +- Add `db.system` to remaining Redis spans (#2271) by @AbhiPrasad - Clarified the procedure for running tests (#2276) by @szokeasaurusrex -- Fix chalice tests (#2278) by @sentrivana -- Bump black from 23.3.0 to 23.7.0 (#2256) by @dependabot +- Fix Chalice tests (#2278) by @sentrivana +- Bump Black from 23.3.0 to 23.7.0 (#2256) by @dependabot - Remove py3.4 from tox.ini (#2248) by @sentrivana ## 1.28.1