File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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
535The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v5.5.0.
You can’t perform that action at this time.
0 commit comments