Update getmeili/meilisearch Docker tag to v1.26.0 #49
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 PR contains the following updates:
v1.24.0->v1.26.0Release Notes
meilisearch/meilisearch (getmeili/meilisearch)
v1.26.0: 🐛Compare Source
✨ Enhancements
Allow to attach custom metadata in the document addition or update tasks
customMetadataquery parameter to any supported route:GET /tasksfor tasks with metadata:{ "results": [ { "uid": 37, "batchUid": 37, "indexUid": "mieli", "status": "succeeded", "type": "documentDeletion", "canceledBy": null, "details": { "deletedDocuments": 31944 }, "error": null, "duration": "PT0.511099S", "enqueuedAt": "2025-11-06T16:33:37.816237Z", "startedAt": "2025-11-06T16:33:37.821591Z", "finishedAt": "2025-11-06T16:33:38.33269Z", "customMetadata": "removeall" }, { "uid": 36, "batchUid": 36, "indexUid": "movies", "status": "succeeded", "type": "documentAdditionOrUpdate", "canceledBy": null, "details": { "receivedDocuments": 31968, "indexedDocuments": 31944 }, "error": null, "duration": "PT3.192271S", "enqueuedAt": "2025-10-30T10:31:12.896073Z", "startedAt": "2025-10-30T10:31:12.911905Z", "finishedAt": "2025-10-30T10:31:16.104176Z", "customMetadata": "foo" } ], "total": 38, "limit": 2, "from": 36, "next": 35 }by @dureuill in #5963
Support more models for
huggingFaceembedderYou can now select models with the
modernBERTarchitecture when generating embeddings locally on CPU or GPU with thehuggingFaceembedder.This unlocks for instance Ruri v3 and other models
by @hayatosc in #5980
🧪 Experimental: embedder failure modes
You can now decide to ignore some embedder-related errors. Either:
userProvidedembedders)When errors are ignored, the corresponding documents will not have embeddings, but the associated batch of tasks will not be marked as failed.
Of course, ignoring errors means that it is harder to notice an issue with embedders, so use this feature parsimoniously.
To enable the feature:
MEILI_EXPERIMENTAL_CONFIG_EMBEDDER_FAILURE_MODESand set it to a comma-separated list of errors to ignore, with the possible values:ignore_document_template_failuresto ignore document template failuresignore_embedder_failuresto ignore embedder failuresignore_document_template_failures,ignore_embedder_failuresignores both kinds of failuresby @dureuill in #5984
🧪 Experimental: timeout control for REST embedders
You can now control the duration before a REST embedder request times out.
MEILI_EXPERIMENTAL_REST_EMBEDDER_TIMEOUT_SECONDS, which must be a positive integer.by @dureuill in #5984
🔩 Misc
allocator-api2by @xuhongxu96 in #5969👥 Contributors
Many thanks to our new contributors @hayatosc and @xuhongxu96 ❤️
v1.25.0: 🐈⬛Compare Source
✨ Enhancement
🔬 [Experimental]: Search personalization by @ManyTheFish in #5775
Add the ability to dynamically rerank the search results based on Cohere using a personalized prompt.
For more information on how to set it up, see the dedicated experimental feature discussion.
🔬 [Experimental]: Upload snapshot tarballs to S3 by @Kerollmops in #5948
Add the ability to upload snapshots directly to S3. It has many advantages, such as being able to stream the entire process and effectively utilizing multipart technology to send chunks of data in parallel.
For more information on how to use it, see the dedicated experimental feature discussion.
🪲 Bug fixes
The value of the
Authorizationheader is now redacted when getting webhook, getting webhooks, or in the object returned when posting a new webhook or deleting a webhook.Authorizationheader back after it has been redacted🚰 Fix the LMDB fork memory leak by @Kerollmops in #5967
This bug was causing crashes in the recent indexer optimizations. If you deactivated these optimizations by setting the following environment variables:
You can now safely reactivate them without experiencing memory leaks.
🇩🇪 Hotfix German word segmentation by @ManyTheFish in meilisearch/charabia#360
German word segmentation relies on a word dictionary to segment words, but if a word is not part of the dictionary, it is cut into bigrams. The segmenter will now skip segmenting unknown words:
🇨🇳 Prevent splitting of numbers and English words in Chinese text segmentation by @JinheLin in meilisearch/charabia#354
It’s very common for Chinese, numbers, and English to appear together in the same sentence.
We now ensure that numbers and English are not segmented differently between segmenters:
🔩 Miscellaneous
Thanks to @JinheLin, @dureuill, @Kerollmops, and @ManyTheFish for their contribution! 🎉
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.