vault / meilisearch / v1.15.2
meilisearch @ v1.15.2
integrity
- size
- 19.6 MiB
- downloaded
- last checked
release notes
This patch release introduces a major fix and some minor fixes.
Major fix: searchable attributes database bug
Some searchable fields were removed from the searchable databases when they were removed from the filterableAttributes setting.
This made them unsearchable, although they were still precise in the searchableAttributes setting.
Fixed by @ManyTheFish in https://github.com/meilisearch/meilisearch/pull/5660
Minor fixes
- Fix chat route missing base URL and Mistral error handling by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/5665
- Various fixes to embedding regeneration by @dureuill in https://github.com/meilisearch/meilisearch/pull/5668
download
unix · zip
curl -fL -o v1.15.2.zip https://ratatoskr.space/pkg/meilisearch/v1.15.2.zip
printf '%s %s\n' '913611054b653d764d2bdc73e323ad820ceb9114268ff11c2a84a398bb2e1f89' 'v1.15.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.15.2.zip"
$out = "v1.15.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "913611054b653d764d2bdc73e323ad820ceb9114268ff11c2a84a398bb2e1f89") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.15.2.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.15.2.tar.gz
printf '%s %s\n' 'c21105b2d5a0d5e59873537edd5311096145a9a95734c2200983a13b79b8dd9e' 'v1.15.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.15.2.tar.gz"
$out = "v1.15.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c21105b2d5a0d5e59873537edd5311096145a9a95734c2200983a13b79b8dd9e") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.15.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.15.2.zip
printf '%s %s\n' '913611054b653d764d2bdc73e323ad820ceb9114268ff11c2a84a398bb2e1f89' 'v1.15.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.15.2.zip"
$out = "v1.15.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "913611054b653d764d2bdc73e323ad820ceb9114268ff11c2a84a398bb2e1f89") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.15.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.15.2.tar.gz
printf '%s %s\n' 'c21105b2d5a0d5e59873537edd5311096145a9a95734c2200983a13b79b8dd9e' 'v1.15.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.15.2.tar.gz"
$out = "v1.15.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c21105b2d5a0d5e59873537edd5311096145a9a95734c2200983a13b79b8dd9e") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.15.2.zip | zip | 19.6 MiB |
blake3-24 bf3fabf43c16ba3a59c332c43d37132fc451d6dc2d054b69
sha256 913611054b653d764d2bdc73e323ad820ceb9114268ff11c2a84a398bb2e1f89
sha1 abc031b95551bb10ad1cc5b3190a579dd9488f8b
|
| v1.15.2.tar.gz | tar.gz | 18.8 MiB |
blake3-24 d7779f1fc2ca5c1379d24cdf6dfab1c79beed139e4321895
sha256 c21105b2d5a0d5e59873537edd5311096145a9a95734c2200983a13b79b8dd9e
sha1 d351b7fd7fadd20afae9d62ea005685abef4bcd5
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.15.2.tar.gz"],
integrity = "sha256-whEFstWg1eWYc1N+3VMRCWFFqalXNMIgCYOhO3m43Z4=",
strip_prefix = "meilisearch-v1.15.2",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.15.2.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.15.2.tar.gz"],
integrity = "sha256-whEFstWg1eWYc1N+3VMRCWFFqalXNMIgCYOhO3m43Z4=",
strip_prefix = "meilisearch-v1.15.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.15.2.tar.gz",