From e388916946537085ba047b05deb4878d449f5db5 Mon Sep 17 00:00:00 2001 From: Jernej Kos Date: Fri, 8 Apr 2022 18:11:38 +0200 Subject: [PATCH] changelog: Assemble changes for 22.1.3 release --- .changelog/4644.trivial.md | 0 .changelog/4647.bugfix.md | 5 ----- .changelog/4650.bugfix.md | 4 ---- .changelog/4652.feature.md | 4 ---- .changelog/4653.trivial.md | 1 - .punch_version.py | 2 +- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ 7 files changed, 32 insertions(+), 15 deletions(-) delete mode 100644 .changelog/4644.trivial.md delete mode 100644 .changelog/4647.bugfix.md delete mode 100644 .changelog/4650.bugfix.md delete mode 100644 .changelog/4652.feature.md delete mode 100644 .changelog/4653.trivial.md diff --git a/.changelog/4644.trivial.md b/.changelog/4644.trivial.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/.changelog/4647.bugfix.md b/.changelog/4647.bugfix.md deleted file mode 100644 index 8debe14aed4..00000000000 --- a/.changelog/4647.bugfix.md +++ /dev/null @@ -1,5 +0,0 @@ -go/runtime/host: Always emit StoppedEvent on stop - -Previously the StoppedEvent was only emitted in case the runtime was -previously running. In case multihost was performing a version switch when a -runtime was not yet started, this resulted in a deadlock. diff --git a/.changelog/4650.bugfix.md b/.changelog/4650.bugfix.md deleted file mode 100644 index 26322aea32b..00000000000 --- a/.changelog/4650.bugfix.md +++ /dev/null @@ -1,4 +0,0 @@ -go/worker/common/p2p: Make sure P2P stops before service cleanup runs - -Otherwise this may result in a crash during shutdown when P2P requests are -processed while database is already closed. diff --git a/.changelog/4652.feature.md b/.changelog/4652.feature.md deleted file mode 100644 index fef82eb74cc..00000000000 --- a/.changelog/4652.feature.md +++ /dev/null @@ -1,4 +0,0 @@ -go/staking/grpc: rename misnamed GovernanceDeposits method - -Previous misnamed method is deprecated, but will work in the `22.1.x` -releases. diff --git a/.changelog/4653.trivial.md b/.changelog/4653.trivial.md deleted file mode 100644 index 36727a4e1de..00000000000 --- a/.changelog/4653.trivial.md +++ /dev/null @@ -1 +0,0 @@ -go/consensus/api/transactions: Fix OpenRawTransactions diff --git a/.punch_version.py b/.punch_version.py index c380244f8ea..c5d2d9b1ea9 100644 --- a/.punch_version.py +++ b/.punch_version.py @@ -1,3 +1,3 @@ year = '22' minor = 1 -micro = 2 +micro = 3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca43eebefd..63aff237cec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,37 @@ The format is inspired by [Keep a Changelog]. +## 22.1.3 (2022-04-08) + +| Protocol | Version | +|:------------------|:---------:| +| Consensus | 6.0.0 | +| Runtime Host | 5.0.0 | +| Runtime Committee | 4.0.0 | + +### Features + +- go/staking/grpc: rename misnamed GovernanceDeposits method + ([#4652](https://github.com/oasisprotocol/oasis-core/issues/4652)) + + Previous misnamed method is deprecated, but will work in the `22.1.x` + releases. + +### Bug Fixes + +- go/runtime/host: Always emit StoppedEvent on stop + ([#4647](https://github.com/oasisprotocol/oasis-core/issues/4647)) + + Previously the StoppedEvent was only emitted in case the runtime was + previously running. In case multihost was performing a version switch when a + runtime was not yet started, this resulted in a deadlock. + +- go/worker/common/p2p: Make sure P2P stops before service cleanup runs + ([#4650](https://github.com/oasisprotocol/oasis-core/issues/4650)) + + Otherwise this may result in a crash during shutdown when P2P requests are + processed while database is already closed. + ## 22.1.2 (2022-04-05) | Protocol | Version |