diff --git wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/single-result.php wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/single-result.php
index fc7b286b7..db765fbc3 100644
--- wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/single-result.php
+++ wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/single-result.php
@@ -68,7 +68,12 @@ if ( $parent ) :
 	</tr>
 </table>
 
-<?php if ( ! empty( $results['failures'] ) ) : ?>
+<?php
+if (
+	! empty( $results['failures'] ) ||
+	! empty( $results['errors'] )
+	) :
+	?>
 	<h2>Errors/Failures</h2>
 
 	<?php
diff --git wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/phpunit-test-reporter.php wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/phpunit-test-reporter.php
index 1b3d84b5d..5a269ff08 100644
--- wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/phpunit-test-reporter.php
+++ wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/phpunit-test-reporter.php
@@ -7,7 +7,7 @@
  * Author URI:      https://make.wordpress.org/hosting/
  * Text Domain:     ptr
  * Domain Path:     /languages
- * Version:         0.1.2
+ * Version:         0.1.3
  * License:         GPL v3
  *
  * @package         PTR
diff --git wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/readme.txt wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/readme.txt
index 9911862cb..af13b7476 100644
--- wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/readme.txt
+++ wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/readme.txt
@@ -2,8 +2,8 @@
 Contributors: octalmage, danielbachhuber, wpamitkumar, mikeschroder, pfefferle
 Tags: phpunit
 Requires at least: 4.7
-Tested up to: 5.4.1
-Stable tag: 0.1.2
+Tested up to: 5.5
+Stable tag: 0.1.3
 License: GPLv3
 License URI: http://www.gnu.org/licenses/gpl-3.0.html
 
@@ -53,3 +53,7 @@ Usage:
   grunt-wp-readme-to-markdown ^2.0.1, and update plugin version in `package.json`.
 * Upgrade Docker environment to use `wordpress:5.4.1-php7.4` image.
 * Correct contributor list in `readme.txt` and update `README.md`.
+
+= 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.
diff --git wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-restapi.php wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-restapi.php
index 4fe985de6..0fb15666f 100644
--- wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-restapi.php
+++ wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-restapi.php
@@ -19,10 +19,9 @@ class RestAPI {
 				'callback'            => array( __CLASS__, 'add_results_callback' ),
 				'args'                => array(
 					'commit'  => array(
-						'required'          => true,
-						'description'       => 'The SVN commit changeset number.',
-						'type'              => 'numeric',
-						'validate_callback' => array( __CLASS__, 'validate_callback' ),
+						'required'    => true,
+						'description' => 'The SVN commit changeset number.',
+						'type'        => 'integer',
 					),
 					'results' => array(
 						'required'          => true,
@@ -50,17 +49,6 @@ class RestAPI {
 
 	public static function validate_callback( $value, $request, $key ) {
 		switch ( $key ) {
-			case 'commit':
-				if ( ! is_numeric( $value ) ) {
-					return new WP_Error(
-						'rest_invalid',
-						__( 'Value must be numeric.', 'ptr' ),
-						array(
-							'status' => 400,
-						)
-					);
-				}
-				return true;
 			case 'message':
 				if ( empty( $value ) || ! is_string( $value ) ) {
 					return new WP_Error(
