Update getmeili/meilisearch Docker tag to v1.43.1 #24

Merged
kreativmonkey merged 1 commit from renovate/getmeili-meilisearch-1.x into main 2026-05-25 22:04:36 +02:00
Collaborator

This PR contains the following updates:

Package Update Change Pending
getmeili/meilisearch minor v1.42.1v1.43.1 v1.44.0

Release Notes

meilisearch/meilisearch (getmeili/meilisearch)

v1.43.1

Compare Source

Meilisearch v1.43.1 contains a security fix for an authenticated SSRF vulnerability.

No exploitation was found on Meilisearch Cloud. Cloud users are not required to update.

We recommend that self-hosting users upgrade if they allow third parties to configure Meilisearch instances.

We thank Sion Park (@​tldhs1144), who reported the issue and suggested a fix, for improving the security of Meilisearch ❤️

v1.43.0

Compare Source

🌈 Enhancements

New settings indexer

The new settings indexer, a more efficient version of our internal indexer for index settings modifications, now supports filterable, sortable, facet search, and custom (asc/desc) attributes in addition to the already-supported searchable, exact, proximity precision, and embedders.

  • For Meilisearch Cloud users, the new settings indexer is disabled by default and can be enabled on a case-by-case basis for scaling purposes.
  • For OSS users, the new settings indexer can be disabled by setting the MEILI_EXPERIMENTAL_NO_EDITION_2024_FOR_SETTINGS to true.

By @​Kerollmops in #​6124

Improve facet search indexing performance

We reduced the time to generate the internal data structures for the facet search to work. We were previously doing a couple of full scans on the internal entries and replaced these with scans on specific entries, only the ones dedicated to the facet searchable fields.

By @​Kerollmops in #​6325

Improve task queue compaction integration

The GET /health route now returns HTTP 500 after a successful task queue compaction, to signal that Meilisearch should be restarted so that tasks can be enqueued again.

For Meilisearch Cloud users, this ensures that compacting the task queue will automatically restart the instance after the compaction.

🦋 Fixes

Fix lexicographic filters on strings

Fixes a bug where string facet values appearing in <, <=, >, >= and IN filters were not normalized before comparison to facet values.

This would cause some values in documents (e.g. 2026-01-01T00:00:00) to appear to be higher than their filter counterpart, due to being normalized (e.g. like 2026-01-01t00:00:00).

Thanks to @​njaard for reporting the issue ❤️

By @​dureuill in #​6340

Fix typo tolerance v1.41 regression

Fixes the WordDelta::added_or_deleted_words function.

By @​Kerollmops in #​6350.

Thanks to @​vladradin99 and @​snurfer0 for reporting the issue in #​6349 and #​6324 ❤️

🔩 Miscellaneous

Thanks again @​gounthar, @​njaard, @​vladradin99 and @​snurfer0 for your contributions ❤️

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.42.1...v1.43.0


Configuration

📅 Schedule: (in timezone Europe/Berlin)

  • 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 has been generated by Mend Renovate.

This PR contains the following updates: | Package | Update | Change | Pending | |---|---|---|---| | [getmeili/meilisearch](https://github.com/meilisearch/meilisearch) | minor | `v1.42.1` → `v1.43.1` | `v1.44.0` | --- ### Release Notes <details> <summary>meilisearch/meilisearch (getmeili/meilisearch)</summary> ### [`v1.43.1`](https://github.com/meilisearch/meilisearch/releases/tag/v1.43.1) [Compare Source](https://github.com/meilisearch/meilisearch/compare/v1.43.0...v1.43.1) Meilisearch v1.43.1 contains a security fix for an authenticated SSRF vulnerability. No exploitation was found on Meilisearch Cloud. Cloud users are not required to update. We recommend that self-hosting users upgrade if they allow third parties to configure Meilisearch instances. We thank Sion Park ([@&#8203;tldhs1144](https://github.com/tldhs1144)), who reported the issue and suggested a fix, for improving the security of Meilisearch ❤️ ### [`v1.43.0`](https://github.com/meilisearch/meilisearch/releases/tag/v1.43.0) [Compare Source](https://github.com/meilisearch/meilisearch/compare/v1.42.1...v1.43.0) ### 🌈 Enhancements #### New settings indexer The new settings indexer, a more efficient version of our internal indexer for index settings modifications, now supports filterable, sortable, facet search, and custom (asc/desc) attributes in addition to the already-supported searchable, exact, proximity precision, and embedders. - For Meilisearch Cloud users, the new settings indexer is disabled by default and can be enabled on a case-by-case basis for scaling purposes. - For OSS users, the new settings indexer can be disabled by setting the `MEILI_EXPERIMENTAL_NO_EDITION_2024_FOR_SETTINGS` to `true`. By [@&#8203;Kerollmops](https://github.com/Kerollmops) in [#&#8203;6124](https://github.com/meilisearch/meilisearch/pull/6124) #### Improve facet search indexing performance We reduced the time to generate the internal data structures for the facet search to work. We were previously doing a couple of full scans on the internal entries and replaced these with scans on specific entries, only the ones dedicated to the facet searchable fields. By [@&#8203;Kerollmops](https://github.com/Kerollmops) in [#&#8203;6325](https://github.com/meilisearch/meilisearch/pull/6325) #### Improve task queue compaction integration The `GET /health` route now returns HTTP 500 after a successful task queue compaction, to signal that Meilisearch should be restarted so that tasks can be enqueued again. For Meilisearch Cloud users, this ensures that compacting the task queue will automatically restart the instance after the compaction. ### 🦋 Fixes #### Fix lexicographic filters on strings Fixes a bug where string facet values appearing in `<, <=, >, >=` and `IN` filters were not normalized before comparison to facet values. This would cause some values in documents (e.g. `2026-01-01T00:00:00`) to appear to be higher than their filter counterpart, due to being normalized (e.g. like `2026-01-01t00:00:00`). Thanks to [@&#8203;njaard](https://github.com/njaard) for [reporting the issue](https://github.com/meilisearch/meilisearch/issues/6335) ❤️ By [@&#8203;dureuill](https://github.com/dureuill) in [#&#8203;6340](https://github.com/meilisearch/meilisearch/pull/6340) #### Fix typo tolerance v1.41 regression Fixes the `WordDelta::added_or_deleted_words` function. By [@&#8203;Kerollmops](https://github.com/Kerollmops) in [#&#8203;6350](https://github.com/meilisearch/meilisearch/pull/6350). Thanks to [@&#8203;vladradin99](https://github.com/vladradin99) and [@&#8203;snurfer0](https://github.com/snurfer0) for reporting the issue in [#&#8203;6349](https://github.com/meilisearch/meilisearch/issues/6349) and [#&#8203;6324](https://github.com/meilisearch/meilisearch/issues/6324) :heart: ### 🔩 Miscellaneous - Introduce a meilitool command to export an index words FST by [@&#8203;Kerollmops](https://github.com/Kerollmops) in [#&#8203;6332](https://github.com/meilisearch/meilisearch/pull/6332) - Add riscv64 to release binary matrix via cross-rs by [@&#8203;gounthar](https://github.com/gounthar) in [#&#8203;6296](https://github.com/meilisearch/meilisearch/pull/6296) - Fix docs related to task cancelation and deletion by [@&#8203;curquiza](https://github.com/curquiza) in [#&#8203;6353](https://github.com/meilisearch/meilisearch/pull/6353) - Bump actions/checkout from 5 to 6 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6303](https://github.com/meilisearch/meilisearch/pull/6303) - Bump actions/setup-node from 4 to 6 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;5964](https://github.com/meilisearch/meilisearch/pull/5964) - Bump thin-vec from 0.2.14 to 0.2.16 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6339](https://github.com/meilisearch/meilisearch/pull/6339) - Bump docker/setup-buildx-action from 3 to 4 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6304](https://github.com/meilisearch/meilisearch/pull/6304) - Bump rustls-webpki from 0.103.10 to 0.103.13 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6347](https://github.com/meilisearch/meilisearch/pull/6347) - Bump actix-http from 3.11.2 to 3.12.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6348](https://github.com/meilisearch/meilisearch/pull/6348) - Bump sigstore/cosign-installer from 3.10.0 to 4.1.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6301](https://github.com/meilisearch/meilisearch/pull/6301) - Bump supercharge/mongodb-github-action from 1.12.0 to 1.12.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;6302](https://github.com/meilisearch/meilisearch/pull/6302) Thanks again [@&#8203;gounthar](https://github.com/gounthar), [@&#8203;njaard](https://github.com/njaard), [@&#8203;vladradin99](https://github.com/vladradin99) and [@&#8203;snurfer0](https://github.com/snurfer0) for your contributions ❤️ **Full Changelog**: <https://github.com/meilisearch/meilisearch/compare/v1.42.1...v1.43.0> </details> --- ### Configuration 📅 **Schedule**: (in timezone Europe/Berlin) - 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNzIuMCIsInVwZGF0ZWRJblZlciI6IjQzLjE4NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZSJdfQ==-->
diyon closed this pull request 2026-04-17 13:21:23 +02:00
Update getmeili/meilisearch Docker tag to v1.43.0
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
/ secret_scanner (push) Failing after 5s
861a000e34
Renovate force-pushed renovate/getmeili-meilisearch-1.x from 861a000e34
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
/ secret_scanner (push) Failing after 5s
to 18f1fc3e25
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
/ secret_scanner (push) Failing after 5s
2026-05-19 14:55:05 +02:00
Compare
Renovate changed title from Update getmeili/meilisearch Docker tag to v1.43.0 to Update getmeili/meilisearch Docker tag to v1.43.1 2026-05-19 14:55:06 +02:00
kreativmonkey deleted branch renovate/getmeili-meilisearch-1.x 2026-05-25 22:04:38 +02:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
kreativmonkey/homelab-app!24
No description provided.