Skip to content

Commit 5ee57ad

Browse files
Prepare release
1 parent b65b68d commit 5ee57ad

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

ChangeLog-12.1.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22

33
All notable changes of the PHPUnit 12.1 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5-
## [12.1.4] - 2025-MM-DD
5+
## [12.1.4] - 2025-05-02
66

77
### Added
88

99
* `displayDetailsOnAllIssues` attribute on the `<phpunit>` element of the XML configuration file and `--display-all-issues` CLI option for controlling whether PHPUnit should display details on all issues that are triggered (default: `false`)
1010
* `failOnAllIssues` attribute on the `<phpunit>` element of the XML configuration file and `--fail-on-all-issues` CLI option for controlling whether PHPUnit should fail on all issues that are triggered (default: `false`)
1111

12+
### Changed
13+
14+
* [#5956](https://github.com/sebastianbergmann/phpunit/issues/5956): Improved handling of deprecated `E_STRICT` constant
15+
1216
### Fixed
1317

1418
* [#6192](https://github.com/sebastianbergmann/phpunit/issues/6192): Positive `%a` and `%A` matches are not ignored from diff when `EXPECTF` fails
@@ -56,7 +60,7 @@ All notable changes of the PHPUnit 12.1 release series are documented in this fi
5660

5761
* [#6140](https://github.com/sebastianbergmann/phpunit/issues/6140): The `testClassName()` method on the `AfterTestMethodCalled`, `AfterTestMethodErrored`, `AfterTestMethodFinished`, `BeforeTestMethodCalled`, `BeforeTestMethodErrored`, `BeforeTestMethodFinished`, `PostConditionCalled`, `PostConditionErrored`, `PostConditionFinished`, `PreConditionCalled`, `PreConditionErrored`, and `PreConditionFinished` event value objects (use `test()->className()` instead)
5862

59-
[12.1.4]: https://github.com/sebastianbergmann/phpunit/compare/12.1.3...12.1
63+
[12.1.4]: https://github.com/sebastianbergmann/phpunit/compare/12.1.3...12.1.4
6064
[12.1.3]: https://github.com/sebastianbergmann/phpunit/compare/12.1.2...12.1.3
6165
[12.1.2]: https://github.com/sebastianbergmann/phpunit/compare/12.1.1...12.1.2
6266
[12.1.1]: https://github.com/sebastianbergmann/phpunit/compare/12.1.0...12.1.1

src/Runner/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static function id(): string
3434
}
3535

3636
if (self::$version === '') {
37-
self::$version = (new VersionId('12.1.3', dirname(__DIR__, 2)))->asString();
37+
self::$version = (new VersionId('12.1.4', dirname(__DIR__, 2)))->asString();
3838
}
3939

4040
return self::$version;

0 commit comments

Comments
 (0)