Skip to content

Commit 3acdc49

Browse files
authored
Prepare 5.6.0 (#962)
1 parent 927ea3e commit 3acdc49

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# CHANGELOG
22

3+
## 5.6.0
4+
5+
The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v5.6.0.
6+
7+
### Features
8+
9+
- Remove upper limit for `max_breadcrumbs` option. [(#953)](https://github.com/getsentry/sentry-symfony/pull/953)
10+
- Allow passing string and enum Monolog level. [(#959)](https://github.com/getsentry/sentry-symfony/pull/959)
11+
```yaml
12+
services:
13+
Sentry\SentryBundle\Monolog\LogsHandler:
14+
arguments:
15+
- 'info'
16+
```
17+
18+
```yaml
19+
# or using PSR constants
20+
services:
21+
Sentry\SentryBundle\Monolog\LogsHandler:
22+
arguments:
23+
- !php/const Psr\Log\LogLevel::INFO
24+
```
25+
26+
```php
27+
// or via PHP config
28+
$container->services()
29+
->set(\Sentry\SentryBundle\Monolog\LogsHandler::class)
30+
->args([\Monolog\Level::Info]);
31+
```
32+
333
## 5.5.0
434

535
The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v5.5.0.

0 commit comments

Comments
 (0)