You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that support for PHP 7.4 was intentionally dropped in the latest 0.10.24 release. The base composer.json of the repo has been updated to reflect that properly.
However, the composer.json files in the affected packages still list PHP 7.4 as a valid alternative to PHP 8.0, leading to compatibility issues.
In the following example, running the affected enqueue/enqueue package on PHP 7.4 produces errors like the following, as trailing constructor commas were introduced to the enqueu package:
If there are any composer.json's that are missing the PHP dependency change, then we should definitely update those. Feel free to make the change and submit the PR if you have spare time for it.
As for the previous versions, it's very hard to fix a mistake like this. We could in theory add conflict declarations in against the offending packages and release a new version of 0.10 too, which would reduce the impact. But we can't really remove the package versions containing invalid declarations.
It seems that support for PHP 7.4 was intentionally dropped in the latest 0.10.24 release. The base composer.json of the repo has been updated to reflect that properly.
However, the
composer.json
files in the affected packages still list PHP 7.4 as a valid alternative to PHP 8.0, leading to compatibility issues.In the following example, running the affected enqueue/enqueue package on PHP 7.4 produces errors like the following, as trailing constructor commas were introduced to the enqueu package:
Not sure, how packages are relesed through this monorepo, but a valid fix should be to update the packages'
composer.json
's to only allow >=PHP8.1?The text was updated successfully, but these errors were encountered: