Skip to content

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.0a2
4+
5+
### Various fixes & improvements
6+
7+
- Fix Discord link in changelog (#3152) by @sl0thentr0py
8+
- Update CHANGELOG.md (719efd5c) by @sentrivana
9+
- release: 2.30.0 (949c4e81) by @getsentry-bot
10+
- Patch `TracerProvider` if it already exists (#4455) by @sl0thentr0py
11+
- test: Assert `traces_sampler` called once (#4450) by @sl0thentr0py
12+
- feat(loguru): Sentry logs for Loguru (#4445) by @sentrivana
13+
- fix(logs): Don't gate user behind `send_default_pii` (#4453) by @AbhiPrasad
14+
- fix(logging): Strip log `record.name` for more robust matching (#4411) by @romaingd-spi
15+
- Migrate to modern threading interface (#4452) by @emmanuel-ferdman
16+
- feat(scope): Remove `client` parameter (#4449) by @sl0thentr0py
17+
- Add span activate and deactivate apis (#4447) by @sl0thentr0py
18+
- ref: Remove `_capture_experimental_log` `scope` parameter (#4424) by @szokeasaurusrex
19+
- feat(logs): Add user attributes to logs (#4423) by @szokeasaurusrex
20+
- Remove `scope.span =` setter and make sure `scope.span` reference is correct in context manager regardless of source of span (#4439) by @sl0thentr0py
21+
- Update trace decorator to not use start_child (#4440) by @sl0thentr0py
22+
- tests: Regenerate tox.ini & fix CI (#4435) by @sentrivana
23+
- Cleanup meta references on flush (#4420) by @sl0thentr0py
24+
- fix: fix ARQ integration error (#4427) (#4428) by @ninoseki
25+
- Fix CI, adapt to new redis-py release (#4431) by @sentrivana
26+
- Add otel debug log for setup (#3152) by @sl0thentr0py
27+
- fix(grpc): Fix AttributeError when instrumenting with OTel (#4405) by @sentrivana
28+
- fix(redis): Use `command_queue` instead of `command_stack` if available (#4404) by @sentrivana
29+
- tests: Regenerate toxgen (#4403) by @sentrivana
30+
- fix: Handle invalid `SENTRY_DEBUG` values properly (#4400) by @szokeasaurusrex
31+
32+
_Plus 20 more_
33+
334
## 3.0.0a1
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.0a1"
36+
release = "3.0.0a2"
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
@@ -1063,4 +1063,4 @@ def _get_default_options():
10631063
del _get_default_options
10641064

10651065

1066-
VERSION = "3.0.0a1"
1066+
VERSION = "3.0.0a2"

‎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.0a1",
24+
version="3.0.0a2",
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)
Please sign in to comment.