Skip to content

Commit 807babb

Browse files
Merge branch '11.5' into 12.1
2 parents d596ba6 + dbb2c58 commit 807babb

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog-12.1.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.1 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5+
## [12.1.6] - 2025-MM-DD
6+
7+
### Changed
8+
9+
* [#6210](https://github.com/sebastianbergmann/phpunit/pull/6210): Set default Clover coverage project name
10+
511
## [12.1.5] - 2025-05-11
612

713
### Fixed
@@ -67,6 +73,7 @@ All notable changes of the PHPUnit 12.1 release series are documented in this fi
6773

6874
* [#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)
6975

76+
[12.1.6]: https://github.com/sebastianbergmann/phpunit/compare/12.1.5...12.1
7077
[12.1.5]: https://github.com/sebastianbergmann/phpunit/compare/12.1.4...12.1.5
7178
[12.1.4]: https://github.com/sebastianbergmann/phpunit/compare/12.1.3...12.1.4
7279
[12.1.3]: https://github.com/sebastianbergmann/phpunit/compare/12.1.2...12.1.3

src/Runner/CodeCoverage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public function generateReports(Printer $printer, Configuration $configuration):
287287

288288
try {
289289
$writer = new CloverReport;
290-
$writer->process($this->codeCoverage(), $configuration->coverageClover());
290+
$writer->process($this->codeCoverage(), $configuration->coverageClover(), 'Clover Coverage');
291291

292292
$this->codeCoverageGenerationSucceeded($printer);
293293

0 commit comments

Comments
 (0)