Skip to content

Commit de84c4c

Browse files
author
getsentry-bot
committed
Merge branch 'release/1.13.0'
2 parents c6d7b67 + c5d25db commit de84c4c

File tree

4 files changed

+50
-3
lines changed

4 files changed

+50
-3
lines changed

CHANGELOG.md

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

3+
## 1.13.0
4+
5+
### Various fixes & improvements
6+
7+
- Add Starlite integration (#1748) by @gazorby
8+
9+
Adding support for the [Starlite](https://starlite-api.github.io/starlite/1.48/) framework. Unhandled errors are captured. Performance spans for Starlite middleware are also captured. Thanks @gazorby for the great work!
10+
11+
Usage:
12+
13+
```python
14+
from starlite import Starlite, get
15+
16+
import sentry_sdk
17+
from sentry_sdk.integrations.starlite import StarliteIntegration
18+
19+
sentry_sdk.init(
20+
dsn="...",
21+
traces_sample_rate=1.0,
22+
integrations=[
23+
StarliteIntegration(),
24+
],
25+
)
26+
27+
@get("/")
28+
def hello_world() -> dict[str, str]:
29+
"""Keeping the tradition alive with hello world."""
30+
bla = 1/0 # causing an error
31+
return {"hello": "world"}
32+
33+
app = Starlite(route_handlers=[hello_world])
34+
```
35+
36+
- Profiling: Remove sample buffer from profiler (#1791) by @Zylphrex
37+
- Profiling: Performance tweaks to profile sampler (#1789) by @Zylphrex
38+
- Add span for Django SimpleTemplateResponse rendering (#1818) by @chdsbd
39+
- Use @wraps for Django Signal receivers (#1815) by @meanmail
40+
- Add enqueued_at and started_at to rq job extra (#1024) by @kruvasyan
41+
- Remove sanic v22 pin (#1819) by @sl0thentr0py
42+
- Add support for `byterray` and `memoryview` built-in types (#1833) by @Tarty
43+
- Handle `"rc"` in SQLAlchemy version. (#1812) by @peterschutt
44+
- Doc: Use .venv (not .env) as a virtual env location in CONTRIBUTING.md (#1790) by @tonyo
45+
- Auto publish to internal pypi on release (#1823) by @asottile-sentry
46+
- Added Python 3.11 to test suite (#1795) by @antonpirker
47+
- Update test/linting dependencies (#1801) by @antonpirker
48+
- Deps: bump sphinx from 5.2.3 to 5.3.0 (#1686) by @dependabot
49+
350
## 1.12.1
451

552
### Various fixes & improvements

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
copyright = "2019, Sentry Team and Contributors"
3030
author = "Sentry Team and Contributors"
3131

32-
release = "1.12.1"
32+
release = "1.13.0"
3333
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3434

3535

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,4 @@ def _get_default_options():
140140
del _get_default_options
141141

142142

143-
VERSION = "1.12.1"
143+
VERSION = "1.13.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="1.12.1",
24+
version="1.13.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)