Skip to content

Commit 434e60a

Browse files
authored
Prepare 4.13.0 (#1856)
1 parent 7758c22 commit 434e60a

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# CHANGELOG
22

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+
331
## 4.12.0
432

533
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
86114

87115
### Features
88116

89-
- Allow retrieving a single piece of data from the span by its 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)
90118

91119
```php
92120
\Sentry\SentrySdk::getCurrentHub()->getSpan()?->setData([

0 commit comments

Comments
 (0)