lol

meilisearch: 0.30.5 -> 1.0.0

https://github.com/meilisearch/meilisearch/releases/tag/v1.0.0

authored by

Thomas Gerbet and committed by
Yt
e7e447a1 b0f8b297

+4 -4
+1 -1
nixos/modules/services/search/meilisearch.nix
··· 115 115 MEILI_HTTP_ADDR = "${cfg.listenAddress}:${toString cfg.listenPort}"; 116 116 MEILI_NO_ANALYTICS = toString cfg.noAnalytics; 117 117 MEILI_ENV = cfg.environment; 118 - MEILI_DUMPS_DIR = "/var/lib/meilisearch/dumps"; 118 + MEILI_DUMP_DIR = "/var/lib/meilisearch/dumps"; 119 119 MEILI_LOG_LEVEL = cfg.logLevel; 120 120 MEILI_MAX_INDEX_SIZE = cfg.maxIndexSize; 121 121 };
+3 -3
pkgs/servers/search/meilisearch/default.nix
··· 8 8 , nixosTests 9 9 }: 10 10 11 - let version = "0.30.5"; 11 + let version = "1.0.0"; 12 12 in 13 13 rustPlatform.buildRustPackage { 14 14 pname = "meilisearch"; ··· 18 18 owner = "meilisearch"; 19 19 repo = "MeiliSearch"; 20 20 rev = "v${version}"; 21 - hash = "sha256-DvMMBF5Z2VdV3ObuD/gquZeimglyzFFVzgUq+/ra+Hc="; 21 + hash = "sha256-XWPJldWxe8iply7XtmDem1gfbNuuaWuFdMfuCbcU6tc="; 22 22 }; 23 23 24 - cargoHash = "sha256-vA3DhGc0EuSdUeXYyG5iuuy7yK+22xPJjI67+/ctUFA="; 24 + cargoHash = "sha256-v8P4pbTJ/t9TgB07tyhn3y8q65xILFTbBgziw5kuxUQ="; 25 25 26 26 # Default features include mini dashboard which downloads something from the internet. 27 27 buildNoDefaultFeatures = true;