Actions
Bug #97984
closedDateTimeImmutable::__construct() expects parameter 1 to be string, null given
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Install Tool
Target version:
-
Start date:
2022-07-21
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
10
PHP Version:
7.4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
As of today, searching for core updates in Installations Tool returns the following error
DateTimeImmutable::__construct() expects parameter 1 to be string, null given
in /typo3_src-10.4.30/typo3/sysext/install/Classes/CoreVersion/CoreRelease.php line 46
public static function fromApiResponse(array $response): self
{
return new self($response['version'], new \DateTimeImmutable($response['date']), $response['type'], $response['tar_package']['sha1sum'], $response['elts'] ?? false);
}
The error probably affects several TYPO3 installations, so I can rule out that it is only due to one system
Files
Updated by Kevin Veldscholten over 2 years ago
- File Zwischenablage02.jpg Zwischenablage02.jpg added
Updated by Georg Ringer over 2 years ago
- Status changed from New to Closed
closed as duplicate of #97983
Updated by Georg Ringer over 2 years ago
- Related to Bug #97983: Reports - Status Report: DateTimeImmutable::__construct() expects parameter 1 to be string, null given added
Updated by Mordamir over 2 years ago
The problem here is not typo3 itself, its that https://get.typo3.org/api/v1/major/11/release/latest returns a list of all releases, not only the latest.
I dont know who is responsible for the get.typo3.org website.
Actions