File tree Expand file tree Collapse file tree 6 files changed +18
-3
lines changed Expand file tree Collapse file tree 6 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
- Upstream projects not having phpunit installed will install phpunit with an @stable version.
16
16
- Added support for Drupal configuration and templates.
17
17
- Migration docs for migration from v2 to v3 of the testing suite.
18
+ - Added support for an Allow List within the Security Checker.
18
19
19
20
### Changed
20
21
- [ BREAKING] The composer.json configurations ` config.youwe-testing-suite.type ` and ` config.mediact-testing-suite.type `
Original file line number Diff line number Diff line change 31
31
"kint-php/kint" : " @stable" ,
32
32
"php-parallel-lint/php-parallel-lint" : " ^1.4" ,
33
33
"phpmd/phpmd" : " ^2.15" ,
34
- "phpro/grumphp-shim" : " ^2.12 " ,
34
+ "phpro/grumphp-shim" : " ^2.15 " ,
35
35
"phpstan/phpstan" : " @stable" ,
36
36
"squizlabs/php_codesniffer" : " ^3.12.0" ,
37
37
"youwe/composer-dependency-installer" : " ^2.0" ,
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ parameters:
44
44
45
45
securitychecker.lockfile : ./composer.lock
46
46
securitychecker.run_always : true
47
+ securitychecker.allow_list : []
47
48
48
49
git_blacklist.keywords :
49
50
- " die("
@@ -132,3 +133,4 @@ grumphp:
132
133
securitychecker_enlightn :
133
134
lockfile : ' %securitychecker.lockfile%'
134
135
run_always : ' %securitychecker.run_always%'
136
+ allow_list : ' %securitychecker.allow_list%'
Original file line number Diff line number Diff line change 3
3
4
4
# Extend git triggers with common Drupal constructs
5
5
parameters :
6
- git_blacklist.triggered_by : [ 'php', 'js', 'twig' ]
6
+ git_blacklist.triggered_by : [ 'php', 'js', 'twig' ]
7
+
8
+ # securitychecker.allow_list:
9
+ # - CVE-2002-0121 # Add a jira ticket indicating when this vulnerability will be fixed (update/upgrade will be
10
+ # performed). Within that ticket explain this (new) vulnerability.
Original file line number Diff line number Diff line change @@ -17,3 +17,7 @@ parameters:
17
17
- " <?php echo"
18
18
- " Magento\\\\ Framework\\\\ App\\\\ ObjectManager"
19
19
git_blacklist.triggered_by : [ 'php', 'js', 'phtml' ]
20
+
21
+ # securitychecker.allow_list:
22
+ # - CVE-2002-0121 # Add a jira ticket indicating when this vulnerability will be fixed (update/upgrade will be
23
+ # performed). Within that ticket explain this (new) vulnerability.
Original file line number Diff line number Diff line change 3
3
4
4
# Extend git triggers with common pimcore constructs
5
5
parameters :
6
- git_blacklist.triggered_by : [ 'php', 'js', 'twig' ]
6
+ git_blacklist.triggered_by : [ 'php', 'js', 'twig' ]
7
+
8
+ # securitychecker.allow_list:
9
+ # - CVE-2002-0121 # Add a jira ticket indicating when this vulnerability will be fixed (update/upgrade will be
10
+ # performed). Within that ticket explain this (new) vulnerability.
You can’t perform that action at this time.
0 commit comments