Commit: 35779c6c2e838b7035a0c85cce9cee7800d23aa5 Author: Christoph M. Becker <cmbecke...@gmx.de> Fri, 20 Mar 2020 13:44:52 +0100 Parents: d413317ef1ae32b6925dc0b7c8b1ca95ac46bb79 Branches: master
Link: http://git.php.net/?p=web/qa.git;a=commitdiff;h=35779c6c2e838b7035a0c85cce9cee7800d23aa5 Log: Set active release branches back to active Otherwise requesting the dev_versions[1] yields NULL, what caused an outage of the report new bug page[2], and prevented -dev version test failures to be sent as QA reports. [1] <https://qa.php.net/api.php?type=qa-releases&format=json&only=dev_versions> [2] <https://github.com/php/web-bugs/commit/465b722175908415d049c1f0e2962eca41ec3ea7> Changed paths: M include/release-qa.php Diff: diff --git a/include/release-qa.php b/include/release-qa.php index d4f77e4..ded0c93 100644 --- a/include/release-qa.php +++ b/include/release-qa.php @@ -62,7 +62,7 @@ $QA_RELEASES = [ ], '7.3.17' => [ - 'active' => false, + 'active' => true, 'release' => [ 'type' => 'RC', 'number' => 0, @@ -75,7 +75,7 @@ $QA_RELEASES = [ ], '7.4.5' => [ - 'active' => false, + 'active' => true, 'release' => [ 'type' => 'RC', 'number' => 0,