The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.10.1.
- Fixed a PHP 8.4 deprecation notice (#954)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.10.0.
- The SDK was updated to support PHP 8.4 (#952)
- The SDK does no longer emit Metrics. All public Metrics APIs are now no-op, internal APIs were removed (#951)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.9.0.
-
Allow the cache store used by the console scheduling integration to be overridden (#942)
-
Set
http
breadcrumb levels based on response code (#940)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.8.0.
-
Fix
php artisan sentry:publish
mangling the .env file (#928) -
Fix not (correctly) reporting transactions when using Laravel Octane (#936)
-
Improve the stacktrace of the
php artisan sentry:test
event (#926) -
Remove outdated JS SDK installation step from
php artisan sentry:publish
(#930)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.7.1.
- 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)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.7.0.
-
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'
.
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.6.1.
- Fix wrong queue grouping in the queue Insights Module (#910)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.6.0.
-
Add support for the Queue Insights Module (#902). To learn more about this module, visit https://docs.sentry.io/product/performance/queue-monitoring/.
Queue tracing is enabled by default for new SDK installations. To enable this feature in your existing installation, update your
config/sentry.php
file with'queue_jobs' => env('SENTRY_TRACE_QUEUE_JOBS_ENABLED', true),
or setSENTRY_TRACE_QUEUE_JOBS_ENABLED=true
in your environment (#903)
-
Check if a span is sampled before creating child spans (#898)
-
Always register the console
sentryMonitor()
macro. This fixes the macro not being available when using Laravel Lumen (#900) -
Avoid manipulating the config when resolving disks (#901)
- Various Spotlight improvements, such as the addition of a new
SENTRY_SPOTLIGHT
environment variable and not requiring a DSN to be set to use Spotlight (#892)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.5.1.
- Fix discarded attribute violation reporter not accepting multiple property names (#890)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.5.0.
-
Limit when SQL query origins are being captured (#881)
We now only capture the origin of a SQL query when the query is slower than 100ms, configurable by the
SENTRY_TRACE_SQL_ORIGIN_THRESHOLD_MS
environment variable. -
Add tracing and breadcrumbs for Notifications (#852)
-
Add reporter for
Model::preventAccessingMissingAttributes()
(#824) -
Make it easier to enable the debug logger (#880)
You can now enable the debug logger by adding the following to your
config/sentry.php
file:'logger' => Sentry\Logger\DebugFileLogger::class, // This will log SDK logs to `storage_path('logs/sentry.log')`
Only use this in development and testing environments, as it can generate a lot of logs.
-
Fix Lighthouse operation not detected when query contained a fragment before the operation (#883)
-
Fix an exception being thrown when the username extracted from the authenticated user model is not a string (#887)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.4.1.
- Fix
assertExists
/assertMissing
can throw on theFilesystemDecorator
(#877)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.4.0.
-
Add support for Laravel 11 Context (#869)
If you are using Laravel 11 and the new "Context" capabilities we now automatically capture that context for you and it will be visible in Sentry. Read more about the feature in the Laravel documentation and how to use it.
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.3.1.
- Add missing methods to
FilesystemDecorator
(#865)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.3.0.
-
Add support for Laravel 11.0 (#845)
If you're upgrading an existing Laravel 10 application to the new Laravel 11 directory structure, you must change how Sentry integrates into the exception handler. Update your
bootstrap/app.php
with:<?php use Illuminate\Foundation\Application; use Illuminate\Foundation\Configuration\Exceptions; use Illuminate\Foundation\Configuration\Middleware; use Sentry\Laravel\Integration; return Application::configure(basePath: dirname(__DIR__)) ->withRouting( web: __DIR__.'/../routes/web.php', commands: __DIR__.'/../routes/console.php', health: '/up', ) ->withMiddleware(function (Middleware $middleware) { // }) ->withExceptions(function (Exceptions $exceptions) { Integration::handles($exceptions); })->create();
If you plan to perform up-time checks against the new Laravel 11
/up
health URL, ignore this transaction in yourconfig/sentry.php
file, as not doing so could consume a substantial amount of your performance unit quota.// @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#ignore-transactions 'ignore_transactions' => [ // Ignore Laravel's default health URL '/up', ],
-
Set
queue.publish
spans as the parent ofqueue.process
spans (#850) -
Consider all
http_*
SDK options from the Laravel client in the test command (#859)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.2.0.
-
Add new spans, measuring the time taken to queue a job (#833)
-
Add support for
failure_issue_threshold
&recovery_threshold
forsentryMonitor()
method on scheduled commands (#838) -
Automatically flush metrics when the application terminates (#841)
-
Add support for the W3C traceparent header (#834)
-
Improve
php artisan sentry:test
to show internal log messages by default (#842)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.1.2.
-
Fix unable to set
callable
forintegrations
option (#826) -
Fix performance traces not being collected for Laravel Lumen unless missing routes are reported (#822)
-
Fix configuration options for queue job tracing not applying correctly (#820)
- Allow newer versions of
symfony/psr-http-message-bridge
dependency (#829)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.1.1.
-
Fix missing
sentryMonitor()
macro when command is called outside the CLI environment (#812) -
Don't call
terminating()
in Lumen apps below 9.1.4 (#815)
The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.1.0.
-
Capture SQL query bindings (parameters) in SQL query spans (#804)
To enable this feature, update your
config/sentry.php
file or set theSENTRY_TRACE_SQL_BINDINGS_ENABLED
environment variable totrue
.'tracing' => [ 'sql_bindings' => true, ],
- Unify backtrace origin span attributes (#803)
- Add
ignore_exceptions
&ignore_transactions
to default config (#802)
The Sentry SDK team is thrilled to announce the immediate availability of Sentry Laravel SDK v4.0.0.
This version adds support for the underlying Sentry PHP SDK v4.0. Please refer to the PHP SDK sentry-php/UPGRADE-4.0.md guide for a complete list of breaking changes.
-
This version exclusively uses the envelope endpoint to send event data to Sentry.
If you are using sentry.io, no action is needed. If you are using an on-premise/self-hosted installation of Sentry, the minimum requirement is now version
>= v20.6.0
. -
You need to have
ext-curl
installed to use the SDK. -
The
IgnoreErrorsIntegration
integration was removed. Use theignore_exceptions
option instead.// config/sentry.php 'ignore_exceptions' => [BadThingsHappenedException::class],
This option performs an
is_a
check now, so you can also ignore more generic exceptions.
-
Enable distributed tracing for outgoing HTTP client requests (#797)
This feature is only available on Laravel >= 10.14. When making a request using the Laravel
Http
facade, we automatically attach thesentry-trace
andbaggage
headers.This behaviour can be controlled by setting
trace_propagation_targets
in yourconfig/sentry.php
file.// config/sentry.php // All requests will contain the tracing headers. This is the default behaviour. 'trace_propagation_targets' => null, // To turn this feature off completely, set the option to an empty array. 'trace_propagation_targets' => [], // To only attach these headers to some requests, you can allow-list certain hosts. 'trace_propagation_targets' => [ 'examlpe.com', 'api.examlpe.com', ],
Please make sure to remove any custom code that injected these headers previously. If you are using the
Sentry\Tracing\GuzzleTracingMiddleware
provided by our underlying PHP SDK, you must also remove it. -
Add support for Laravel Livewire 3 (#798)
The SDK now creates traces and breadcrumbs for Livewire 3 as well. Both the class-based and Volt usage are supported.
// config/sentry.php 'breadcrumbs' => [ // Capture Livewire components in breadcrumbs 'livewire' => true, ], 'tracing' => [ // Capture Livewire components as spans 'livewire' => true, ],
-
Add new fluent APIs (#1601)
// Before $spanContext = new SpanContext(); $spanContext->setDescription('myFunction'); $spanContext->setOp('function'); // After $spanContext = (new SpanContext()) ->setDescription('myFunction'); ->setOp('function');
-
Simplify the breadcrumb API (#1603)
// Before \Sentry\addBreadcrumb( new \Sentry\Breadcrumb( \Sentry\Breadcrumb::LEVEL_INFO, \Sentry\Breadcrumb::TYPE_DEFAULT, 'auth', // category 'User authenticated', // message (optional) ['user_id' => $userId] // data (optional) ) ); // After \Sentry\addBreadcrumb( category: 'auth', message: 'User authenticated', // optional metadata: ['user_id' => $userId], // optional level: Breadcrumb::LEVEL_INFO, // set by default type: Breadcrumb::TYPE_DEFAULT, // set by default );
-
New default cURL HTTP client (#1589)
- The abandoned package
php-http/message-factory
was removed.