Releases: getsentry/sentry-laravel
Releases · getsentry/sentry-laravel
4.25.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.25.0.
Features
- Add support for the PHP SDK's
OTLPIntegration. (#1122) - Add
SentryTracesSampleRatejob middleware to control trace sampling for individual jobs. (#1114)
Bug Fixes
- Preserve scope tags and context configured in
withExceptions(..)callbacks for unhandled console exceptions. (#1125)
4.24.0
4.23.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.23.0.
Features
- Add
strict_trace_continuationsupport to only continue incoming traces when the upstream baggageorg_idmatches the SDK org ID. (#1106)
Bug Fixes
- Cast authenticated user email attributes to strings when populating the Sentry user scope (#1101)
Misc
- Bump the PHP SDK to version
4.22.0(#1106)
4.22.0
4.21.1
4.21.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.21.0.
Features
- Use Laravel Context to pass check-in IDs between processes (#1084)
Bug Fixes
- Explicitly escape
sentry-traceandbaggageheaders (#1091) - Add
preg_quotefor environment variables (#1093)
Misc
- Bump the PHP SDK to version
4.21.0(#1095)
4.20.1
4.20.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.20.0.
Features
- Add support for Sentry metrics. (#1072)
// Counter metric
\Sentry\trace_metrics()->count('test-counter', 10, ['my-attribute' => 'foo']);
// Gauge metric
\Sentry\trace_metrics()->gauge('test-gauge', 50.0, ['my-attribute' => 'foo'], \Sentry\Unit::millisecond());
// Distribution metric
\Sentry\trace_metrics()->distribution('test-distribution', 20.0, ['my-attribute' => 'foo'], \Sentry\Unit::kilobyte());Misc
- Simplify usage of E_ALL (#1067)
4.19.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.19.0.
Features
-
Add Laravel Pennant feature flags (#1061)
The SDK will now automatically capture feature flags resolved using Laravel Pennant and attach them to events and spans.
Bug Fixes
- Do not try to detect the session key on the CLI (#1058)
4.18.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.18.0.
Bug Fixes
- Ensure we flush logs when the application unexpectedly terminates (#1052)