Compare commits

...

4 Commits

Author SHA1 Message Date
436b20857d docs: updates changelog 2023-06-02 22:46:07 +01:00
82b0adf5ae release: v2.6.2 2023-06-02 22:43:42 +01:00
a0041f139c chore: bumps phpunit dependency 2023-06-02 22:40:46 +01:00
b25bc7ee05 docs: updates changelog 2023-05-12 09:23:13 +01:00
6 changed files with 14 additions and 8 deletions

View File

@ -2,10 +2,16 @@
## Unreleased
## [v2.6.2 (2023-06-02)](https://github.com/pestphp/pest/compare/v2.6.1...v2.6.2)
### Chore
- Bumps PHPUnit to `^10.2.0` ([a0041f1](https://github.com/pestphp/pest/commit/a0041f139cba94fe5d15318c38e275f2e2fb3350))
## [v2.6.1 (2023-04-12)](https://github.com/pestphp/pest/compare/v2.6.0...v2.6.1)
### Fixes
- PHPStorm issue output problem for tests throwing an exception before the first assertion ([#809](https://github.com/pestphp/pest/pull/809))
- Allow traits to be covered ([#804](https://github.com/pestphp/pest/pull/804))
### Chore
- Bumps PHPUnit to `^10.1.3` ([c993252](https://github.com/pestphp/pest/commit/c99325275acf1fd3759b487b93ec50473f706709))

View File

@ -23,11 +23,11 @@
"nunomaduro/termwind": "^1.15.1",
"pestphp/pest-plugin": "^2.0.1",
"pestphp/pest-plugin-arch": "^2.1.2",
"phpunit/phpunit": "^10.1.3"
"phpunit/phpunit": "^10.2.0"
},
"conflict": {
"webmozart/assert": "<1.11.0",
"phpunit/phpunit": ">10.1.3"
"phpunit/phpunit": ">10.2.0"
},
"autoload": {
"psr-4": {
@ -50,7 +50,7 @@
},
"require-dev": {
"pestphp/pest-dev-tools": "^2.9.0",
"symfony/process": "^6.2.10"
"symfony/process": "^6.3.0"
},
"minimum-stability": "stable",
"config": {

View File

@ -6,7 +6,7 @@ namespace Pest;
function version(): string
{
return '2.6.1';
return '2.6.2';
}
function testDirectory(string $file = ''): string

View File

@ -1,5 +1,5 @@
Pest Testing Framework 2.6.1.
Pest Testing Framework 2.6.2.
USAGE: pest <file> [options]

View File

@ -170,7 +170,7 @@
DEPR Tests\Features\Deprecated
! deprecated → str_contains(): Passing null to parameter #1 ($haystack) of type string is deprecated // tests/Features/Deprecated.php:6
user deprecated
! user deprecated → Since foo 1.0: This is a deprecation description // vendor/symfony/deprecation-contracts/function.php:25
PASS Tests\Features\Exceptions
✓ it gives access the the underlying expectException
@ -1035,4 +1035,4 @@
PASS Tests\Visual\Version
✓ visual snapshot of help command output
Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 17 skipped, 716 passed (1729 assertions)
Tests: 2 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 17 skipped, 715 passed (1729 assertions)

View File

@ -1,3 +1,3 @@
Pest Testing Framework 2.6.1.
Pest Testing Framework 2.6.2.