Skip to content

Commit 24e6819

Browse files
Merge branch '10.5' into 11.4
2 parents 3f0b31f + d11dc31 commit 24e6819

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

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

5+
## [11.4.2] - 2024-MM-DD
6+
7+
### Fixed
8+
9+
* [#5982](https://github.com/sebastianbergmann/phpunit/pull/5982): Typo in exception message
10+
511
## [11.4.1] - 2024-10-08
612

713
### Changed
@@ -33,5 +39,6 @@ All notable changes of the PHPUnit 11.4 release series are documented in this fi
3339
* [#5958](https://github.com/sebastianbergmann/phpunit/issues/5958): Support for `#[CoversTrait]` and `#[UsesTrait]` attributes
3440
* [#5960](https://github.com/sebastianbergmann/phpunit/issues/5960): Support for targeting trait methods with the `#[CoversMethod]` and `#[UsesMethod]` attributes (and respective annotations)
3541

42+
[11.4.2]: https://github.com/sebastianbergmann/phpunit/compare/11.4.1...11.4
3643
[11.4.1]: https://github.com/sebastianbergmann/phpunit/compare/11.4.0...11.4.1
3744
[11.4.0]: https://github.com/sebastianbergmann/phpunit/compare/11.3.6...11.4.0

src/TextUI/Configuration/Xml/Migration/Migrator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function migrate(string $filename): string
3232
$origin = (new SchemaDetector)->detect($filename);
3333

3434
if (!$origin->detected()) {
35-
throw new Exception('The file does not validate against any know schema');
35+
throw new Exception('The file does not validate against any known schema');
3636
}
3737

3838
if ($origin->version() === Version::series()) {

tests/end-to-end/migration/unsupported-schema.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require_once __DIR__ . '/../../bootstrap.php';
1515
PHPUnit %s by Sebastian Bergmann and contributors.
1616

1717
Migration of %s failed:
18-
The file does not validate against any know schema
18+
The file does not validate against any known schema
1919
--CLEAN--
2020
<?php declare(strict_types=1);
2121
unlink(sys_get_temp_dir() . '/phpunit.xml');

0 commit comments

Comments
 (0)