Skip to content

Commit 54a2a82

Browse files
committed
release: 3.0.0a3
1 parent 18a646c commit 54a2a82

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

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

3+
## 3.0.0a3
4+
5+
### Various fixes & improvements
6+
7+
- fix(integrations): allow explicit op parameter in `ai_track` (#4597) by @mshavliuk
8+
- fix: Fix `abs_path` bug in `serialize_frame` (#4599) by @szokeasaurusrex
9+
- Remove pyrsistent from test dependencies (#4588) by @musicinmybrain
10+
- Setup opentelemetry patch only once (#4595) by @sl0thentr0py
11+
- Don't use remote server in tests.. (#3152) by @sl0thentr0py
12+
- Fix merge (#3152) by @sl0thentr0py
13+
- Remove explicit __del__'s in threaded classes (#4590) by @sl0thentr0py
14+
- ci: Check strictly for success (#4589) by @szokeasaurusrex
15+
- test: Remove `test_installed_modules` (#4593) by @szokeasaurusrex
16+
- Remove forked from test_transport, separate gevent tests and generalize capturing_server to be module level (#4577) by @sl0thentr0py
17+
- Improve token usage recording (#4566) by @antonpirker
18+
- Remove eventlet support (#4584) by @sl0thentr0py
19+
- meta: Update CHANGELOG.md (98b107fd) by @szokeasaurusrex
20+
- release: 2.33.0 (220a235b) by @getsentry-bot
21+
- feat(langchain): Support `BaseCallbackManager` (#4486) by @szokeasaurusrex
22+
- tests: Regenerate tox.ini (#4583) by @sentrivana
23+
- Add custom sampling context testcases (#4579) by @sl0thentr0py
24+
- feat(tracing): Add option to exclude specific span origins (#4463) by @sl0thentr0py
25+
- Cleanup op and description mapping (#4560) by @sl0thentr0py
26+
- Remove all forked markers in test_api (#4576) by @sl0thentr0py
27+
- Remove forked marker in client uwsgi test (#4575) by @sl0thentr0py
28+
- Fix pytest collection warning (#4574) by @sl0thentr0py
29+
- Remove print statements from excepthook test (#4573) by @sl0thentr0py
30+
- Use `span.data` instead of `measurements` for token usage (#4567) by @antonpirker
31+
32+
_Plus 42 more_
33+
334
## 3.0.0a2
435

536
We're excited to announce that version 3.0 of the Sentry Python SDK is now

docs/conf.py

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

36-
release = "3.0.0a2"
36+
release = "3.0.0a3"
3737
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3838

3939

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1241,4 +1241,4 @@ def _get_default_options() -> dict[str, Any]:
12411241
del _get_default_options
12421242

12431243

1244-
VERSION = "3.0.0a2"
1244+
VERSION = "3.0.0a3"

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

0 commit comments

Comments
 (0)