feat(container): update image docker.io/getmeili/meilisearch ( v1.46.1 → v1.48.2 )#2987
Open
renovate[bot] wants to merge 1 commit into
Open
feat(container): update image docker.io/getmeili/meilisearch ( v1.46.1 → v1.48.2 )#2987renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
--- HelmRelease: apps/karakeep Deployment: apps/karakeep-meilisearch
+++ HelmRelease: apps/karakeep Deployment: apps/karakeep-meilisearch
@@ -59,13 +59,13 @@
valueFrom:
secretKeyRef:
key: meilisearch_master_key
name: karakeep-secret
- name: MEILI_NO_ANALYTICS
value: 'true'
- image: docker.io/getmeili/meilisearch:v1.46.1
+ image: docker.io/getmeili/meilisearch:v1.48.2
name: app
resources:
limits:
memory: 4Gi
requests:
cpu: 10m |
--- kubernetes/subterra/apps/apps/karakeep/app Kustomization: flux-system/karakeep HelmRelease: apps/karakeep
+++ kubernetes/subterra/apps/apps/karakeep/app Kustomization: flux-system/karakeep HelmRelease: apps/karakeep
@@ -110,13 +110,13 @@
secretKeyRef:
key: meilisearch_master_key
name: karakeep-secret
MEILI_NO_ANALYTICS: true
image:
repository: docker.io/getmeili/meilisearch
- tag: v1.46.1
+ tag: v1.48.2
resources:
limits:
memory: 4Gi
requests:
cpu: 10m
memory: 1Gi |
4387e7a to
62a9d1d
Compare
62a9d1d to
7280b8e
Compare
…1 → v1.48.2 ) | datasource | package | from | to | | ---------- | ------------------------------ | ------- | ------- | | docker | docker.io/getmeili/meilisearch | v1.46.1 | v1.48.2 |
7280b8e to
8e42dec
Compare
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 PR contains the following updates:
v1.46.1→v1.48.2Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
meilisearch/meilisearch (docker.io/getmeili/meilisearch)
v1.48.2: 🫎Compare Source
v1.48.1: 🫎Compare Source
Revert #6432 due to a dumpless upgrade bug report.
Full Changelog: meilisearch/meilisearch@v1.48.0...v1.48.1
v1.48.0: 🫎Compare Source
✨ Enhancement
[Experimental] Render 🫎 template route
Introduces a new
POST /render-templateroute that can be used to render any template or fragment on any input and associatedrenderRouteexperimental feature that gates access to the route.This route can be used to test document templates and fragments before and after having configured an embedder.
A body payload for the route is of the form:
{ "template": /* templateTarget object */, "input": /* inputTarget object or null */ }where
templatedescribes the template or fragment to render, andinputdescribes what to use to render the template.Upon calling this route, Meilisearch responds with:
{ "template": "{{doc.text}}", "rendered": "template text after rendering using the input" }where
templatecontains the unrendered base text of the document template, or the unrendered base JSON object of a fragment, andrenderedcontains the result of rendering the template of the chosen input.If
inputisnullin the request, thenrenderedisnullin the response, and the route can be used solely to retrieve a template or fragment from the settings of an index.Before calling the route
The API of this route is subject to change, so before calling this route, please enable the
renderRouteexperimental feature:PATCH /experimental-features --json '{"renderRoute": true}'Examples
request
response
{ "template": "A movie titled {{doc.title}} whose description starts with {{doc.overview|truncatewords:10}}", "rendered": "A movie titled Ariel whose description starts with Taisto Kasurinen is a Finnish coal miner whose father has..." }request
response
{ "template": { "content": [ { "type": "text", "text": "A picture of a {{doc.kind}} of breed {{doc.breed}}" }, { "type": "image_base64", "image_base64": "data:{{doc.mime}};base64,{{doc.image}}" } ] }, "rendered": { "content": [ { "type": "text", "text": "A picture of a dog of breed jack russell" }, { "type": "image_base64", "image_base64": "data:image/png;base64,/9j/4AAQSk..." } ] } }request
response
{ "template": "It's a {{ media.breed }}", "rendered": "It's a jack russell" }request
response
{ "template": "{% for field in fields %}{% if field.is_searchable and field.value != nil %}{{ field.name }}: {{ field.value }}\n{% endif %}{% endfor %}", "rendered": "id: 2\ntitle: Ariel\noverview: Taisto Kasurinen is a Finnish coal miner whose father has just committed suicide and who is framed for a crime he did not commit. In jail, he starts to dream about leaving the country and starting a new life. He escapes from prison but things don't go as planned...\ngenres: DramaCrimeComedy\nposter: https://image.tmdb.org/t/p/w500/ojDg0PGvs6R9xYFodRct2kdI6wC.jpg\nrelease_date: 593395200\n" }request
response
{ "template": "You can pass templates inline as well: nice to test them! {{doc.id}}", "rendered": "You can pass templates inline as well: nice to test them! 2" }request
response
{ "template": { "json_maps": "supported for fragments", "any_string": "is in liquid format: {{doc.test}}" }, "rendered": { "json_maps": "supported for fragments", "any_string": "is in liquid format: true" } }[Experimental] Only support foreign filters on retrieval routes
Foreign filters are meant to be used in a retrieval context (search, get document...), but all the actions related to writing or modifying a document could have several unexpected behaviors if foreign filters are accepted.
We prefer forbidding the usage of this feature on the writing routes.
The following routes do not support Foreign-filter anymore:
/indexes/{index_uid}/documents/edit/indexes/{index_uid}/documents/delete/export🪲 Bug fixes
🔒 Security
🔩 Miscellaneous
queueDocumentsFetchexperimental feature withdisableDocumentsFetchQueueconverting the feature from an opt-in to an opt-outBy @ManyTheFish in #6456
❤️ Thanks again to @genisis0x and @antcybersec
v1.47.1: 🦇Compare Source
v1.47.0: 🦇Compare Source
🌈 Enhancements
Search personalization on federated search
We now support using the search personalization feature on federated search requests.
Like
page/hitPerPageorlimit/offset, the personalization option must be specified in the federation attribute to work properly.Otherwise, an error will be returned reminding you to move the attribute in federation.
By @ManyTheFish in #6414
The new settings indexer is feature complete 🎉
MEILI_EXPERIMENTAL_NO_EDITION_2024_FOR_SETTINGSenvironment variable totrue, all settings tasks can now be handled by the new settings indexer, bringing a better scaling behavior, much faster cancellation, and a more precise progress view.By @Kerollmops in #6409
Observability improvements
We expose more Prometheus metrics to improve observability, specifically to show more metrics on document throughput and ease debugging.
By @Kerollmops in #6430
🦋 Fixes
searchCutoffMsin some conditions when embedding documents, by @dureuill in #6447'during remote federated search oruseNetwork: truesearch requests, by @dureuill in #6445🔒 Security
🔩 Misc. changes
Search implementation refactor
Refactor the search pipeline to mutualize the code.
The new implementation will always perform a federated search under the hood, and then the output will be transformed into the expected route's output.
Noticeable changes from the user perspective:
MultiSearch<Error><-->Search<Error>Other changes
vectorStoreBackendsetting from the settings, by @Kerollmops in #6399MustStopProcessingtype everywhere by @Kerollmops in #6423New Contributors
Full Changelog: meilisearch/meilisearch@v1.46.1...v1.47.0
Configuration
📅 Schedule: (in timezone Europe/Moscow)
🚦 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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.