We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77029df commit 2bbe401Copy full SHA for 2bbe401
CHANGELOG.md
@@ -3,6 +3,16 @@
3
## Unreleased
4
5
- Set `traces_sample_rate` to `null` by default (#616)
6
+ - Make sure to update your `config/sentry.php`.
7
+
8
+ Replace
9
+ ```
10
+ 'traces_sample_rate' => (float)(env('SENTRY_TRACES_SAMPLE_RATE', 0.0)),
11
12
+ with
13
14
+ 'traces_sample_rate' => env('SENTRY_TRACES_SAMPLE_RATE') === null ? null : (float)env('SENTRY_TRACES_SAMPLE_RATE'),
15
16
- Fix exceptions sent via the `report()` helper being marked as unhandled (#617)
17
18
## 3.1.1
0 commit comments