From ee99e4687d6d177f6a503a8bcdfcc15b59bda68e Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Fri, 29 Mar 2024 17:45:14 +0900 Subject: [PATCH] Update chitchat to fix a major bug in digest message serialization. --- CHANGELOG.md | 8 +++++++- quickwit/Cargo.lock | 2 +- quickwit/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c31fbce9772..9e02fb2bb52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ---> +# [0.8.1] + +### Fixed + +- Bug in the chitchat digest message serialization (chitchat#144) + ## [0.8.0] ### Added @@ -99,7 +105,7 @@ Because we made some breaking changes in the gossip protocol (chitchat), nodes r - Allow $ and @ characters in field names (#4413) ### Fixed -- Assign all sources/shards, even if this requires exceeding the indexer #4363 +- Assign all sources/shards, even if this requires exceeding the indexer #4363 - Fix traces doc mapping (service name set as fast) and update default otel logs index ID to `otel-logs-v0_7` (#4401) - Fix parsing multi-line queries (#4409) - Fix range query for optional fast field panics with Index out of bounds (#4362) diff --git a/quickwit/Cargo.lock b/quickwit/Cargo.lock index 6de7a8e9c64..69eebf9a476 100644 --- a/quickwit/Cargo.lock +++ b/quickwit/Cargo.lock @@ -1240,7 +1240,7 @@ dependencies = [ [[package]] name = "chitchat" version = "0.8.0" -source = "git+https://github.com/quickwit-oss/chitchat.git?rev=f783620#f78362008b4b5522181c77e830f585c9d9e8b799" +source = "git+https://github.com/quickwit-oss/chitchat.git?rev=d039699#d03969982e1c199aa05cb8e4f86d8d83118057ff" dependencies = [ "anyhow", "async-trait", diff --git a/quickwit/Cargo.toml b/quickwit/Cargo.toml index 7bdf8e3f0de..1106c65bb21 100644 --- a/quickwit/Cargo.toml +++ b/quickwit/Cargo.toml @@ -90,7 +90,7 @@ base64 = "0.21" bytes = { version = "1", features = ["serde"] } bytesize = { version = "1.3.0", features = ["serde"] } bytestring = "1.3.0" -chitchat = { git = "https://github.com/quickwit-oss/chitchat.git", rev = "f783620" } +chitchat = { git = "https://github.com/quickwit-oss/chitchat.git", rev = "d039699" } chrono = { version = "0.4", default-features = false, features = [ "clock", "std",