-
Notifications
You must be signed in to change notification settings - Fork 16
Description
Note: We also welcome PRs to fix bugs! This helps us take action faster where a bug has been identified!
For our official CircleCI Docker Convenience Image support policy, please see CircleCI docs.
This policy outlines the release, update, and deprecation policy for CircleCI Docker Convenience Images.
Describe the bug
Running the current docker-php-extension-installer script in the PHP 8.2 base image, e.g. sudo -E install-php-extensions xdebug, yields the following message:
### ERROR: Unsupported PHP version: 8.2 ###
Altough technically it continues and works for the cases I've found, an update to the extension would probably be appropriate.
To Reproduce
docker container run --rm -it cimg/php:8.2 /bin/bash -c "sudo -E install-php-extensions xdebug"
Expected behavior
No error message appears.
Workarounds
Ignore the error message as it appears unharmful in most cases.
Screenshots and Build Links
n/a
Additional context
With the PHP 8.3 release coming up, it might be good to update the extension in such a manner it officialy supports that as well. Given that the current origin repository supports it (see mlocati/docker-php-extension-installer#810), getting up to date with this should be sufficient.