Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(container): update docker.io/getmeili/meilisearch ( v1.12.8 → v1.13.3 ) #3428

Closed
wants to merge 1 commit into from

Conversation

shipwasher[bot]
Copy link
Contributor

@shipwasher shipwasher bot commented Mar 5, 2025

This PR contains the following updates:

Package Update Change
docker.io/getmeili/meilisearch minor v1.12.8 -> v1.13.3

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

meilisearch/meilisearch (docker.io/getmeili/meilisearch)

v1.13.3: 🕊️

Compare Source

What's Changed

Full Changelog: meilisearch/meilisearch@v1.13.2...v1.13.3

v1.13.2: 🕊️

Compare Source

What's Changed

Full Changelog: meilisearch/meilisearch@v1.13.1...v1.13.2

v1.13.1: 🕊️

Compare Source

What's Changed

Full Changelog: meilisearch/meilisearch@v1.13.0...v1.13.1

v1.13.0: 🕊️

Compare Source

Meilisearch v1.13 stabilizes AI-powered search integration! 🎉 This release also introduces two new experimental features: upgrading to new Meilisearch releases without generating a dump and making federated requests across multiple Meilisearch instances.

🧰 All official Meilisearch integrations (including SDKs, clients, and other tools) are compatible with this Meilisearch release. Integration deployment takes 4 to 48 hours after a new version becomes available.

Some SDKs might not include all new features. Consult the project repository for detailed information. Is a feature you need missing from your chosen SDK? Create an issue letting us know you need it, or, for open-source karma points, open a PR implementing it (we'll love you for that ❤️).

New features and updates 🔥
AI-powered search and vector store stabilization

With v1.13, AI-powered search is available to all users by default and no longer requires manual activation.

Breaking Changes
  • vectorStore is no longer an accepted value for the /experimental-features route
  • Ollama URLs must end with either /api/embed or /api/embeddings
  • Modified error codes:
    • invalid_embedder has been split into invalid_search_embedder and invalid_similar_embedder. These codes are returned when the embedder parameter of a request to /search, /multi-search or /similar specifies a non-existing embedder or is not a string
    • invalid_hybrid_query has been renamed to invalid_search_hybrid_query. It is returned when the hybrid parameter contains unknown keys or is not either null or an object

Done by @​dureuill in https://github.com/meilisearch/meilisearch/pull/5232 & https://github.com/meilisearch/meilisearch/pull/5234

Experimental feature: Dumpless upgrades

Use --experimental-dumpless-upgrade after updating the Meilisearch binary to migrate to a new release:

./meilisearch --experimental-dumpless-upgrade

This faster and more efficient process does not require you to generate a dump and pass it to Meilisearch when upgrading to a new release.

[!WARNING]
Meilisearch strongly recommends you generate a backup snapshot before migrating. This is an experimental feature, and failed upgrades may lead to database corruption.

Read more about it on the dedicated product discussion.

Done by @​irevoire and @​dureuill in https://github.com/meilisearch/meilisearch/pull/5264

Experimental feature: Remote federated search requests

Use remote federated search requests together with the /multi-search route to query multiple Meilisearch instances simultaneously. This is particularly useful when handling very large databases.

First, use the /experimental-features route to enable network:

curl \
  -X PATCH 'MEILISEARCH_URL/experimental-features/' \
  -H 'Content-Type: application/json'  \
  --data-binary '{
    "network": true
  }'

Next, set up your network of Meilisearch instances with a call to PATCH /network configuring one self and multiple remotes:

curl \
  -X PATCH 'MEILISEARCH_URL/network/' \
  -H 'Content-Type: application/json'  \
  --data-binary '{
    "remotes": {
      "ms-0": {
        "url": "http://ms-1235.example.meilisearch.io",
        "searchApiKey": "Ecd1SDDi4pqdJD6qYLxD3y7VZAEb4d9j6LJgt4d6xas"
      },
      "ms-1": {
        "url": "http://ms-4242.example.meilisearch.io",
        "searchApiKey": "hrVu-OMcjPGElK7692K7bwriBoGyHXTMvB5NmZkMKqQ"
      }
    },
    "self": "ms-0"
  }'

Repeat this process with every instance in your network, then add documents. Do not send the same documents to different instances.
Finally, make a /multi-search query with the new federationOptions.remote:

curl \
  -X PATCH 'MEILISEARCH_URL/multi-search/' \
  -H 'Content-Type: application/json'  \
  --data-binary '{
    "federation": {},
    "queries": [
        {
            "q": "Batman returns dark",
            "indexUid": "movies",
            "federationOptions": {
                "remote": "ms-0"
            }
        },
        {
            "q": "Batman returns dark",
            "indexUid": "movies",
            "federationOptions": {
                "remote": "ms-1"
            }
        }
    ]
}'

Find more information about this feature on the public usage page

Other improvements
Fixes 🐞
Misc

❤️ Thanks again to our external contributors:


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 these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@shipwasher shipwasher bot added renovate/container type/minor area/kubernetes Changes made in the kubernetes directory labels Mar 5, 2025
@shipwasher
Copy link
Contributor Author

shipwasher bot commented Mar 5, 2025

--- kubernetes/main/apps/default/hoarder/app Kustomization: flux-system/hoarder HelmRelease: default/hoarder

+++ kubernetes/main/apps/default/hoarder/app Kustomization: flux-system/hoarder HelmRelease: default/hoarder

@@ -115,13 +115,13 @@

                   secretKeyRef:
                     key: meilisearch_master_key
                     name: hoarder-secret
               MEILI_NO_ANALYTICS: true
             image:
               repository: docker.io/getmeili/meilisearch
-              tag: v1.12.8
+              tag: v1.13.3
             resources:
               limits:
                 memory: 2Gi
               requests:
                 cpu: 10m
         pod:

@shipwasher
Copy link
Contributor Author

shipwasher bot commented Mar 5, 2025

--- HelmRelease: default/hoarder Deployment: default/hoarder-meilisearch

+++ HelmRelease: default/hoarder Deployment: default/hoarder-meilisearch

@@ -57,13 +57,13 @@

           valueFrom:
             secretKeyRef:
               key: meilisearch_master_key
               name: hoarder-secret
         - name: MEILI_NO_ANALYTICS
           value: 'true'
-        image: docker.io/getmeili/meilisearch:v1.12.8
+        image: docker.io/getmeili/meilisearch:v1.13.3
         name: app
         resources:
           limits:
             memory: 2Gi
           requests:
             cpu: 10m

@shipwasher shipwasher bot force-pushed the renovate/docker.io-getmeili-meilisearch-1.x branch from a804e8e to efa6fb1 Compare March 6, 2025 12:13
@wipash wipash closed this Mar 6, 2025
@shipwasher shipwasher bot deleted the renovate/docker.io-getmeili-meilisearch-1.x branch March 6, 2025 21:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/kubernetes Changes made in the kubernetes directory renovate/container type/minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant