Skip to content

Commit 0b18fea

Browse files
Merge branch '11.5' into 12.3
2 parents 6ce2932 + fc44414 commit 0b18fea

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

ChangeLog-12.3.md

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

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

5+
## [12.3.3] - 2025-08-11
6+
7+
### Fixed
8+
9+
* [#6304](https://github.com/sebastianbergmann/phpunit/issues/6304): PHPUnit 11.5.29 hangs when a test runner deprecation is triggered and process isolation is used (this reverts "`#[IgnorePhpunitDeprecations]` is now considered for test runner deprecations" from PHPUnit 12.3.1)
10+
511
## [12.3.2] - 2025-08-10
612

713
### Changed
@@ -48,6 +54,7 @@ All notable changes of the PHPUnit 12.3 release series are documented in this fi
4854
* [#6229](https://github.com/sebastianbergmann/phpunit/issues/6229): `Configuration::excludeTestSuite()`, use `Configuration::excludeTestSuites()` instead
4955
* [#6246](https://github.com/sebastianbergmann/phpunit/issues/6246): Using `#[CoversNothing]` on a test method
5056

57+
[12.3.3]: https://github.com/sebastianbergmann/phpunit/compare/12.3.2...12.3.3
5158
[12.3.2]: https://github.com/sebastianbergmann/phpunit/compare/12.3.1...12.3.2
5259
[12.3.1]: https://github.com/sebastianbergmann/phpunit/compare/12.3.0...12.3.1
5360
[12.3.0]: https://github.com/sebastianbergmann/phpunit/compare/12.2.9...12.3.0

src/Event/Emitter/DispatchingEmitter.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,13 +1333,6 @@ public function testRunnerFinishedStaticAnalysisForCodeCoverage(int $cacheHits,
13331333
*/
13341334
public function testRunnerTriggeredPhpunitDeprecation(string $message): void
13351335
{
1336-
try {
1337-
if (TestMethodBuilder::fromCallStack()->metadata()->isIgnorePhpunitDeprecations()->isNotEmpty()) {
1338-
return;
1339-
}
1340-
} catch (NoTestCaseObjectOnCallStackException) {
1341-
}
1342-
13431336
$this->dispatcher->dispatch(
13441337
new TestRunner\DeprecationTriggered(
13451338
$this->telemetryInfo(),

0 commit comments

Comments
 (0)