vault / meilisearch / v1.7.5
meilisearch @ v1.7.5
integrity
- size
- 14.8 MiB
- downloaded
- last checked
release notes
After a security flaw has been discovered in the implementation of http2, it’s possible for an attacker to slow down your instance; see this link for more information.
This PR updates our web stack to the latest version containing a fix against this attack.
What's Changed
- update h2 by @irevoire in https://github.com/meilisearch/meilisearch/pull/4553
Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.7.4...v1.7.5
download
unix · zip
curl -fL -o v1.7.5.zip https://ratatoskr.space/pkg/meilisearch/v1.7.5.zip
printf '%s %s\n' '04aad5c2cdf81245d80b5d52f4e3389759636c4a0d304fd2a07a64b45ffc4b64' 'v1.7.5.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.7.5.zip"
$out = "v1.7.5.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "04aad5c2cdf81245d80b5d52f4e3389759636c4a0d304fd2a07a64b45ffc4b64") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.7.5.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.7.5.tar.gz
printf '%s %s\n' 'bc8d0b88e81509142275655f6d5e7ccf61daa9d78083262e0bcb85f2677110c0' 'v1.7.5.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.7.5.tar.gz"
$out = "v1.7.5.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bc8d0b88e81509142275655f6d5e7ccf61daa9d78083262e0bcb85f2677110c0") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.7.5.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.7.5.zip
printf '%s %s\n' '04aad5c2cdf81245d80b5d52f4e3389759636c4a0d304fd2a07a64b45ffc4b64' 'v1.7.5.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.7.5.zip"
$out = "v1.7.5.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "04aad5c2cdf81245d80b5d52f4e3389759636c4a0d304fd2a07a64b45ffc4b64") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.7.5.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.7.5.tar.gz
printf '%s %s\n' 'bc8d0b88e81509142275655f6d5e7ccf61daa9d78083262e0bcb85f2677110c0' 'v1.7.5.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.7.5.tar.gz"
$out = "v1.7.5.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bc8d0b88e81509142275655f6d5e7ccf61daa9d78083262e0bcb85f2677110c0") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.7.5.zip | zip | 14.7 MiB |
blake3-24 2b56d370fe587c2afea3a6abd3227bfffa18908c0bba70dc
sha256 04aad5c2cdf81245d80b5d52f4e3389759636c4a0d304fd2a07a64b45ffc4b64
sha1 fd0d6e95399fd018033951fe34d6ab98f920cd0c
|
| v1.7.5.tar.gz | tar.gz | 14.2 MiB |
blake3-24 cc4916413e19a4f0752473352ede93aa5c74df75c46cec03
sha256 bc8d0b88e81509142275655f6d5e7ccf61daa9d78083262e0bcb85f2677110c0
sha1 43c9b238124bd26a97ed320b0befe89dda579834
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.7.5.tar.gz"],
integrity = "sha256-vI0LiOgVCRQidWVfbV58z2HaqdeAgyYuC8uF8mdxEMA=",
strip_prefix = "meilisearch-v1.7.5",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.7.5.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.7.5.tar.gz"],
integrity = "sha256-vI0LiOgVCRQidWVfbV58z2HaqdeAgyYuC8uF8mdxEMA=",
strip_prefix = "meilisearch-v1.7.5",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.7.5.tar.gz",