8000 Merge release/0.7.10 into master · pythonthings/sentry-python@d8ca2f3 · GitHub
[go: up one dir, main page]

Skip to content

Commit d8ca2f3

Browse files
authored
Merge release/0.7.10 into master
2 parents 46f8527 + d8eb001 commit d8ca2f3

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
* Fix a few bad typehints causing issues in IDEs.
66
* Fix a bug in the Bottle integration that would report HTTP exceptions (e.g.
77
redirects) as errors.
8+
* Fix a bug that would prevent use of `in_app_exclude` without
9+
setting `in_app_include`.
10+
* Fix a bug where request bodies of Django Rest Framework apps were not captured.
11+
* Suppress errors during SQL breadcrumb capturing in Django
12+
integration. Also change order in which formatting strategies
13+
are tried.
814

915
## 0.7.9
1016

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
)
4343

4444

45-
VERSION = "0.7.9"
45+
VERSION = "0.7.10"
4646
DEFAULT_SERVER_NAME = socket.gethostname() if hasattr(socket, "gethostname") else None
4747
DEFAULT_OPTIONS = {
4848
"dsn": None,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="sentry-sdk",
15-
version="0.7.9",
15+
version="0.7.10",
1616
author="Sentry Team and Contributors",
1717
author_email="hello@getsentry.com",
1818
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)
0