vault / meilisearch / v1.8.4
meilisearch @ v1.8.4
integrity
- size
- 14.8 MiB
- downloaded
- last checked
release notes
Improvements
- Generate vectors in dumps by @dureuill in https://github.com/meilisearch/meilisearch/pull/4796
- this version provides an upgrade path to v1.9 without regenerating embeddings for autogenerating embedders.
- to upgrade from v1.8.x to v1.9.0 without regenerating embeddings, please follow the following procedure:
- Upgrade from v1.8.x to v1.8.4 by simply restarting Meilisearch v1.8.4 on you v1.8.x DB. No dump is necessary at this step
- Create a dump.
- Import the created dump in a Meilisearch v1.9
download
unix · zip
curl -fL -o v1.8.4.zip https://ratatoskr.space/pkg/meilisearch/v1.8.4.zip
printf '%s %s\n' '056de2955f61a4b148a872df1238159f04280575bd0a4b2c116c87055bb77d60' 'v1.8.4.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.8.4.zip"
$out = "v1.8.4.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "056de2955f61a4b148a872df1238159f04280575bd0a4b2c116c87055bb77d60") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.8.4.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.8.4.tar.gz
printf '%s %s\n' 'e86c9b5d305f090af1e14a1a3b3a422e5ba94f183f020a8514b9993f3ef1756e' 'v1.8.4.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.8.4.tar.gz"
$out = "v1.8.4.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e86c9b5d305f090af1e14a1a3b3a422e5ba94f183f020a8514b9993f3ef1756e") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.8.4.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.4.zip
printf '%s %s\n' '056de2955f61a4b148a872df1238159f04280575bd0a4b2c116c87055bb77d60' 'v1.8.4.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.4.zip"
$out = "v1.8.4.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "056de2955f61a4b148a872df1238159f04280575bd0a4b2c116c87055bb77d60") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.8.4.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.4.tar.gz
printf '%s %s\n' 'e86c9b5d305f090af1e14a1a3b3a422e5ba94f183f020a8514b9993f3ef1756e' 'v1.8.4.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.4.tar.gz"
$out = "v1.8.4.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e86c9b5d305f090af1e14a1a3b3a422e5ba94f183f020a8514b9993f3ef1756e") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.8.4.zip | zip | 14.8 MiB |
blake3-24 57100a1a0796ae53197e2563245af3e440871f5b34c6fc1b
sha256 056de2955f61a4b148a872df1238159f04280575bd0a4b2c116c87055bb77d60
sha1 22f41cb18308898af296e49b29741d95c91afb3b
|
| v1.8.4.tar.gz | tar.gz | 14.2 MiB |
blake3-24 67c4908220ad7c003b6d8aae422f98b670962185d9e075dd
sha256 e86c9b5d305f090af1e14a1a3b3a422e5ba94f183f020a8514b9993f3ef1756e
sha1 5345b10b690d9eb1093958b2e496cf0d4ba9175a
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.8.4.tar.gz"],
integrity = "sha256-6GybXTBfCQrx4UoaOzpCLlupTxg/AgqFFLmZPz7xdW4=",
strip_prefix = "meilisearch-v1.8.4",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.8.4.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.4.tar.gz"],
integrity = "sha256-6GybXTBfCQrx4UoaOzpCLlupTxg/AgqFFLmZPz7xdW4=",
strip_prefix = "meilisearch-v1.8.4",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.8.4.tar.gz",