Skip to content

Commit 8080be3

Browse files
Prepare release
1 parent d4eadba commit 8080be3

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

ChangeLog-10.5.md

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

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

5-
## [10.5.46] - 2025-MM-DD
5+
## [10.5.46] - 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+
* Improved message when test is considered risky for printing unexpected output
16+
1217
## [10.5.45] - 2025-02-06
1318

1419
### Changed
@@ -409,7 +414,7 @@ All notable changes of the PHPUnit 10.5 release series are documented in this fi
409414

410415
* [#5563](https://github.com/sebastianbergmann/phpunit/issues/5563): `createMockForIntersectionOfInterfaces()` does not automatically register mock object for expectation verification
411416

412-
[10.5.46]: https://github.com/sebastianbergmann/phpunit/compare/10.5.45...10.5
417+
[10.5.46]: https://github.com/sebastianbergmann/phpunit/compare/10.5.45...10.5.46
413418
[10.5.45]: https://github.com/sebastianbergmann/phpunit/compare/10.5.44...10.5.45
414419
[10.5.44]: https://github.com/sebastianbergmann/phpunit/compare/10.5.43...10.5.44
415420
[10.5.43]: https://github.com/sebastianbergmann/phpunit/compare/10.5.42...10.5.43

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('10.5.45', dirname(__DIR__, 2)))->asString();
37+
self::$version = (new VersionId('10.5.46', dirname(__DIR__, 2)))->asString();
3838
}
3939

4040
return self::$version;

0 commit comments

Comments
 (0)