From c083f31151368dc8c4bfc6ee240b2db1db756903 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sun, 14 Apr 2024 09:00:54 +0200 Subject: [PATCH] Document #5812 --- ChangeLog-10.5.md | 2 +- DEPRECATIONS.md | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ChangeLog-10.5.md b/ChangeLog-10.5.md index 2ee9d73a0c3..e64fa6cccb4 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 d66cef7e454..7fa82a2b565 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 | |