diff --git a/CHANGELOG.md b/CHANGELOG.md index 56b4180..4ff06a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ ### Changed - Minimum `phpunit/php-code-coverage` version bumped to 10.1 +## [5.3.2.1] - 2024-09-15 +### Fixed +- Better handling of PCOV and Xdebug running side by side + ## [5.3.2] - 2023-12-09 ### Added - Support for Symfony 7 @@ -121,7 +125,8 @@ [Unreleased]: https://github.com/dvdoug/behat-code-coverage/compare/v5.3.4..master [5.3.4]: https://github.com/dvdoug/behat-code-coverage/compare/v5.3.3..v5.3.4 -[5.3.3]: https://github.com/dvdoug/behat-code-coverage/compare/v5.3.2..v5.3.3 +[5.3.3]: https://github.com/dvdoug/behat-code-coverage/compare/v5.3.2.1..v5.3.3 +[5.3.2.1]: https://github.com/dvdoug/behat-code-coverage/compare/v5.3.2..v5.3.2.1 [5.3.2]: https://github.com/dvdoug/behat-code-coverage/compare/v5.3.1..v5.3.2 [5.3.1]: https://github.com/dvdoug/behat-code-coverage/compare/v5.3.0..v5.3.1 [5.3.0]: https://github.com/dvdoug/behat-code-coverage/compare/v5.2.2..v5.3.0 diff --git a/src/Extension.php b/src/Extension.php index 3381605..96c7615 100644 --- a/src/Extension.php +++ b/src/Extension.php @@ -192,7 +192,7 @@ public function process(ContainerBuilder $container): void $canCollectCodeCoverage = true; try { - $this->initCodeCoverage(new Filter(), $filterConfig, null, $cacheDir, $output); + $this->initCodeCoverage(new Filter(), $filterConfig, $branchPathConfig, $cacheDir, $output); $codeCoverageDefinition = $container->getDefinition(CodeCoverage::class); $filterDefinition = $container->getDefinition(Filter::class);