2480: Bring release v0.27.2 changes into stable r=Kerollmops a=curquiza



Co-authored-by: Tamo <tamo@meilisearch.com>
This commit is contained in:
bors[bot] 2022-06-08 13:08:26 +00:00 committed by GitHub
commit 617802bae7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 18 deletions

24
Cargo.lock generated
View File

@ -1092,8 +1092,8 @@ dependencies = [
[[package]]
name = "filter-parser"
version = "0.26.4"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.26.5#1f6dc31e2f8ee02cdda255a856d15f253daf17ec"
version = "0.26.6"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.26.6#955aff48853c6032c75970dc710929f08b4f711a"
dependencies = [
"nom",
"nom_locate",
@ -1119,8 +1119,8 @@ dependencies = [
[[package]]
name = "flatten-serde-json"
version = "0.26.4"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.26.5#1f6dc31e2f8ee02cdda255a856d15f253daf17ec"
version = "0.26.6"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.26.6#955aff48853c6032c75970dc710929f08b4f711a"
dependencies = [
"serde_json",
]
@ -1622,8 +1622,8 @@ dependencies = [
[[package]]
name = "json-depth-checker"
version = "0.26.4"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.26.5#1f6dc31e2f8ee02cdda255a856d15f253daf17ec"
version = "0.26.6"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.26.6#955aff48853c6032c75970dc710929f08b4f711a"
dependencies = [
"serde_json",
]
@ -1950,7 +1950,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "meilisearch-auth"
version = "0.27.1"
version = "0.27.2"
dependencies = [
"enum-iterator",
"meilisearch-error",
@ -1965,7 +1965,7 @@ dependencies = [
[[package]]
name = "meilisearch-error"
version = "0.27.1"
version = "0.27.2"
dependencies = [
"actix-web",
"proptest",
@ -1976,7 +1976,7 @@ dependencies = [
[[package]]
name = "meilisearch-http"
version = "0.27.1"
version = "0.27.2"
dependencies = [
"actix-cors",
"actix-rt",
@ -2048,7 +2048,7 @@ dependencies = [
[[package]]
name = "meilisearch-lib"
version = "0.27.1"
version = "0.27.2"
dependencies = [
"actix-rt",
"actix-web",
@ -2151,8 +2151,8 @@ dependencies = [
[[package]]
name = "milli"
version = "0.26.4"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.26.5#1f6dc31e2f8ee02cdda255a856d15f253daf17ec"
version = "0.26.6"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.26.6#955aff48853c6032c75970dc710929f08b4f711a"
dependencies = [
"bimap",
"bincode",

View File

@ -1,12 +1,12 @@
[package]
name = "meilisearch-auth"
version = "0.27.1"
version = "0.27.2"
edition = "2021"
[dependencies]
enum-iterator = "0.7.0"
meilisearch-error = { path = "../meilisearch-error" }
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.26.5" }
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.26.6" }
rand = "0.8.4"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = { version = "1.0.79", features = ["preserve_order"] }

View File

@ -1,6 +1,6 @@
[package]
name = "meilisearch-error"
version = "0.27.1"
version = "0.27.2"
authors = ["marin <postma.marin@protonmail.com>"]
edition = "2021"

View File

@ -4,7 +4,7 @@ description = "Meilisearch HTTP server"
edition = "2021"
license = "MIT"
name = "meilisearch-http"
version = "0.27.1"
version = "0.27.2"
[[bin]]
name = "meilisearch"

View File

@ -1,6 +1,6 @@
[package]
name = "meilisearch-lib"
version = "0.27.1"
version = "0.27.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -30,7 +30,7 @@ lazy_static = "1.4.0"
log = "0.4.14"
meilisearch-auth = { path = "../meilisearch-auth" }
meilisearch-error = { path = "../meilisearch-error" }
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.26.5" }
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.26.6" }
mime = "0.3.16"
num_cpus = "1.13.1"
obkv = "0.2.0"