Skip to content

Commit 3635ce8

Browse files
committed
release: 3.0.0a4
1 parent d913572 commit 3635ce8

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.0a4
4+
5+
### Various fixes & improvements
6+
7+
- Migrate more type comments to annotations (#4651) by @sl0thentr0py
8+
- ref: Drop experimental logs options in 3.0 (#4653) by @sl0thentr0py
9+
- Polish migration guide (#4650) by @sl0thentr0py
10+
- Add `enable_logs`, `before_send_log` as top-level options (#4644) by @sentrivana
11+
- Add missing return type annotation (#3152) by @sl0thentr0py
12+
- Fix mypy (#4649) by @sentrivana
13+
- Better checking for empty tools list (#4647) by @antonpirker
14+
- ref: Remove `MAX_EVENT_BYTES` (#4630) by @sl0thentr0py
15+
- update changelog (9276f2a1) by @antonpirker
16+
- release: 2.34.1 (a71ef66d) by @getsentry-bot
17+
- typing (#3152) by @sl0thentr0py
18+
- Update tests (#3152) by @sl0thentr0py
19+
- Span data is always be a primitive data type (#4643) by @antonpirker
20+
- Fix typo in CHANGELOG.md (#4640) by @jgillard
21+
- updated test matrix (#3152) by @sl0thentr0py
22+
- Add new_trace api to force a new trace (#4642) by @sl0thentr0py
23+
- Revert "Add new_trace api to force a new trace" (#3152) by @sl0thentr0py
24+
- Add new_trace api to force a new trace (#3152) by @sl0thentr0py
25+
- Update changelog (72766a79) by @antonpirker
26+
- Update CHANGELOG.md (e1848d4f) by @sentrivana
27+
- release: 2.34.0 (e84f6f30) by @getsentry-bot
28+
- Considerably raise `DEFAULT_MAX_VALUE_LENGTH` (#4632) by @sentrivana
29+
- fix(celery): Latency should be in milliseconds, not seconds (#4637) by @sentrivana
30+
- OpenAI integration update (#4612) by @antonpirker
31+
32+
_Plus 16 more_
33+
334
## 3.0.0a3
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.0a3"
36+
release = "3.0.0a4"
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
@@ -1272,4 +1272,4 @@ def _get_default_options() -> dict[str, Any]:
12721272
del _get_default_options
12731273

12741274

1275-
VERSION = "3.0.0a3"
1275+
VERSION = "3.0.0a4"

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

0 commit comments

Comments
 (0)