Skip to content

Commit f38b74e

Browse files
authored
Merge pull request #16 from digipolisgent/feature/fix-deprecations-level
Fix allowed number of deprecation errors
2 parents 94296b9 + 477e53c commit f38b74e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All Notable changes to the **Quality Assurance - Drupal** package.
44

5+
## [1.4.6]
6+
7+
### Fixed
8+
9+
- Fix allowed number of deprecation errors.
10+
511
## [1.4.5]
612

713
### Fixed
@@ -185,6 +191,7 @@ Initial setup of the qa-drupal package:
185191
- Default config files and checks for a Drupal site.
186192
- Default config files and checks for a Drupal module.
187193

194+
[1.4.6]: https://github.com/digipolisgent/php_package_qa-drupal/compare/1.4.5...1.4.6
188195
[1.4.5]: https://github.com/digipolisgent/php_package_qa-drupal/compare/1.4.4...1.4.5
189196
[1.4.4]: https://github.com/digipolisgent/php_package_qa-drupal/compare/1.4.3...1.4.4
190197
[1.4.3]: https://github.com/digipolisgent/php_package_qa-drupal/compare/1.4.2...1.4.3

configs/phpunit-extension.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
beStrictAboutChangesToGlobalState="true">
99

1010
<php>
11-
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
11+
<!--
12+
We allow 2 deprecations due to Drupal 8.x deprecated usage of Symfony
13+
components. Drupal 9.x should only have 1.
14+
-->
15+
<env name="SYMFONY_DEPRECATIONS_HELPER" value="3" />
1216

1317
<ini name="error_reporting" value="32767" />
1418
<ini name="memory_limit" value="-1" />

0 commit comments

Comments
 (0)