Skip to content

Commit 73d608a

Browse files
author
getsentry-bot
committed
Merge branch 'release/1.25.0'
2 parents 26997ab + 8cd7ca8 commit 73d608a

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

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

3+
## 1.25.0
4+
5+
### Various fixes & improvements
6+
7+
- Support urllib3>=2.0.0 (#2148) by @asottile-sentry
8+
9+
We're now supporting urllib3's new major version, 2.0.0. If you encounter issues (e.g. some of your dependencies not supporting the new urllib3 version yet) you might consider pinning the urllib3 version to `<2.0.0` manually in your project. Check out the [the urllib3 migration guide](https://urllib3.readthedocs.io/en/latest/v2-migration-guide.html#migrating-as-an-application-developer) for details.
10+
11+
- Auto-retry tests on failure (#2134) by @sentrivana
12+
- Correct `importlib.metadata` check in `test_modules` (#2149) by @asottile-sentry
13+
- Fix distribution name normalization (PEP-0503) (#2144) by @rominf
14+
- Fix `functions_to_trace` typing (#2141) by @rcmarron
15+
316
## 1.24.0
417

518
### 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"
3131
author = "Sentry Team and Contributors"
3232

33-
release = "1.24.0"
33+
release = "1.25.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
@@ -214,4 +214,4 @@ def _get_default_options():
214214
del _get_default_options
215215

216216

217-
VERSION = "1.24.0"
217+
VERSION = "1.25.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.24.0",
24+
version="1.25.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)