Skip to content

Commit bfeb825

Browse files
committed
release: 1.31.0
1 parent ad0ed59 commit bfeb825

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## 1.31.0
4+
5+
### Various fixes & improvements
6+
7+
- feat(integrations): Add integration for clickhouse-driver (#2167) by @mimre25
8+
- Made NoOpSpan compatible to Transactions. (#2364) by @antonpirker
9+
- build(deps): bump actions/checkout from 3 to 4 (#2361) by @dependabot
10+
- Prevent Falcon integration from breaking ASGI apps (#2359) by @szokeasaurusrex
11+
- Documenting Spans and Transactions (#2358) by @antonpirker
12+
- Fix tests using Postgres (#2362) by @antonpirker
13+
- feat(integrations): Add integration for asyncpg (#2314) by @mimre25
14+
- Added link to backpressure section in docs. (#2354) by @antonpirker
15+
- build(deps): bump actions/checkout from 2 to 4 (#2352) by @dependabot
16+
- build(deps): bump checkouts/data-schemas from `ebc77d3` to `68def1e` (#2351) by @dependabot
17+
- Updated linting tooling (#2350) by @antonpirker
18+
- feat(celery): Allow to override propagate_traces per task (#2331) by @jan-auer
19+
- Fixing deprecated version attribute (#2338) by @vagi8
20+
- build(deps): bump sphinx from 7.2.4 to 7.2.5 (#2344) by @dependabot
21+
- Fix transaction name in Starlette and FastAPI (#2341) by @antonpirker
22+
- Enhancement/add .vscode to .gitignore (#2317) by @shoaib-mohd
23+
- Backpressure: only downsample a max of 10 times (#2347) by @sl0thentr0py
24+
- Cleanup ASGI integration (#2335) by @antonpirker
25+
- Pin anyio in tests (dep of httpx), because new major 4.0.0 breaks tests. (#2336) by @antonpirker
26+
- fix(profiler): Do not call getcwd from module root (#2329) by @Zylphrex
27+
- Update changelog (#2327) by @sentrivana
28+
329
## 1.30.0
430

531
### Various fixes & improvements

docs/conf.py

+1-1
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.30.0"
33+
release = "1.31.0"
3434
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3535

3636

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,4 +271,4 @@ def _get_default_options():
271271
del _get_default_options
272272

273273

274-
VERSION = "1.30.0"
274+
VERSION = "1.31.0"

setup.py

+1-1
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.30.0",
24+
version="1.31.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)