vault / meilisearch / v1.28.0
meilisearch @ v1.28.0
integrity
- size
- 19.9 MiB
- downloaded
- last checked
release notes
This release introduces improvements to language support and separates the community and enterprise binary editions. We now offer binaries under the BUSL-1.1 license, identified by the "enterprise" term in their names, in addition to our MIT-licensed binaries, which retain their original names. Docker images for the enterprise edition are available in the getmeili/meilisearch-enterprise repository.
📝 Licensing
- Separation of EE and CE. CE remains the default binary, and the name does not change by Louis on #6011
✨ Enhancement
- Charabia v0.9.9: introduce a better word segmentation for Thai, Khmer, and German languages by @ManyTheFish in #6007
- Expose batch progress traces on the metrics route to improve the indexing debugging experience by @Kerollmops in #5956
🔩 Miscellaneous
- Remove version from the name of the test job in CI by @paulden in #6012
- Upgrade most of the dependencies by @Kerollmops in #6002
- Build x86 and ARM images on GitHub-hosted runners by @paulden in #6003
- Fix SDKs tests to use the enterprise edition and continue testing the sharding feature by @curquiza in #6013
🫂 New Contributors
- @paulden made their first contribution in #6003
Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.27.0...v1.28.0
download
unix · zip
curl -fL -o v1.28.0.zip https://ratatoskr.space/pkg/meilisearch/v1.28.0.zip
printf '%s %s\n' '2ac6ed5bef9fd3df7b98eb96cdf7662529531cdea53332be503a8234828d2e61' 'v1.28.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.28.0.zip"
$out = "v1.28.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2ac6ed5bef9fd3df7b98eb96cdf7662529531cdea53332be503a8234828d2e61") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.28.0.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.28.0.tar.gz
printf '%s %s\n' 'cc21d799bf0abb7de85c0d0cabaa5374cb5cfacbec822d310f539564fd65fca5' 'v1.28.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.28.0.tar.gz"
$out = "v1.28.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "cc21d799bf0abb7de85c0d0cabaa5374cb5cfacbec822d310f539564fd65fca5") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.28.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.28.0.zip
printf '%s %s\n' '2ac6ed5bef9fd3df7b98eb96cdf7662529531cdea53332be503a8234828d2e61' 'v1.28.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.28.0.zip"
$out = "v1.28.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2ac6ed5bef9fd3df7b98eb96cdf7662529531cdea53332be503a8234828d2e61") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.28.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.28.0.tar.gz
printf '%s %s\n' 'cc21d799bf0abb7de85c0d0cabaa5374cb5cfacbec822d310f539564fd65fca5' 'v1.28.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.28.0.tar.gz"
$out = "v1.28.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "cc21d799bf0abb7de85c0d0cabaa5374cb5cfacbec822d310f539564fd65fca5") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.28.0.zip | zip | 19.9 MiB |
blake3-24 8098bc307070ba0addee1cca90ca3fb7d91bdcf0e5079570
sha256 2ac6ed5bef9fd3df7b98eb96cdf7662529531cdea53332be503a8234828d2e61
sha1 34c6a40db8a7fbbaec7bf84432820ae4e5f158e4
|
| v1.28.0.tar.gz | tar.gz | 19.0 MiB |
blake3-24 ce1746b713648868c7d62981b82cfcfa9600cf3095cf00bf
sha256 cc21d799bf0abb7de85c0d0cabaa5374cb5cfacbec822d310f539564fd65fca5
sha1 24187264875d26fcc38811a4a8f38c415c4a947e
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.28.0.tar.gz"],
integrity = "sha256-zCHXmb8Ku33oXA0Mq6pTdMtc+svsgi0xD1OVZP1l/KU=",
strip_prefix = "meilisearch-v1.28.0",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.28.0.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.28.0.tar.gz"],
integrity = "sha256-zCHXmb8Ku33oXA0Mq6pTdMtc+svsgi0xD1OVZP1l/KU=",
strip_prefix = "meilisearch-v1.28.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.28.0.tar.gz",