diff --git a/README.md b/README.md index 97e39df..8d186c9 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # PHPUnit Test Reporter # -**Contributors:** [octalmage](https://profiles.wordpress.org/octalmage), [danielbachhuber](https://profiles.wordpress.org/danielbachhuber), [wpamitkumar](https://profiles.wordpress.org/wpamitkumar), [mikeschroder](https://profiles.wordpress.org/mikeschroder), [pfefferle](https://profiles.wordpress.org/pfefferle) -**Tags:** phpunit -**Requires at least:** 4.7 -**Tested up to:** 5.5 -**Stable tag:** 0.1.3 -**License:** GPLv3 -**License URI:** http://www.gnu.org/licenses/gpl-3.0.html +**Contributors:** [octalmage](https://profiles.wordpress.org/octalmage), [danielbachhuber](https://profiles.wordpress.org/danielbachhuber), [wpamitkumar](https://profiles.wordpress.org/wpamitkumar), [kirasong](https://profiles.wordpress.org/kirasong), [pfefferle](https://profiles.wordpress.org/pfefferle), [desrosj](https://profiles.wordpress.org/desrosj), [crixu](https://profiles.wordpress.org/crixu) +**Tags:** phpunit +**Requires at least:** 4.7 +**Tested up to:** 5.5 +**Stable tag:** 0.2.0 +**License:** GPLv3 +**License URI:** http://www.gnu.org/licenses/gpl-3.0.html Captures and displays test results from the PHPUnit Test Runner @@ -44,3 +44,9 @@ Check out the [contribution guidelines](https://github.com/WordPress/phpunit-tes ### 0.1.3 (September 23th, 2020) ### * Include errors along with failures on the error report page ([PR](https://github.com/WordPress/phpunit-test-reporter/pull/84)). * Change to `integer` built-in type for `commit` field, following updates in WordPress 5.5. + +### 0.2.0 (September 17th, 2024) ### +* Prevent invalid HTML markup on test result pages. +* Add a custom Post_List_Table for the results post type that lacks inline edit/quick edit. +* Don't use _get_list_table() as that create the object and triggers some queries. Including the file directly works just as well. +* Allow for multiple reports per commit for the same test bot. diff --git a/phpunit-test-reporter.php b/phpunit-test-reporter.php index 13bb230..37baf96 100644 --- a/phpunit-test-reporter.php +++ b/phpunit-test-reporter.php @@ -7,7 +7,7 @@ * Author URI: https://make.wordpress.org/hosting/ * Text Domain: ptr * Domain Path: /languages - * Version: 0.1.3 + * Version: 0.2.0 * License: GPL v3 * * @package PTR diff --git a/readme.txt b/readme.txt index 17f983a..5535365 100644 --- a/readme.txt +++ b/readme.txt @@ -1,9 +1,9 @@ === PHPUnit Test Reporter === -Contributors: octalmage, danielbachhuber, wpamitkumar, mikeschroder, pfefferle +Contributors: octalmage, danielbachhuber, wpamitkumar, kirasong, pfefferle, desrosj, crixu Tags: phpunit Requires at least: 4.7 Tested up to: 5.5 -Stable tag: 0.1.3 +Stable tag: 0.2.0 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -44,3 +44,10 @@ Check out the [contribution guidelines](https://github.com/WordPress/phpunit-tes = 0.1.3 (September 23th, 2020) = * Include errors along with failures on the error report page ([PR](https://github.com/WordPress/phpunit-test-reporter/pull/84)). * Change to `integer` built-in type for `commit` field, following updates in WordPress 5.5. + + += 0.2.0 (September 17th, 2024) = +* Prevent invalid HTML markup on test result pages. +* Add a custom Post_List_Table for the results post type that lacks inline edit/quick edit. +* Don't use _get_list_table() as that create the object and triggers some queries. Including the file directly works just as well. +* Allow for multiple reports per commit for the same test bot.