[Elasticsearch] Raise minimum supported version to 8.12.2 - #46
Merged
Conversation
Require elasticsearch/elasticsearch ^8.12 so the installed client is the one paired with Elasticsearch server 8.12.x. Server 8.12.2 or higher is the new minimum supported version (needed for chunked/nested vector support, see pimcore/internal-improvements#25). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Raises the minimum supported Elasticsearch server version to 8.12.2.
Changes:
- Requires PHP client
^8.12. - Documents the new server minimum.
- Updates Elasticsearch Docker images to 8.12.2.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
README.md |
Documents supported server versions. |
composer.json |
Raises the PHP client requirement. |
doc/02_Upgrade.md |
Adds 2026.3 upgrade guidance. |
doc/03_Docker.md |
Updates Elasticsearch images; Kibana remains incompatibly pinned to 8.4.3. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Changes
composer.json: raiseelasticsearch/elasticsearchfrom^8.0to^8.12— the PHP client is released per minor only (there is no8.12.2client tag;^8.12.2would skip the 8.12 client entirely and make 8.13 the effective minimum, which officially does not support an 8.12 server).>= 8.12.2as the minimum supported version (upgrade notes + README), bump the docker example toelasticsearch:8.12.2.Why
Chunking / nested vector support requires Elasticsearch server
>= 8.12.2.Ref: https://github.com/pimcore/internal-improvements/issues/25 (part of pimcore/product-management#1322)
Merge order
Merge this before the companion PRs, which raise
pimcore/elasticsearch-clientto^2026.3:🤖 Generated with Claude Code