vault / meilisearch / v1.35.1
meilisearch @ v1.35.1
integrity
- size
- 20.2 MiB
- downloaded
- last checked
release notes
🦋 Bug fixes
Meilisearch v1.35.1 fixes a possible task database corruption issue that would occur when using the S3 streaming snapshot method.
- Users of the Community Edition do not need to upgrade as this feature is Enterprise Edition only
- Affected users of the Cloud have been contacted.
Details
While snapshotting the task database, sending a task to Meilisearch could corrupt it. Index DBs were not affected, so manually rebuilding the task database fixes the corruption.
By @dureuill in #6160
Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.35.0...v1.35.1
download
unix · zip
curl -fL -o v1.35.1.zip https://ratatoskr.space/pkg/meilisearch/v1.35.1.zip
printf '%s %s\n' '21f9bd160e37fceda4c0b15007964d53c044c82f536b002e26a5d325d887a842' 'v1.35.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.35.1.zip"
$out = "v1.35.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "21f9bd160e37fceda4c0b15007964d53c044c82f536b002e26a5d325d887a842") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.35.1.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.35.1.tar.gz
printf '%s %s\n' '215a206896561d3637a2c2f6ea6f10241aa54a695ed936a5427be912c17b1229' 'v1.35.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.35.1.tar.gz"
$out = "v1.35.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "215a206896561d3637a2c2f6ea6f10241aa54a695ed936a5427be912c17b1229") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.35.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.35.1.zip
printf '%s %s\n' '21f9bd160e37fceda4c0b15007964d53c044c82f536b002e26a5d325d887a842' 'v1.35.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.35.1.zip"
$out = "v1.35.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "21f9bd160e37fceda4c0b15007964d53c044c82f536b002e26a5d325d887a842") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.35.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.35.1.tar.gz
printf '%s %s\n' '215a206896561d3637a2c2f6ea6f10241aa54a695ed936a5427be912c17b1229' 'v1.35.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.35.1.tar.gz"
$out = "v1.35.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "215a206896561d3637a2c2f6ea6f10241aa54a695ed936a5427be912c17b1229") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.35.1.zip | zip | 20.2 MiB |
blake3-24 0915168b9d331a8cff194b5f44e478bfcd03e78cd18dc4df
sha256 21f9bd160e37fceda4c0b15007964d53c044c82f536b002e26a5d325d887a842
sha1 52b881dbdc6e610290e484d120c5745a6ef3cffd
|
| v1.35.1.tar.gz | tar.gz | 19.2 MiB |
blake3-24 a016a4b7cc7b3ffde12fa2992ae730bb6c7f27b3fae1ce26
sha256 215a206896561d3637a2c2f6ea6f10241aa54a695ed936a5427be912c17b1229
sha1 d1878893dbca38ceffcfecac573f65e7825036c7
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.35.1.tar.gz"],
integrity = "sha256-IVogaJZWHTY3osL26m8QJBqlSmle2TalQnvpEsF7Eik=",
strip_prefix = "meilisearch-v1.35.1",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.35.1.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.35.1.tar.gz"],
integrity = "sha256-IVogaJZWHTY3osL26m8QJBqlSmle2TalQnvpEsF7Eik=",
strip_prefix = "meilisearch-v1.35.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.35.1.tar.gz",