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

Update getmeili/meilisearch Docker tag to v1.13.2 #43

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 13, 2025

This PR contains the following updates:

Package Update Change
getmeili/meilisearch minor v1.12.2 -> v1.13.2

Warning

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


Release Notes

meilisearch/meilisearch (getmeili/meilisearch)

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:

v1.12.8: 🦗

Compare Source

What's Changed

Full Changelog: meilisearch/meilisearch@v1.12.7...v1.12.8

v1.12.7: 🦗

Compare Source

What's Changed

Full Changelog: meilisearch/meilisearch@v1.12.6...v1.12.7

v1.12.6: 🦗

Compare Source

What's Changed

Full Changelog: meilisearch/meilisearch@v1.12.5...v1.12.6

v1.12.5: 🦗

Compare Source

Fixes 🪲

Full Changelog: meilisearch/meilisearch@v1.12.4...v1.12.5

v1.12.4: 🦗

Compare Source

Fixes 🪲

Full Changelog: meilisearch/meilisearch@v1.12.3...v1.12.4

v1.12.3: 🦗

Compare Source

What's Changed

Full Changelog: meilisearch/meilisearch@v1.12.2...v1.12.3


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.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update getmeili/meilisearch Docker tag to v1.12.3 Update getmeili/meilisearch Docker tag to v1.12.4 Jan 16, 2025
@renovate renovate bot force-pushed the renovate/getmeili-meilisearch-1.x branch 2 times, most recently from ef7ef11 to f84826c Compare January 20, 2025 18:01
@renovate renovate bot changed the title Update getmeili/meilisearch Docker tag to v1.12.4 Update getmeili/meilisearch Docker tag to v1.12.5 Jan 20, 2025
@renovate renovate bot changed the title Update getmeili/meilisearch Docker tag to v1.12.5 Update getmeili/meilisearch Docker tag to v1.12.6 Jan 21, 2025
@renovate renovate bot force-pushed the renovate/getmeili-meilisearch-1.x branch from f84826c to b942d7f Compare January 21, 2025 18:12
@renovate renovate bot changed the title Update getmeili/meilisearch Docker tag to v1.12.6 Update getmeili/meilisearch Docker tag to v1.12.7 Jan 23, 2025
@renovate renovate bot force-pushed the renovate/getmeili-meilisearch-1.x branch from b942d7f to 10cfa9a Compare January 23, 2025 17:53
@renovate renovate bot changed the title Update getmeili/meilisearch Docker tag to v1.12.7 Update getmeili/meilisearch Docker tag to v1.12.8 Jan 30, 2025
@renovate renovate bot force-pushed the renovate/getmeili-meilisearch-1.x branch from 10cfa9a to 2905358 Compare January 30, 2025 19:33
@renovate renovate bot changed the title Update getmeili/meilisearch Docker tag to v1.12.8 Update getmeili/meilisearch Docker tag to v1.13.0 Feb 17, 2025
@renovate renovate bot force-pushed the renovate/getmeili-meilisearch-1.x branch from 2905358 to 7cf50c5 Compare February 17, 2025 11:06
@renovate renovate bot force-pushed the renovate/getmeili-meilisearch-1.x branch from 7cf50c5 to 7bfdf75 Compare February 26, 2025 16:05
@renovate renovate bot changed the title Update getmeili/meilisearch Docker tag to v1.13.0 Update getmeili/meilisearch Docker tag to v1.13.1 Feb 26, 2025
@renovate renovate bot force-pushed the renovate/getmeili-meilisearch-1.x branch from 7bfdf75 to baaca16 Compare February 27, 2025 16:29
@renovate renovate bot changed the title Update getmeili/meilisearch Docker tag to v1.13.1 Update getmeili/meilisearch Docker tag to v1.13.2 Feb 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants