Skip to content

Commit c54fcf3

Browse files
Prepare release
1 parent 5b896d7 commit c54fcf3

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

ChangeLog-12.5.md

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

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

5+
## [12.5.23] - 2026-04-18
6+
7+
### Changed
8+
9+
* Pass `LIBXML_NONET` when parsing/validating XML configuration files to make explicit that no network I/O is performed
10+
* Verify the result file written by an isolated child process with a random nonce before deserializing it
11+
512
## [12.5.22] - 2026-04-17
613

714
### Fixed
@@ -201,6 +208,7 @@ All notable changes of the PHPUnit 12.5 release series are documented in this fi
201208
* [#6380](https://github.com/sebastianbergmann/phpunit/pull/6380): Allow `Throwable` in `expectExceptionObject()`
202209
* A PHPUnit notice is now emitted for test methods that create a mock object but do not configure an expectation for it
203210

211+
[12.5.23]: https://github.com/sebastianbergmann/phpunit/compare/12.5.22...12.5.23
204212
[12.5.22]: https://github.com/sebastianbergmann/phpunit/compare/12.5.21...12.5.22
205213
[12.5.21]: https://github.com/sebastianbergmann/phpunit/compare/12.5.20...12.5.21
206214
[12.5.20]: https://github.com/sebastianbergmann/phpunit/compare/12.5.19...12.5.20

src/Runner/Version.php

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

3737
if (self::$version === '') {
38-
self::$version = (new VersionId('12.5.22', dirname(__DIR__, 2)))->asString();
38+
self::$version = (new VersionId('12.5.23', dirname(__DIR__, 2)))->asString();
3939
}
4040

4141
return self::$version;

0 commit comments

Comments
 (0)