File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 21
21
"require" : {
22
22
"php" : " ^7.1" ,
23
23
"jean85/pretty-package-versions" : " ^1.0" ,
24
- "sentry/sentry" : " ^1.8 " ,
24
+ "sentry/sentry" : " ^1.9 " ,
25
25
"symfony/config" : " ^3.0||^4.0" ,
26
26
"symfony/console" : " ^3.3||^4.0" ,
27
27
"symfony/dependency-injection" : " ^3.0||^4.0" ,
Original file line number Diff line number Diff line change @@ -72,6 +72,9 @@ public function getConfigTreeBuilder()
72
72
->arrayNode ('exclude ' )
73
73
->prototype ('scalar ' )->end ()
74
74
->end ()
75
+ ->arrayNode ('excluded_exceptions ' )
76
+ ->prototype ('scalar ' )->end ()
77
+ ->end ()
75
78
->scalarNode ('http_proxy ' )->defaultNull ()->end ()
76
79
->arrayNode ('extra ' )
77
80
->prototype ('scalar ' )->end ()
Original file line number Diff line number Diff line change 17
17
18
18
class SentryExtensionTest extends TestCase
19
19
{
20
- private const SUPPORTED_SENTRY_OPTIONS_COUNT = 34 ;
20
+ private const SUPPORTED_SENTRY_OPTIONS_COUNT = 35 ;
21
21
private const LISTENER_TEST_PUBLIC_ALIAS = 'sentry.exception_listener.public_alias ' ;
22
22
23
23
public function test_that_configuration_uses_the_right_default_values ()
@@ -323,6 +323,10 @@ public function test_that_it_sets_all_sentry_options()
323
323
'test1 ' ,
324
324
'test2 ' ,
325
325
],
326
+ 'excluded_exceptions ' => [
327
+ 'test3 ' ,
328
+ 'test4 ' ,
329
+ ],
326
330
'http_proxy ' => 'http_proxy ' ,
327
331
'extra ' => [
328
332
'extra1 ' => 'extra1 ' ,
You can’t perform that action at this time.
0 commit comments