Paraunit

Paraunit 2.11.0: `--stop-on-*` and `--display-*` options

With this new minor, I wanted to get out of the door a lot of usability features that I wanted to implement for so long. Now, all --stop-on-* and --display-* CLI options are available in Paraunit. I rushed this out because the next minor will require a huge bump on PHPUnit (13.1 will be the minimum), so I didn’t want to gatekeep those behind that update for the end users.

In addition, this version relaxes the constraints by no longer requiring ext-pcntl to be installed.

Paraunit 2.10.0: respect ignored test issues

With this new minor, we’re adding a new usability feature: we’re respecting PHPUnit suppression of issues, either if that happens via attributes or via baseline. Such information was already being propagated by PHPUnit’s event system, onto which Paraunit latches to work its magic.

Credits to @keradus, the maintainer of PHP-CS-Fixer (which uses Paraunit it its CI), for bringing this to my attention.

The obvious next step would be to support similar options for output coming from PHPUnit config of from –-display-* CLI options.

Paraunit 2.9.0: coverage cache warmup

With this new minor, we’re adding a small performance improvement for test coverage, by running phpunit -- before running all tests. This small feature should reduce tests execution time and avoid race conditions when the first batch of tests runs (and find the cache not ready).

Credits to Sebastian for pointing this out to me!

Paraunit 2.8.0: PHPUnit 13 support

With this new minor, we’re finally able to support the newly released PHPUnit 13 with Paraunit. This basically required no code changes apart from the composer.json constraints and a couple of tests adjustments, as a testament of the reliable integration strategy that I chose when integrating with it.

Paraunit 2.7.1: Symfony 8 support

This small new patch was triggered by a PR from a new contributor, Kocal, thank you! The fixes needed to make Paraunit compatible with Symfony 8 was a single line change (plus some more in the unit tests), which is impressive since now we support 5 different major versions, all across from 4.4 (which is EOL) up to 8.0!