Skip to content

Commit e86bec3

Browse files
committed
release: 4.3.0
1 parent 58b8f3c commit e86bec3

5 files changed

Lines changed: 9 additions & 6 deletions

File tree

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
"pestphp/pest-plugin-arch": "^4.0.0",
2626
"pestphp/pest-plugin-mutate": "^4.0.1",
2727
"pestphp/pest-plugin-profanity": "^4.2.1",
28-
"phpunit/phpunit": "^12.5.3",
28+
"phpunit/phpunit": "^12.5.4",
2929
"symfony/process": "^7.4.0|^8.0.0"
3030
},
3131
"conflict": {
3232
"filp/whoops": "<2.18.3",
33-
"phpunit/phpunit": ">12.5.3",
33+
"phpunit/phpunit": ">12.5.4",
3434
"sebastian/exporter": "<7.0.0",
3535
"webmozart/assert": "<1.11.0"
3636
},
@@ -58,7 +58,7 @@
5858
"pestphp/pest-dev-tools": "^4.0.0",
5959
"pestphp/pest-plugin-browser": "^4.1.1",
6060
"pestphp/pest-plugin-type-coverage": "^4.0.3",
61-
"psy/psysh": "^0.12.17"
61+
"psy/psysh": "^0.12.18"
6262
},
6363
"minimum-stability": "dev",
6464
"prefer-stable": true,

rector.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use Rector\CodingStyle\Rector\ArrowFunction\ArrowFunctionDelegatingCallToFirstClassCallableRector;
66
use Rector\Config\RectorConfig;
7+
use Rector\DeadCode\Rector\ClassMethod\RemoveParentDelegatingConstructorRector;
78
use Rector\TypeDeclaration\Rector\ClassMethod\NarrowObjectReturnTypeRector;
89
use Rector\TypeDeclaration\Rector\ClassMethod\ReturnNeverTypeRector;
910

@@ -16,6 +17,7 @@
1617
ReturnNeverTypeRector::class,
1718
ArrowFunctionDelegatingCallToFirstClassCallableRector::class,
1819
NarrowObjectReturnTypeRector::class,
20+
RemoveParentDelegatingConstructorRector::class,
1921
])
2022
->withPreparedSets(
2123
deadCode: true,

src/Pest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
function version(): string
88
{
9-
return '4.2.0';
9+
return '4.3.0';
1010
}
1111

1212
function testDirectory(string $file = ''): string

tests/.pest/snapshots/Visual/Help/visual_snapshot_of_help_command_output.snap

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
Pest Testing Framework 4.2.0.
2+
Pest Testing Framework 4.3.0.
33

44
USAGE: pest <file> [options]
55

@@ -27,6 +27,7 @@
2727
--pr .... Output to standard output tests with the given pull request number
2828
--pull-request Output to standard output tests with the given pull request number (alias for --pr)
2929
--retry Run non-passing tests first and stop execution upon first error or failure
30+
--dirty ...... Only run tests that have uncommitted changes according to Git
3031
--all .................... Ignore test selection from XML configuration file
3132
--list-suites ................................... List available test suites
3233
--testsuite [name] ......... Only run tests from the specified test suite(s)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

2-
Pest Testing Framework 4.2.0.
2+
Pest Testing Framework 4.3.0.
33

0 commit comments

Comments
 (0)