Skip to content

Commit 37b067c

Browse files
authored
feat: Turn on client reports by default (#1209)
1 parent 2c67a93 commit 37b067c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ sentry-sdk==0.10.1
2020

2121
A major release `N` implies the previous release `N-1` will no longer receive updates. We generally do not backport bugfixes to older versions unless they are security relevant. However, feel free to ask for backports of specific commits on the bugtracker.
2222

23+
## 1.4.3
24+
25+
- Turned client reports on by default.
26+
2327
## 1.4.2
2428

2529
- Made envelope modifications in the HTTP transport non observable #1206

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(
7676
traces_sampler=None, # type: Optional[TracesSampler]
7777
auto_enabling_integrations=True, # type: bool
7878
auto_session_tracking=True, # type: bool
79-
send_client_reports=False, # type: bool
79+
send_client_reports=True, # type: bool
8080
_experiments={}, # type: Experiments # noqa: B006
8181
):
8282
# type: (...) -> None

0 commit comments

Comments
 (0)