| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 4.23.0 source code.tar.gz | 2026-03-23 | 123.1 kB | |
| 4.23.0 source code.zip | 2026-03-23 | 194.6 kB | |
| README.md | 2026-03-23 | 720 Bytes | |
| Totals: 3 Items | 318.5 kB | 2 | |
The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.23.0.
Features
-
Add
OTLPIntegrationsupport to interoperate with OpenTelemetry traces. (#2030):::php \Sentry\init([ 'dsn' => 'YOUR_DSN', 'integrations' => [ new \Sentry\Integration\OTLPIntegration(), ], ]);
-
Add
log_flush_thresholdto automatically flush buffered logs after a configured number of log records. (#2032):::php \Sentry\init([ 'dsn' => 'YOUR_DSN', 'enable_logs' => true, 'log_flush_threshold' => 20, ]);