From 0f656468f5c3ac071b762a9133a27d3b122e440c Mon Sep 17 00:00:00 2001 From: Jernej Kos Date: Sun, 22 Oct 2023 07:39:23 +0200 Subject: [PATCH] changelog: Assemble changes for 23.0.2 release --- .changelog/5402.trivial.md | 0 .changelog/5403.bugfix.md | 1 - .changelog/5403.internal.md | 1 - .changelog/5404.bugfix.1.md | 1 - .changelog/5404.bugfix.2.md | 1 - .changelog/5404.bugfix.3.md | 1 - .changelog/5404.bugfix.4.md | 1 - .changelog/5407.bugfix.md | 1 - .changelog/5408.bugfix.md | 1 - .changelog/5410.bugfix.md | 1 - .punch_version.py | 2 +- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++ 12 files changed, 40 insertions(+), 10 deletions(-) delete mode 100644 .changelog/5402.trivial.md delete mode 100644 .changelog/5403.bugfix.md delete mode 100644 .changelog/5403.internal.md delete mode 100644 .changelog/5404.bugfix.1.md delete mode 100644 .changelog/5404.bugfix.2.md delete mode 100644 .changelog/5404.bugfix.3.md delete mode 100644 .changelog/5404.bugfix.4.md delete mode 100644 .changelog/5407.bugfix.md delete mode 100644 .changelog/5408.bugfix.md delete mode 100644 .changelog/5410.bugfix.md diff --git a/.changelog/5402.trivial.md b/.changelog/5402.trivial.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/.changelog/5403.bugfix.md b/.changelog/5403.bugfix.md deleted file mode 100644 index cfe6cc5340a..00000000000 --- a/.changelog/5403.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -go/worker/client: Fix nil dereference on early Query diff --git a/.changelog/5403.internal.md b/.changelog/5403.internal.md deleted file mode 100644 index af8177de5e2..00000000000 --- a/.changelog/5403.internal.md +++ /dev/null @@ -1 +0,0 @@ -go: Bump golang.org/x/net to v0.17.0 diff --git a/.changelog/5404.bugfix.1.md b/.changelog/5404.bugfix.1.md deleted file mode 100644 index 2f985105441..00000000000 --- a/.changelog/5404.bugfix.1.md +++ /dev/null @@ -1 +0,0 @@ -go/worker/compute/executor: Use local time for batch scheduling diff --git a/.changelog/5404.bugfix.2.md b/.changelog/5404.bugfix.2.md deleted file mode 100644 index 12672546e7e..00000000000 --- a/.changelog/5404.bugfix.2.md +++ /dev/null @@ -1 +0,0 @@ -go/worker/compute/executor: Start processing once all txs are fetched diff --git a/.changelog/5404.bugfix.3.md b/.changelog/5404.bugfix.3.md deleted file mode 100644 index 71835d1cc26..00000000000 --- a/.changelog/5404.bugfix.3.md +++ /dev/null @@ -1 +0,0 @@ -go/worker/compute/executor: Schedule only if higher ranks didn't propose diff --git a/.changelog/5404.bugfix.4.md b/.changelog/5404.bugfix.4.md deleted file mode 100644 index b65187533b7..00000000000 --- a/.changelog/5404.bugfix.4.md +++ /dev/null @@ -1 +0,0 @@ -go/worker/compute/executor: Estimate pool rank from observed commitments diff --git a/.changelog/5407.bugfix.md b/.changelog/5407.bugfix.md deleted file mode 100644 index 655ad300a42..00000000000 --- a/.changelog/5407.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix stuck `control status` on runtime nodes before initialization diff --git a/.changelog/5408.bugfix.md b/.changelog/5408.bugfix.md deleted file mode 100644 index 27161f2144f..00000000000 --- a/.changelog/5408.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Fix showing empty peer IDs in the Consensus light client status output diff --git a/.changelog/5410.bugfix.md b/.changelog/5410.bugfix.md deleted file mode 100644 index 9f75de96fe5..00000000000 --- a/.changelog/5410.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -config/migrate: Automatically configure external P2P addresses for validators diff --git a/.punch_version.py b/.punch_version.py index e7817257ff9..f34e2850de7 100644 --- a/.punch_version.py +++ b/.punch_version.py @@ -1,3 +1,3 @@ year = '23' minor = 0 -micro = 1 +micro = 2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 117c1327c17..03410189c56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,45 @@ The format is inspired by [Keep a Changelog]. +## 23.0.2 (2023-10-22) + +| Protocol | Version | +|:------------------|:---------:| +| Consensus | 7.0.0 | +| Runtime Host | 5.1.0 | +| Runtime Committee | 5.0.0 | + +### Bug Fixes + +- go/worker/client: Fix nil dereference on early Query + ([#5403](https://github.com/oasisprotocol/oasis-core/issues/5403)) + +- go/worker/compute/executor: Start processing once all txs are fetched + ([#5404](https://github.com/oasisprotocol/oasis-core/issues/5404)) + +- go/worker/compute/executor: Estimate pool rank from observed commitments + ([#5404](https://github.com/oasisprotocol/oasis-core/issues/5404)) + +- go/worker/compute/executor: Schedule only if higher ranks didn't propose + ([#5404](https://github.com/oasisprotocol/oasis-core/issues/5404)) + +- go/worker/compute/executor: Use local time for batch scheduling + ([#5404](https://github.com/oasisprotocol/oasis-core/issues/5404)) + +- Fix stuck `control status` on runtime nodes before initialization + ([#5407](https://github.com/oasisprotocol/oasis-core/issues/5407)) + +- Fix showing empty peer IDs in the Consensus light client status output + ([#5408](https://github.com/oasisprotocol/oasis-core/issues/5408)) + +- config/migrate: Automatically configure external P2P addresses for validators + ([#5410](https://github.com/oasisprotocol/oasis-core/issues/5410)) + +### Internal Changes + +- go: Bump golang.org/x/net to v0.17.0 + ([#5403](https://github.com/oasisprotocol/oasis-core/issues/5403)) + ## 23.0.1 (2023-10-12) | Protocol | Version |