Skip to content

Commit 3fc2a2f

Browse files
authored
Merge release/0.8.1 into master
2 parents bb5abb0 + 6326cb6 commit 3fc2a2f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
)
4949

5050

51-
VERSION = "0.8.0"
51+
VERSION = "0.8.1"
5252
DEFAULT_SERVER_NAME = socket.gethostname() if hasattr(socket, "gethostname") else None
5353
DEFAULT_OPTIONS = {
5454
"dsn": None,

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

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

tests/integrations/django/test_basic.py

+1
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,7 @@ def test_request_body(sentry_init, client, capture_events):
359359
assert "" not in event
360360

361361

362+
@pytest.mark.xfail
362363
def test_read_request(sentry_init, client, capture_events):
363364
sentry_init(integrations=[DjangoIntegration()])
364365
events = capture_events()

0 commit comments

Comments
 (0)