3.17.0
The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.17.0.
Features
-
Add
ignore_exceptions&ignore_transactionsoptions (#1503)We deprecated the IgnoreErrorsIntegration in favor of this new option.
The option will also take previous exceptions into account.\Sentry\init([ 'ignore_exceptions' => [BadThingsHappenedException::class], ]);
To ignore a transaction being sent to Sentry, add its name to the config option.
You can find the transaction name on the Performance page.\Sentry\init([ 'ignore_transactions' => ['GET /health'], ]);
Misc
-
Bump
php-http/discoveryto^1.15(#1504)You may need to allow the added composer plugin, introduced in
php-http/discovery v1.15.0, to execute when runningcomposer update.
We previously pinned this package to version<1.15.
Due to conflicts with other packages, we decided to lift this restriction.