vault / meilisearch / v1.1.1
meilisearch @ v1.1.1
integrity
- size
- 13.7 MiB
- downloaded
- last checked
release notes
🚨 Replaces v1.1.0. We recommend upgrading from v1.1.0.
⚠️ If you encountered issue #3664, have already tried to download this version and still have the bug, it means your database is corrupted. The only way you can recover your data is to send your documents again in a fresh index. Using a dump will not work, either. We are sorry for the inconvenience.
Bug fixes
- Disable auto-batching of additions and deletions (#3667, fixes #3664) @dureuill
- Stops receiving tasks once the task queue is full (#3659 & #3673) @irevoire & @dureuill
❤️ Thanks again to our external contributors:
- Meilisearch: @phaistonian for testing the prototype fix for #3664
download
unix · zip
curl -fL -o v1.1.1.zip https://ratatoskr.space/pkg/meilisearch/v1.1.1.zip
printf '%s %s\n' '960d91b72e840ee82ed8cc45dd7db25a4fc5629a1917ef7edab8930a0d15f956' 'v1.1.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.1.1.zip"
$out = "v1.1.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "960d91b72e840ee82ed8cc45dd7db25a4fc5629a1917ef7edab8930a0d15f956") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.1.1.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.1.1.tar.gz
printf '%s %s\n' 'c9e90d6290469556c1802dade4b6d3cfb2c427fb4c1cb1cb2879c84769ae877a' 'v1.1.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.1.1.tar.gz"
$out = "v1.1.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c9e90d6290469556c1802dade4b6d3cfb2c427fb4c1cb1cb2879c84769ae877a") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.1.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.1.1.zip
printf '%s %s\n' '960d91b72e840ee82ed8cc45dd7db25a4fc5629a1917ef7edab8930a0d15f956' 'v1.1.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.1.1.zip"
$out = "v1.1.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "960d91b72e840ee82ed8cc45dd7db25a4fc5629a1917ef7edab8930a0d15f956") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.1.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.1.1.tar.gz
printf '%s %s\n' 'c9e90d6290469556c1802dade4b6d3cfb2c427fb4c1cb1cb2879c84769ae877a' 'v1.1.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.1.1.tar.gz"
$out = "v1.1.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c9e90d6290469556c1802dade4b6d3cfb2c427fb4c1cb1cb2879c84769ae877a") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.1.1.zip | zip | 13.6 MiB |
blake3-24 5282d16ca49dc261a25655dbda4f0ccf6f47a5c3079480e3
sha256 960d91b72e840ee82ed8cc45dd7db25a4fc5629a1917ef7edab8930a0d15f956
sha1 19ed29b236b29ca8276ba9eeb44c50474369a489
|
| v1.1.1.tar.gz | tar.gz | 13.2 MiB |
blake3-24 440a490cdd48861e6d72583fb86b1fe6adbc166501c9ad28
sha256 c9e90d6290469556c1802dade4b6d3cfb2c427fb4c1cb1cb2879c84769ae877a
sha1 6213316981e11c7d905709fd6b878f481daa189f
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.1.1.tar.gz"],
integrity = "sha256-yekNYpBGlVbBgC2t5LbTz7LEJ/tMHLHLKHnIR2muh3o=",
strip_prefix = "meilisearch-v1.1.1",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.1.1.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.1.1.tar.gz"],
integrity = "sha256-yekNYpBGlVbBgC2t5LbTz7LEJ/tMHLHLKHnIR2muh3o=",
strip_prefix = "meilisearch-v1.1.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.1.1.tar.gz",