Skip to content

Commit c273f67

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.34.0'
2 parents 4f9d326 + 72766a7 commit c273f67

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

CHANGELOG.md

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

3+
## 2.34.0
4+
5+
### Various fixes & improvements
6+
7+
- Considerably raise `DEFAULT_MAX_VALUE_LENGTH` (#4632) by @sentrivana
8+
9+
We have increased the string trimming limit considerably, allowing you to see more data
10+
without it being truncated. Note that this might, in rare cases, result in issue regrouping,
11+
for example if you're capturing message events with very long messages (longer than the
12+
default 1024 characters/bytes).
13+
14+
If you want to adjust the limit, you can set a
15+
[`max_value_limit`](https://docs.sentry.io/platforms/python/configuration/options/#max_value_length)
16+
in your `sentry_sdk.init()`.
17+
18+
- `OpenAI` integration update (#4612) by @antonpirker
19+
20+
The `OpenAIIntegration` now supports [OpenAI Responses API](https://platform.openai.com/docs/api-reference/responses).
21+
22+
The data captured will also show up in the new [AI Agents Dashboard](https://docs.sentry.io/product/insights/agents/dashboard/).
23+
24+
This works out of the box, nothing to do on your side.
25+
26+
- Expose `set_transaction_name` (#4634) by @sl0thentr0py
27+
- Fix(Celery): Latency should be in milliseconds, not seconds (#4637) by @sentrivana
28+
- Fix(Django): Treat `django.template.context.BasicContext` as sequence in serializer (#4621) by @sl0thentr0py
29+
- Fix(Huggingface): Fix `huggingface_hub` CI tests. (#4619) by @antonpirker
30+
- Fix: Ignore deliberate thread exception warnings (#4611) by @sl0thentr0py
31+
- Fix: Socket tests to not use example.com (#4627) by @sl0thentr0py
32+
- Fix: Threading run patch (#4610) by @sl0thentr0py
33+
- Tests: Simplify celery double patching test (#4626) by @sl0thentr0py
34+
- Tests: Remove remote example.com calls (#4622) by @sl0thentr0py
35+
- Tests: tox.ini update (#4635) by @sentrivana
36+
- Tests: Update tox (#4609) by @sentrivana
37+
338
## 2.33.2
439

540
### Various fixes & improvements

docs/conf.py

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

34-
release = "2.33.2"
34+
release = "2.34.0"
3535
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3636

3737

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1204,4 +1204,4 @@ def _get_default_options():
12041204
del _get_default_options
12051205

12061206

1207-
VERSION = "2.33.2"
1207+
VERSION = "2.34.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="2.33.2",
24+
version="2.34.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)