Skip to content

Releases: paratestphp/paratest

Version 3.1.1

12 Nov 09:52
44695ab
Compare
Choose a tag to compare

Bugfixes / Other

  • #411 Support multiple TestCase error reports with system out. Thank you @Fedcomp
  • #406 Add phpcs to CI pipeline and adjust codestyle to PSR-12
  • Some old, unused code removed

Version 3.1.0

09 Oct 14:10
64768bf
Compare
Choose a tag to compare

New Features

  • #394 Add limit for tests recorded in coverage report with new command option --coverage-test-limit. Thank you @slt
  • #388 Log path of the test encountering a fatal error. Thank you @TysonAndre
  • #398 Allow iterable data providers. Thank you @thewilkybarkid

Bugfixes / Other

Version 3.0.0

18 Feb 05:00
0300c7c
Compare
Choose a tag to compare

New Features

Other

  • #371 Fix PHPUnitWarningsTest with PHPUnit dev version. Thank you @jdufresne

Version 2.2.0

28 Jan 08:53
6c35341
Compare
Choose a tag to compare

New Features

  • #349 Add "--parallel-suite" (run test suites in parallel) feature. Thank you @matthewnessworthy and @ThomasDelteil.
  • #359 Enable splitting "--testsuite" option by ",". Thank you @paslandau.
  • #361 Add "--passthru" (pass arguments to the test framework), "--passthru-php" (pass arguments to the PHP process) and "--verbose" (print debug output) features. Thank you @paslandau.
  • #363 Logfiles for WrapperRunner. Thank you @paslandau.

Important Changes

  • The default value of -p changes to auto (was 5 before). If you set the parameter before, you can just leave as is if it worked for you, if you didn't provide the parameter for execution, the default changed and you might see less or more processes now depending on the number of logical CPU cores you have (see Readme).

Improved Documentation

Especially regarding code coverage. Thank you @paslandau.

Version 2.1

09 Oct 17:50
c1e7c17
Compare
Choose a tag to compare

New Features

  • #336 Auto setting of process number, depending on CPU cores. Thank you @andrerom and also to @Nemo64.
  • #331 Support for PHPUnit XML Coverage. Thank you @PauliusB.
  • #322 Paratest now also available as Phar to avoid depencendy problems. Thank you @Gasol.

Important Changes

  • The default value of -p changes to auto (was 5 before). If you set the parameter before, you can just leave as is if it worked for you, if you didn't provide the parameter for execution, the default changed and you might see less or more processes now depending on the number of logical CPU cores you have (see Readme).

Fixes

  • #327 Execution of Paratest may fail under Windows. Thank you @mmeuser.
  • #318 Problems regarding environment variables. Thank you @bepsvpt.

2.0 - PHPUnit 7.0 compatibility

12 May 02:33
57eab83
Compare
Choose a tag to compare

This release supports PHPUnit 7.0.

1.1.0 - something

23 Jan 20:16
30f01df
Compare
Choose a tag to compare

see 1.0.1...1.1.0 for details.

// TODO write this changelog

use PHP_BINARY

02 Jul 14:15
Compare
Choose a tag to compare

Besides several internal changes, this release changes the way paratest detects the php binary it executes.
Now the internal php constant PHP_BINARY is used that should point to the binary used to start paratest itself.

Changes included in this release:

1.0.0 - PHPUnit 6 compatibility

18 Jun 10:24
Compare
Choose a tag to compare

With this release, we are dropping compatibility to PHPUnit 5 and below.
If you still need that, please use paratest 0.x (like 0.15.0 which supports phpunit 5).

1.0.0 doesn't mean Paratest is free of bugs, take a look at the issues for that. But paratest is used in production (like in productive development environments) and we try to keep backwards compatibility. While using semantic versioning, this major version gives us the power to express if changes break backwards compatibility or not by the version number itself and our users the power to expect working software by pinning to a major version number (>=1.0.0,<2.0.0).

Contained Changes since 0.15.0:

Thanks all contributors keeping this project alive.

0.15.0 - PHPUnit 5 RIP Release

13 Jun 20:13
Compare
Choose a tag to compare

This is going to be the last release supporting PHPUnit 5.
The namespace changes from PHPUnit 5 to 6 cannot be supported simultanuously by paratest, thus we are dropping support for PHPUnit 5 AFTER this release.

Contained changes:

  • #238 Switch to ubuntu trusty beta, to continue hhvm CI support in ~0.14 releases
  • #241 Allow multiple classes in one phpunit test file.

Thanks to @TysonAndre for the contribution.