File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 4.13.0
4
+
5
+ The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.13.0.
6
+
7
+ ### Features
8
+
9
+ - Add regex support for ` ignore_exceptions ` and ` ignore_transactions ` [ (#1850 )] ( https://github.com/getsentry/sentry-php/pull/1850 )
10
+
11
+ You can now use regular expressions to ignore exceptions and transactions:
12
+
13
+ ``` php
14
+ Sentry\init([
15
+ 'ignore_exceptions' => [
16
+ '/.*ArgumentException$/',
17
+ ],
18
+ 'ignore_transactions' => [
19
+ '/^GET \/api\/users\/\d+$/',
20
+ ],
21
+ ]);
22
+ ```
23
+
24
+ - Add support for variadic parameters and null values [ (#1849 )] ( https://github.com/getsentry/sentry-php/pull/1849 )
25
+
26
+ ### Bug Fixes
27
+
28
+ - Fix ` Options::setEnableLogs ` [ (#1852 )] ( https://github.com/getsentry/sentry-php/pull/1852 )
29
+ - Fix ` vsprintf ` not handling errors [ (#1855 )] ( https://github.com/getsentry/sentry-php/pull/1855 )
30
+
3
31
## 4.12.0
4
32
5
33
The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v4.12.0.
@@ -86,7 +114,7 @@ The Sentry SDK team is happy to announce the immediate availability of Sentry PH
86
114
87
115
### Features
88
116
89
- - Allow retrieving a single piece of data from the span by it’ s key [ (#1767 )] ( https://github.com/getsentry/sentry-php/pull/1767 )
117
+ - Allow retrieving a single piece of data from the span by it' s key [ (#1767 )] ( https://github.com/getsentry/sentry-php/pull/1767 )
90
118
91
119
``` php
92
120
\Sentry\SentrySdk::getCurrentHub()->getSpan()?->setData([
You can’t perform that action at this time.
0 commit comments