Skip to content

Commit 026d609

Browse files
author
getsentry-bot
committed
Merge branch 'release/1.29.0'
2 parents 69866be + d0af1f0 commit 026d609

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## 1.29.0
4+
5+
### Various fixes & improvements
6+
7+
- Capture GraphQL client errors (#2243) by @sentrivana
8+
- 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.
9+
- Read MAX_VALUE_LENGTH from client options (#2121) (#2171) by @puittenbroek
10+
- Rename `request_bodies` to `max_request_body_size` (#2247) by @mgaligniana
11+
- Always sample checkin regardless of `sample_rate` (#2279) by @szokeasaurusrex
12+
- Add information to short-interval cron error message (#2246) by @lobsterkatie
13+
- Add DB connection attributes in spans (#2274) by @antonpirker
14+
- Add `db.system` to remaining Redis spans (#2271) by @AbhiPrasad
15+
- Clarified the procedure for running tests (#2276) by @szokeasaurusrex
16+
- Fix Chalice tests (#2278) by @sentrivana
17+
- Bump Black from 23.3.0 to 23.7.0 (#2256) by @dependabot
18+
- Remove py3.4 from tox.ini (#2248) by @sentrivana
19+
320
## 1.28.1
421

522
### Various fixes & improvements

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
3131
author = "Sentry Team and Contributors"
3232

33-
release = "1.28.1"
33+
release = "1.29.0"
3434
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3535

3636

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,4 +263,4 @@ def _get_default_options():
263263
del _get_default_options
264264

265265

266-
VERSION = "1.28.1"
266+
VERSION = "1.29.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_file_text(file_name):
2121

2222
setup(
2323
name="sentry-sdk",
24-
version="1.28.1",
24+
version="1.29.0",
2525
author="Sentry Team and Contributors",
2626
author_email="hello@sentry.io",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)