Skip to content

Commit 65d31af

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.31.0'
2 parents 8b6e5ad + 9792e4f commit 65d31af

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-3
lines changed

CHANGELOG.md

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

3+
## 2.31.0
4+
5+
### Various fixes & improvements
6+
7+
- **New Integration (BETA):** Add support for `openai-agents` (#4437) by @antonpirker
8+
9+
We can now instrument AI agents that are created with the [OpenAI Agents SDK](https://openai.github.io/openai-agents-python/) out of the box.
10+
11+
```python
12+
import sentry_sdk
13+
from sentry_sdk.integrations.openai_agents import OpenAIAgentsIntegration
14+
15+
# Add the OpenAIAgentsIntegration to your sentry_sdk.init call:
16+
sentry_sdk.init(
17+
dsn="...",
18+
integrations=[
19+
OpenAIAgentsIntegration(),
20+
]
21+
)
22+
```
23+
24+
For more information see the [OpenAI Agents integrations documentation](https://docs.sentry.io/platforms/python/integrations/openai-agents/).
25+
26+
- Logs: Add support for `dict` arguments (#4478) by @AbhiPrasad
27+
- Add Cursor generated rules (#4493) by @sl0thentr0py
28+
- Greatly simplify Langchain integrations `_wrap_configure` (#4479) by @szokeasaurusrex
29+
- Fix(ci): Remove tracerite pin (almost) (#4504) by @sentrivana
30+
- Fix(profiling): Ensure profiler thread exits when needed (#4497) by @Zylphrex
31+
- Fix(ci): Do not install newest `tracerite` (#4494) by @sentrivana
32+
- Fix(scope): Handle token reset `LookupError`s gracefully (#4481) by @sentrivana
33+
- Tests: Tox update (#4509) by @sentrivana
34+
- Tests: Upper bound on fakeredis on old Python versions (#4482) by @sentrivana
35+
- Tests: Regenerate tox (#4457) by @sentrivana
36+
337
## 2.30.0
438

539
### 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.30.0"
34+
release = "2.31.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
@@ -1181,4 +1181,4 @@ def _get_default_options():
11811181
del _get_default_options
11821182

11831183

1184-
VERSION = "2.30.0"
1184+
VERSION = "2.31.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.30.0",
24+
version="2.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)