diff --git a/ChangeLog-10.5.md b/ChangeLog-10.5.md index 2ee9d73a0c..e64fa6cccb 100644 --- a/ChangeLog-10.5.md +++ b/ChangeLog-10.5.md @@ -6,7 +6,7 @@ All notable changes of the PHPUnit 10.5 release series are documented in this fi ### Deprecated -* [#5812](https://github.com/sebastianbergmann/phpunit/pull/5812): Deprecate invalid named arguments in data providers +* [#5812](https://github.com/sebastianbergmann/phpunit/pull/5812): Support for string array keys in data sets returned by data provider methods that do not match the parameter names of the test method(s) that use(s) them ### Fixed diff --git a/DEPRECATIONS.md b/DEPRECATIONS.md index d66cef7e45..7fa82a2b56 100644 --- a/DEPRECATIONS.md +++ b/DEPRECATIONS.md @@ -86,6 +86,7 @@ This functionality is currently [hard-deprecated](https://phpunit.de/backward-co #### Miscellaneous -| Issue | Description | Since | Replacement | -|-------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|--------|-------------| -| [#5100](https://github.com/sebastianbergmann/phpunit/issues/5100) | Support for non-static data provider methods, non-public data provider methods, and data provider methods that declare parameters | 10.0.0 | | +| Issue | Description | Since | Replacement | +|-------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------|---------|-------------| +| [#5100](https://github.com/sebastianbergmann/phpunit/issues/5100) | Support for non-static data provider methods, non-public data provider methods, and data provider methods that declare parameters | 10.0.0 | | +| [#5812](https://github.com/sebastianbergmann/phpunit/pull/5812) | Support for string array keys in data sets returned by data provider methods that do not match the parameter names of the test method(s) that use(s) them | 10.5.18 | |