Releases: getsentry/sentry-laravel
Releases · getsentry/sentry-laravel
4.12.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.12.0.
Features
-
Improve generation of slug for scheduled job cron monitoring (#977)
For scheduled jobs it's no longer needed to manually provide a slug to the ->sentryMonitor()
call, it will be derived from the job class name.
Bug Fixes
- Fix unable to parse notifiable (#974)
- Fix triggering a missing attribute violation (#978)
Misc
-
Disable scheduled task tracing for backgrounded tasks (#975)
Backgrounded tasks show up a ~1ms transactions right now because we are effectively monitoring the time it takes to start the background process instead of the execution.
We are working on a solution to this problem, but in the meantime, we are disabling the monitoring of backgrounded tasks (that was introduces in 4.11.0).
4.11.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.11.0.
Features
- Add Scheduled Task Tracing (#968)
Bug Fixes
- Fix retry count for queued jobs (#967)
4.10.2
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.10.2.
Bug Fixes
- Fixed a PHP 8.4 deprecation notice when running
php artisan sentry:test
(#963)
4.10.1
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.10.1.
Bug Fixes
- Fixed a PHP 8.4 deprecation notice (#954)
4.10.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.10.0.
Features
- The SDK was updated to support PHP 8.4 (#952)
Misc
- The SDK does no longer emit Metrics. All public Metrics APIs are now no-op, internal APIs were removed (#951)
4.9.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.9.0.
Misc
4.8.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.8.0.
Bug Fixes
Misc
4.7.1
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.7.1.
Bug Fixes
- Always remove the
XSRF-TOKEN
cookie value before sending to Sentry (#920)
- Fix trace durations when using Octane (#921)
- Handle clousre route names (#921)
- Don't rely on facades when accessing the Laravel context (#922)
- Normalize array of cache key names before converting to string (#923)
4.7.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.7.0.
Features
-
Add support for Cache Insights Module (#914). To learn more about this module, visit https://docs.sentry.io/product/insights/caches/. This feature requires Laravel v11.11.0 or higher.
Cache tracing is enabled by default for new SDK installations. To enable this feature in your existing installation, update your config/sentry.php
file with 'cache' => env('SENTRY_TRACE_CACHE_ENABLED', true),
under 'tracing'
.
4.6.1
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.6.1.
Bug Fixes
- Fix wrong queue grouping in the queue Insights Module (#910)