The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.13.0.
Features
-
Add regex support for
ignore_exceptions
andignore_transactions
(#1850)You can now use regular expressions to ignore exceptions and transactions:
Sentry\init([ 'ignore_exceptions' => [ '/.*ArgumentException$/', ], 'ignore_transactions' => [ '/^GET \/api\/users\/\d+$/', ], ]);
-
Add support for variadic parameters and null values (#1849)