Skip to content

Commit 7b48848

Browse files
committed
release: 1.35.0
1 parent 9cae5f2 commit 7b48848

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

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

3+
## 1.35.0
4+
5+
### Python 3.12 Support (ongoing)
6+
7+
By: @sentrivana (#2488)
8+
9+
### Various fixes & improvements
10+
11+
- Replace deprecated datetime functions (#2502) by @sentrivana
12+
- Set correct data in `check_in`s (#2500) by @antonpirker
13+
- Make reading the request body work in Django ASGI apps. (#2495) by @antonpirker
14+
- Read timezone for Crons monitors from `celery_schedule` if existing (#2497) by @antonpirker
15+
- feat(metrics): Unify datetime format (#2409) by @mitsuhiko
16+
- gRPC integration and aio interceptors (#2369) by @fdellekart
17+
- fix(integrations): Use wraps on fastapi request call wrapper (#2476) by @nkaras
18+
- Remove unnecessary TYPE_CHECKING alias (#2467) by @rafrafek
19+
- Removing redundant code in Django tests (#2491) by @vagi8
20+
- Probe for psycopg2 and psycopg3 parameters function. (#2492) by @antonpirker
21+
322
## 1.34.0
423

524
### 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.34.0"
33+
release = "1.35.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
@@ -286,4 +286,4 @@ def _get_default_options():
286286
del _get_default_options
287287

288288

289-
VERSION = "1.34.0"
289+
VERSION = "1.35.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.34.0",
24+
version="1.35.0",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)