meilisearch @ v1.29.0
integrity
- size
- 19.9 MiB
- downloaded
- last checked
release notes
Build compatibility note
The git binary must now be present at build time to populate the commitSha1 field of the /version field.
This change was made for build performance reasons.
by @dureuill in https://github.com/meilisearch/meilisearch/pull/6030
🌈 Improvements
Another piece of the settings indexer is available: searchable and exact attributes
The new settings indexer scales better, supports near-instant cancellations and displays the progress of the indexing operation.
Previously, the new settings indexer was enabled only if the only changes in a settings batch were to embedder settings. In Meilisearch v1.29.0, the new settings indexer will be enabled if the change is any combination of:
searchableAttributesexactAttributesproximityPrecisionembedders(as before)
Any other change to settings appearing in a batch will cause the batch to use the legacy settings indexer. Additionally, the new settings indexer is currently disabled by default for Cloud users.
OSS users who would like to disable the new settings indexer should pass the MEILI_EXPERIMENTAL_NO_EDITION_2024_FOR_SETTINGS environment variable to true.
by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/5983
Enable the new vector store by default for new indexes
Meilisearch v1.21.0 introduced a new vector store backend providing better performance and relevancy.
Starting with v1.29.0, any newly created index will default to the new backend. Existing indexes will be left unchanged.
It is still possible to explicitly choose the vector store backend, please refer to the relevant experimental feature discussion page.
by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/6004
Support more models for huggingFace embedder
You can now select models with the XLM Roberta architecture when generating embeddings locally on CPU or GPU with the huggingFace embedder.
by @qdequele in https://github.com/meilisearch/meilisearch/pull/6018
🦋 Bug fixes
- Fix rare internal error in the experimental vector store by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/6032
🔧 Maintenance and Misc.
Last week was a Quality of Life week, and while we still had improvements in the pipe, the bulk of our work was dedicated to maintenance tasks.
Most notably, the CI is now faster, going from over one hour to less than 30 minutes, and also more reliable as it automatically tests the dumpless upgrade.
- New workload to run declarative tests. This is, in particular, very useful to automatically test the dumpless upgrade. By @Mubelotix in https://github.com/meilisearch/meilisearch/pull/5861
- The code that applies the dumpless upgrade migrations was rewritten to make it easier to maintain. By @dureuill in https://github.com/meilisearch/meilisearch/pull/6029
- We no longer run macOS and Windows tests at PR time. These CI jobs were very slow and given their limited impact they will only be run on the nightly builds. Ny @Kerollmops in https://github.com/meilisearch/meilisearch/pull/6021
- Send notifications for Kubernetes integration when releasing by @curquiza in https://github.com/meilisearch/meilisearch/pull/6023
- Introduce
xtasksub-command to generate prototype tag names with the expected nomenclature by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/6022 - Fix misc. CI issues by @dureuill in https://github.com/meilisearch/meilisearch/pull/6026
Asset availability note
⚠️ The Meilisearch binary is not available for meilisearch-enterprise-macos-amd64 and meilisearch-macos-amd64 due to a compilation oversight. https://github.com/meilisearch/meilisearch/pull/6037 aims at fixing this for future releases.
The more recent meilisearch-enterprise-macos-apple-silicon and meilisearch-macos-apple-silicon are fine.
Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.28.2...v1.29.0
download
curl -fL -o v1.29.0.zip https://ratatoskr.space/pkg/meilisearch/v1.29.0.zip
printf '%s %s\n' '3222567f1434b87d6e2e1c5bf0d7182bf527d931bcf39797b4e67841024ad10a' 'v1.29.0.zip' | sha256sum -c -
$url = "https://ratatoskr.space/pkg/meilisearch/v1.29.0.zip"
$out = "v1.29.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3222567f1434b87d6e2e1c5bf0d7182bf527d931bcf39797b4e67841024ad10a") { throw "sha256 mismatch" }
curl -fL -o v1.29.0.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.29.0.tar.gz
printf '%s %s\n' 'e8921a3f460812f7bd745ccdef6458a070842f0d8d14f978a93a0596d56cf54d' 'v1.29.0.tar.gz' | sha256sum -c -
$url = "https://ratatoskr.space/pkg/meilisearch/v1.29.0.tar.gz"
$out = "v1.29.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e8921a3f460812f7bd745ccdef6458a070842f0d8d14f978a93a0596d56cf54d") { throw "sha256 mismatch" }
download via yggdrasil mesh
curl -fL -o v1.29.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.29.0.zip
printf '%s %s\n' '3222567f1434b87d6e2e1c5bf0d7182bf527d931bcf39797b4e67841024ad10a' 'v1.29.0.zip' | sha256sum -c -
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.29.0.zip"
$out = "v1.29.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3222567f1434b87d6e2e1c5bf0d7182bf527d931bcf39797b4e67841024ad10a") { throw "sha256 mismatch" }
curl -fL -o v1.29.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.29.0.tar.gz
printf '%s %s\n' 'e8921a3f460812f7bd745ccdef6458a070842f0d8d14f978a93a0596d56cf54d' 'v1.29.0.tar.gz' | sha256sum -c -
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.29.0.tar.gz"
$out = "v1.29.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e8921a3f460812f7bd745ccdef6458a070842f0d8d14f978a93a0596d56cf54d") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.29.0.zip | zip | 19.9 MiB |
blake3-24 c3880afbcb764a4961718c3d85c6d9600ad03ea9daf6ac5d
sha256 3222567f1434b87d6e2e1c5bf0d7182bf527d931bcf39797b4e67841024ad10a
sha1 536fcfd6ca1109506db660156f4fbad391e85f10
|
| v1.29.0.tar.gz | tar.gz | 19.1 MiB |
blake3-24 c6432f347b975ed7e1ce52b7c8f8744e436d3728ed7f09bd
sha256 e8921a3f460812f7bd745ccdef6458a070842f0d8d14f978a93a0596d56cf54d
sha1 bd81aa1ac08b708ac8ff0df9274f3c0b5f2f85e1
|
install
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.29.0.tar.gz"],
integrity = "sha256-6JIaP0YIEve9dFzN72RYoHCELw2NFPl4qToFltVs9U0=",
strip_prefix = "meilisearch-v1.29.0",
)
.url = "https://ratatoskr.space/pkg/meilisearch/v1.29.0.tar.gz",
install via yggdrasil mesh
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.29.0.tar.gz"],
integrity = "sha256-6JIaP0YIEve9dFzN72RYoHCELw2NFPl4qToFltVs9U0=",
strip_prefix = "meilisearch-v1.29.0",
)
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.29.0.tar.gz",