Conversation
Uh oh!
There was an error while loading. Please reload this page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PHP 8.1 is EOL, and the Docker build was failing independently of that. This moves the template to 8.4 and fixes the build.
Two unrelated breakages
xdebug no longer compiles.
pecl install xdebugfails at configure withrtnetlink.h is required, install the linux-headers package. A recent Xdebug release added that dependency, and$PHPIZE_DEPSdoes not include it. This is not version-specific — it reproduces identically on 8.1 and 8.4.linux-headersis installed in theenv-with-xdebugstage only, so the productionenvandserverimages stay unchanged.The 2023 dependency set does not run on 8.4.
nikic/php-parser4.x triggers an implicitly-nullable-parameter deprecation, whichbootstrap.phppromotes to anErrorException, soorm:generate-proxiesfatals during theserverbuild. A plaincomposer updateresolves it — every package stayed inside its existing constraint, so no major version bumps were required here. It also clears the security advisories thatcomposer auditwas reporting.Base image tag
php:8.1.0-alpine3.15becomesphp:8.4.24-alpine, dropping the Alpine pin.The pin is why #62 offered only 8.1.0 to 8.1.13: Dependabot preserves the tag suffix, and Alpine 3.15 has no PHP builds past 8.1, so the upgrade path dead-ended. Without the pin, Dependabot can move PHP across minors and majors, and the base picks up Alpine security rebuilds.
Effect on the open Dependabot PRs