From 4890b17f569efea5e034e519dc883da53a67448d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 08:27:54 +0200 Subject: [PATCH] Update all non-major dependencies (#896) * Update all non-major dependencies | datasource | package | from | to | | ---------- | ------------------- | ------ | ------ | | packagist | infection/infection | 0.29.6 | 0.29.7 | | packagist | phpstan/phpstan | 1.12.5 | 1.12.6 | | packagist | phpunit/phpunit | 11.3.6 | 11.4.0 | * Update PHPUnit compatibility to 11.4.0 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Filippo Tessarotto --- composer.json | 12 ++++++------ src/WrapperRunner/ApplicationForWrapperWorker.php | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 71f5ed95..6dbee7f3 100644 --- a/composer.json +++ b/composer.json @@ -43,22 +43,22 @@ "phpunit/php-code-coverage": "^11.0.6", "phpunit/php-file-iterator": "^5.1.0", "phpunit/php-timer": "^7.0.1", - "phpunit/phpunit": "^11.3.6", + "phpunit/phpunit": "^11.4.0", "sebastian/environment": "^7.2.0", - "symfony/console": "^6.4.11 || ^7.1.4", - "symfony/process": "^6.4.8 || ^7.1.3" + "symfony/console": "^6.4.11 || ^7.1.5", + "symfony/process": "^6.4.8 || ^7.1.5" }, "require-dev": { "ext-pcov": "*", "ext-posix": "*", "doctrine/coding-standard": "^12.0.0", - "infection/infection": "^0.29.6", - "phpstan/phpstan": "^1.12.5", + "infection/infection": "^0.29.7", + "phpstan/phpstan": "^1.12.6", "phpstan/phpstan-deprecation-rules": "^1.2.1", "phpstan/phpstan-phpunit": "^1.4.0", "phpstan/phpstan-strict-rules": "^1.6.1", "squizlabs/php_codesniffer": "^3.10.3", - "symfony/filesystem": "^6.4.9 || ^7.1.2" + "symfony/filesystem": "^6.4.9 || ^7.1.5" }, "autoload": { "psr-4": { diff --git a/src/WrapperRunner/ApplicationForWrapperWorker.php b/src/WrapperRunner/ApplicationForWrapperWorker.php index 1b76127e..54a91ec0 100644 --- a/src/WrapperRunner/ApplicationForWrapperWorker.php +++ b/src/WrapperRunner/ApplicationForWrapperWorker.php @@ -23,6 +23,7 @@ use PHPUnit\Runner\TestSuiteLoader; use PHPUnit\Runner\TestSuiteSorter; use PHPUnit\Runner\Version; +use PHPUnit\TestRunner\IssueFilter; use PHPUnit\TestRunner\TestResult\Facade as TestResultFacade; use PHPUnit\TextUI\Configuration\Builder; use PHPUnit\TextUI\Configuration\CodeCoverageFilterRegistry; @@ -206,7 +207,7 @@ private function bootstrap(): void if (isset($this->testdoxFile)) { $this->testdoxResultCollector = new TestResultCollector( EventFacade::instance(), - $this->configuration->source(), + new IssueFilter($this->configuration->source()), ); }