Skip to content

Commit 2bbe401

Browse files
authored
Update CHANGELOG.md (#618)
1 parent 77029df commit 2bbe401

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
## Unreleased
44

55
- 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+
```
616
- Fix exceptions sent via the `report()` helper being marked as unhandled (#617)
717
818
## 3.1.1

0 commit comments

Comments
 (0)