You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,30 @@
1
1
# CHANGELOG
2
2
3
+
## 4.25.0
4
+
5
+
The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.25.0.
6
+
7
+
### Features
8
+
9
+
- Add `ExceptionToSentryIssueHandler` Monolog handler that only captures exceptions as Sentry issues without converting log messages to errors. [(#2061)](https://github.com/getsentry/sentry-php/pull/2061)
10
+
- Add `metric_flush_threshold` option to automatically flush buffered metrics after a configured number of metric records. [(#2059)](https://github.com/getsentry/sentry-php/pull/2059)
11
+
12
+
```php
13
+
\Sentry\init([
14
+
'dsn' => '__YOUR_DSN__',
15
+
'metric_flush_threshold' => 50,
16
+
]);
17
+
```
18
+
19
+
### Bug Fixes
20
+
21
+
- Prevent PHP warnings when trying to increase the memory limit for out-of-memory error handling. [(#2063)](https://github.com/getsentry/sentry-php/pull/2063)
22
+
23
+
### Misc
24
+
25
+
- Use a `RingBuffer` for log storage when `log_flush_threshold` is not set to prevent unbounded memory growth, with a hard cap of 1000 records. [(#2058)](https://github.com/getsentry/sentry-php/pull/2058)
26
+
- Add `ext-excimer` as a Composer suggestion to surface its requirement for profiling. [(#2057)](https://github.com/getsentry/sentry-php/pull/2057)
27
+
3
28
## 4.24.0
4
29
5
30
The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.24.0.
0 commit comments