Version suported table#250
Open
bluvulture wants to merge 2 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR drops the build/release workflow support for Pimcore image v1.x and updates the README to document the currently supported Pimcore image major versions.
Changes:
- Removed v1.x entries from the release workflow build matrix so v1.x images are no longer built/published.
- Added a new README “Pimcore image versions support” section with a simple supported/unsupported matrix.
- Updated README content around version compatibility to align with the revised support stance.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| README.md | Adds a support matrix section and updates surrounding documentation for supported Pimcore image versions. |
| .github/workflows/release.yml | Removes v1.x build configurations from the release workflow matrix. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
46
to
+47
|
|
||
| > *) recommended version | ||
| ### Pimcore image versions support |
| | v4 | ✅ | | ||
| | v5 | ✅ | | ||
|
|
||
| We are basing our images on top of the official PHP and Debian images and providing support until EOL for the [PHP versions](https://www.php.net/supported-versions.php) and [Debian versions](https://wiki.debian.org/LTS) |
Comment on lines
30
to
33
| build: | ||
| - { tag: '1.x', php: '8.1', distro: bullseye, version-override: "v1-dev", latest-tag: false } | ||
| - { tag: '1.x', php: '8.2', distro: bullseye, version-override: "v1-dev", latest-tag: false } | ||
| - { tag: 'v1.6', php: '8.1', distro: bullseye, version-override: "", latest-tag: true } | ||
| - { tag: 'v1.6', php: '8.2', distro: bullseye, version-override: "", latest-tag: false } | ||
| - { tag: 'v2.3', php: '8.2', distro: bullseye, version-override: "", latest-tag: false } | ||
| - { tag: '2.x', php: '8.2', distro: bullseye, version-override: "v2-dev", latest-tag: false } | ||
| - { tag: 'v3.8', php: '8.2', distro: bookworm, version-override: "", latest-tag: true } |
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 free
to 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.
This pull request removes support for v1.x Pimcore images and updates the documentation to reflect the currently supported image versions. The main changes are the removal of v1.x build configurations from the release workflow and the addition of a new support matrix in the
README.md.Documentation updates:
README.md, listing which image versions are currently supported and clarifying the support policy based on PHP and Debian EOL.Build and workflow changes:
.github/workflows/release.ymlfile, so v1.x images will no longer be built or released.