Skip to content

Commit c515aae

Browse files
committed
release: 1.32.0
1 parent 53a67e0 commit c515aae

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

CHANGELOG.md

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

3+
## 1.32.0
4+
5+
### Various fixes & improvements
6+
7+
- Fix mypy errors (#2433) by @sentrivana
8+
- Capture multiple named groups again (#2432) by @sentrivana
9+
- Add Strawberry GraphQL integration (#2393) by @sentrivana
10+
- feat(metrics): Make a consistent noop flush behavior (#2428) by @mitsuhiko
11+
- lint: fix pre-commit issues (#2424) by @bukzor-sentryio
12+
- feat(metrics): Stronger recursion protection (#2426) by @mitsuhiko
13+
- Remove utcnow, utcfromtimestamp deprecated in Python 3.12 (#2415) by @rmad17
14+
- Update CONTRIBUTING.md (#2411) by @sentrivana
15+
- Move `importorskip`s in tests to `__init__.py` files (#2412) by @sentrivana
16+
- Run more `requests`, `celery`, `falcon` tests (#2414) by @sentrivana
17+
- RQ changed how the set jobs to failed. Dealing with this. (#2405) by @antonpirker
18+
- fix(tracing) : Add `trace` to `__all__` in top-level `__init__.py` (#2401) by @lobsterkatie
19+
- Add Ariadne GraphQL error integration (#2387) by @sentrivana
20+
- Add Graphene GraphQL error integration (#2389) by @sentrivana
21+
- [Hackweek] Add explain plan to db spans. (#2315) by @antonpirker
22+
- Pinned some test requirements because new majors break our tests (#2404) by @antonpirker
23+
- Updated Apidocs (#2397) by @antonpirker
24+
- feat(metrics): Shift flushing by up to a rollup window (#2396) by @mitsuhiko
25+
- Add GraphQL client integration (#2368) by @szokeasaurusrex
26+
- build(deps): bump sphinx from 7.2.5 to 7.2.6 (#2378) by @dependabot
27+
- feat(metrics): Move minimetrics code to the SDK (#2385) by @mitsuhiko
28+
- feat(transport): Added configurable compression levels (#2382) by @mitsuhiko
29+
- Remove OpenTelemetryIntegration from __init__.py (#2379) by @sentrivana
30+
- Don't fail when upstream scheme is unusual (#2371) by @vanschelven
31+
332
## 1.31.0
433

534
### 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.31.0"
33+
release = "1.32.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
@@ -283,4 +283,4 @@ def _get_default_options():
283283
del _get_default_options
284284

285285

286-
VERSION = "1.31.0"
286+
VERSION = "1.32.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.31.0",
24+
version="1.32.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)