File tree Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Expand file tree Collapse file tree 4 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.13.0
4
+
5
+ ### Various fixes & improvements
6
+
7
+ - fix(serializer): Add support for ` byterray ` and ` memoryview ` built-in types (#1833 ) by @Tarty
8
+ - Feat: add Starlite integration (#1748 ) by @gazorby
9
+ - Added Python 3.11 to test suite (#1795 ) by @antonpirker
10
+ - Update test/linting dependencies (#1801 ) by @antonpirker
11
+ - ref(profiling): Remove sample buffer from profiler (#1791 ) by @Zylphrex
12
+ - Auto publish to internal pypi on release (#1823 ) by @asottile-sentry
13
+ - perf(profiling): Performance tweaks to profile sampler (#1789 ) by @Zylphrex
14
+ - Add span for Django SimpleTemplateResponse rendering (#1818 ) by @chdsbd
15
+ - Add enqueued_at and started_at to rq job extra (#1024 ) by @kruvasyan
16
+ - Remove sanic v22 pin (#1819 ) by @sl0thentr0py
17
+ - Use @wraps for Django Signal receivers (#1815 ) by @meanmail
18
+ - Handle ` "rc" ` in SQLAlchemy version. (#1812 ) by @peterschutt
19
+ - doc: Use .venv (not .env) as a virtual env location in CONTRIBUTING.md (#1790 ) by @tonyo
20
+ - build(deps): bump sphinx from 5.2.3 to 5.3.0 (#1686 ) by @dependabot
21
+
3
22
## 1.12.1
4
23
5
24
### Various fixes & improvements
Original file line number Diff line number Diff line change 29
29
copyright = "2019, Sentry Team and Contributors"
30
30
author = "Sentry Team and Contributors"
31
31
32
- release = "1.12.1 "
32
+ release = "1.13.0 "
33
33
version = "." .join (release .split ("." )[:2 ]) # The short X.Y version.
34
34
35
35
Original file line number Diff line number Diff line change @@ -140,4 +140,4 @@ def _get_default_options():
140
140
del _get_default_options
141
141
142
142
143
- VERSION = "1.12.1 "
143
+ VERSION = "1.13.0 "
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def get_file_text(file_name):
21
21
22
22
setup (
23
23
name = "sentry-sdk" ,
24
- version = "1.12.1 " ,
24
+ version = "1.13.0 " ,
25
25
author = "Sentry Team and Contributors" ,
26
26
27
27
url = "https://github.com/getsentry/sentry-python" ,
You can’t perform that action at this time.
0 commit comments