From 1dad231f8fb164fa8d83cf1825d2547668372c88 Mon Sep 17 00:00:00 2001 From: Jernej Kos Date: Wed, 23 Nov 2022 11:05:37 +0100 Subject: [PATCH] changelog: Assemble changes for 22.2.3 release --- .changelog/5068.bugfix.md | 11 ----------- .punch_version.py | 2 +- CHANGELOG.md | 23 +++++++++++++++++++++++ 3 files changed, 24 insertions(+), 12 deletions(-) delete mode 100644 .changelog/5068.bugfix.md diff --git a/.changelog/5068.bugfix.md b/.changelog/5068.bugfix.md deleted file mode 100644 index 23b223ae822..00000000000 --- a/.changelog/5068.bugfix.md +++ /dev/null @@ -1,11 +0,0 @@ -runtime/consensus/tendermint/verifier: Correctly compare headers - -Since the store may have an earlier (non-canonical, but valid) version -of the block available, we need to only compare the actual header and -not the commits/signatures. - -This is because it can happen that during the immediate sync the light -block does not yet contain all of the commits (but only just enough to -be valid, e.g. 2/3+) and this gets stored in the light block store. -Later on (e.g. during a query) the presented light block may have the -full set of commits. diff --git a/.punch_version.py b/.punch_version.py index cd020db3139..27ac814b340 100644 --- a/.punch_version.py +++ b/.punch_version.py @@ -1,3 +1,3 @@ year = '22' minor = 2 -micro = 2 +micro = 3 diff --git a/CHANGELOG.md b/CHANGELOG.md index f1fcd6186f5..5bc8b84f339 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,29 @@ The format is inspired by [Keep a Changelog]. +## 22.2.3 (2022-11-23) + +| Protocol | Version | +|:------------------|:---------:| +| Consensus | 6.0.0 | +| Runtime Host | 5.1.0 | +| Runtime Committee | 4.0.0 | + +### Bug Fixes + +- runtime/consensus/tendermint/verifier: Correctly compare headers + ([#5068](https://github.com/oasisprotocol/oasis-core/issues/5068)) + + Since the store may have an earlier (non-canonical, but valid) version + of the block available, we need to only compare the actual header and + not the commits/signatures. + + This is because it can happen that during the immediate sync the light + block does not yet contain all of the commits (but only just enough to + be valid, e.g. 2/3+) and this gets stored in the light block store. + Later on (e.g. during a query) the presented light block may have the + full set of commits. + ## 22.2.2 (2022-11-17) | Protocol | Version |