From cb7682d2b13dc0ca37616078031d941b4bcf7c51 Mon Sep 17 00:00:00 2001 From: Saswata Mukherjee Date: Thu, 31 Aug 2023 19:05:17 +0530 Subject: [PATCH] Cut patch release `v0.32.2` (#6685) * store: fix race when iterating blocks (#6675) Signed-off-by: Saswata Mukherjee * store: Record stats even on ExpandPostings error (#6679) Signed-off-by: Saswata Mukherjee * Store: fix forgotten field in store stats merge (#6681) Signed-off-by: Michael Hoffmann * Store: fix postings reader short reads (#6684) bufio.Reader can return less bytes than needed. Go documentation suggests to use io.ReadFull Signed-off-by: Michael Hoffmann * Cut patch release v0.32.2 Signed-off-by: Saswata Mukherjee --------- Signed-off-by: Saswata Mukherjee Signed-off-by: Michael Hoffmann Co-authored-by: Michael Hoffmann --- CHANGELOG.md | 21 ++++++++++++++++++--- VERSION | 2 +- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cd6e23dea..0dff61c309 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,13 +58,28 @@ We use *breaking :warning:* to mark changes that are not backward compatible (re ### Removed +## [v0.32.2](https://github.com/thanos-io/thanos/tree/release-0.32) - 31.08.2023 + +### Fixed + +- [#6675](https://github.com/thanos-io/thanos/pull/6675) Store: Fix race when iterating blocks +- [#6679](https://github.com/thanos-io/thanos/pull/6679) store: Record stats even on ExpandPostings error +- [#6681](https://github.com/thanos-io/thanos/pull/6681) Store: Fix forgotten field in store stats merge +- [#6684](https://github.com/thanos-io/thanos/pull/6684) Store: Fix postings reader short reads to address nil postings bug + +### Added + +### Changed + +### Removed + ## [v0.32.1](https://github.com/thanos-io/thanos/tree/release-0.32) - 28.08.2023 ### Fixed -- [#6650](https://github.com/thanos-io/thanos/pull/6650) Store: fix error handling in decodePostings -- [#6654](https://github.com/thanos-io/thanos/pull/6654) Store: fix ignored error in postings -- [#6655](https://github.com/thanos-io/thanos/pull/6655) Store: fix bufio pool handling +- [#6650](https://github.com/thanos-io/thanos/pull/6650) Store: Fix error handling in decodePostings +- [#6654](https://github.com/thanos-io/thanos/pull/6654) Store: Fix ignored error in postings +- [#6655](https://github.com/thanos-io/thanos/pull/6655) Store: Fix bufio pool handling - [#6669](https://github.com/thanos-io/thanos/pull/6669) Store: Fix mutable stringset memory usage ### Added diff --git a/VERSION b/VERSION index d535f78d38..6eb78516dd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.33.0-dev \ No newline at end of file +0.33.0-dev