vault / meilisearch / v1.8.2
meilisearch @ v1.8.2
integrity
- size
- 14.8 MiB
- downloaded
- last checked
release notes
Fixes 🪲
- Fix concurrency issue by @dureuill in https://github.com/meilisearch/meilisearch/pull/4681
Thanks to @savikko for first reporting the issue :heart:
download
unix · zip
curl -fL -o v1.8.2.zip https://ratatoskr.space/pkg/meilisearch/v1.8.2.zip
printf '%s %s\n' 'ed8f61e36180fd4e9e36544a2b8fab21323ea8854860bcd4c0c147da48f1a0ec' 'v1.8.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.8.2.zip"
$out = "v1.8.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ed8f61e36180fd4e9e36544a2b8fab21323ea8854860bcd4c0c147da48f1a0ec") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.8.2.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.8.2.tar.gz
printf '%s %s\n' 'a97160a3fe73672d9a8800959dfb8d45e6bcfcb9dc2e9167efad2ff78246fa1f' 'v1.8.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.8.2.tar.gz"
$out = "v1.8.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a97160a3fe73672d9a8800959dfb8d45e6bcfcb9dc2e9167efad2ff78246fa1f") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.8.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.2.zip
printf '%s %s\n' 'ed8f61e36180fd4e9e36544a2b8fab21323ea8854860bcd4c0c147da48f1a0ec' 'v1.8.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.2.zip"
$out = "v1.8.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ed8f61e36180fd4e9e36544a2b8fab21323ea8854860bcd4c0c147da48f1a0ec") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.8.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.2.tar.gz
printf '%s %s\n' 'a97160a3fe73672d9a8800959dfb8d45e6bcfcb9dc2e9167efad2ff78246fa1f' 'v1.8.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.2.tar.gz"
$out = "v1.8.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a97160a3fe73672d9a8800959dfb8d45e6bcfcb9dc2e9167efad2ff78246fa1f") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.8.2.zip | zip | 14.8 MiB |
blake3-24 c72bb5381a91098da6e02bb893eb35943c100ae12a7eda44
sha256 ed8f61e36180fd4e9e36544a2b8fab21323ea8854860bcd4c0c147da48f1a0ec
sha1 a0a9ec35a66386c08cbaad70ab971f2bb27fc9e8
|
| v1.8.2.tar.gz | tar.gz | 14.2 MiB |
blake3-24 b0866e20cefbd4318afc60b8981a66b42b99f57ab1c6fc6f
sha256 a97160a3fe73672d9a8800959dfb8d45e6bcfcb9dc2e9167efad2ff78246fa1f
sha1 eef5a4a9bafd3795dcd82f6f1282354c0486412c
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.8.2.tar.gz"],
integrity = "sha256-qXFgo/5zZy2aiACVnfuNRea8/LncLpFn760v94JG+h8=",
strip_prefix = "meilisearch-v1.8.2",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.8.2.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.2.tar.gz"],
integrity = "sha256-qXFgo/5zZy2aiACVnfuNRea8/LncLpFn760v94JG+h8=",
strip_prefix = "meilisearch-v1.8.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.2.tar.gz",