From 6631564cf5b91911f0f8613e7b164e749eff86db Mon Sep 17 00:00:00 2001 From: Jernej Kos Date: Mon, 27 Nov 2023 11:03:58 +0100 Subject: [PATCH] changelog: Assemble changes for 23.0.6 release --- .changelog/5465.internal.md | 1 - .changelog/5466.bugfix.md | 1 - .changelog/5466.cfg.md | 4 ---- .changelog/5467.feature.md | 1 - .changelog/5469.bugfix.md | 5 ---- .changelog/5472.bugfix.md | 1 - .changelog/5473.bugfix.md | 1 - .changelog/5476.bugfix.md | 1 - .punch_version.py | 2 +- CHANGELOG.md | 47 +++++++++++++++++++++++++++++++++++++ 10 files changed, 48 insertions(+), 16 deletions(-) delete mode 100644 .changelog/5465.internal.md delete mode 100644 .changelog/5466.bugfix.md delete mode 100644 .changelog/5466.cfg.md delete mode 100644 .changelog/5467.feature.md delete mode 100644 .changelog/5469.bugfix.md delete mode 100644 .changelog/5472.bugfix.md delete mode 100644 .changelog/5473.bugfix.md delete mode 100644 .changelog/5476.bugfix.md diff --git a/.changelog/5465.internal.md b/.changelog/5465.internal.md deleted file mode 100644 index 0a60c12c156..00000000000 --- a/.changelog/5465.internal.md +++ /dev/null @@ -1 +0,0 @@ -go/common/sgx: implement `GetPCKCertificateChain` PCS API client diff --git a/.changelog/5466.bugfix.md b/.changelog/5466.bugfix.md deleted file mode 100644 index 79fafe46406..00000000000 --- a/.changelog/5466.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -go/consensus/cometbft/light: Try multiple sources when fetching blocks diff --git a/.changelog/5466.cfg.md b/.changelog/5466.cfg.md deleted file mode 100644 index 0d15c870df8..00000000000 --- a/.changelog/5466.cfg.md +++ /dev/null @@ -1,4 +0,0 @@ -Add `num_light_blocks_kept` configuration option - -Located under `consensus.prune`, it allows configuring the number of light -blocks that are kept in the local trusted store (defaulting to 10000). diff --git a/.changelog/5467.feature.md b/.changelog/5467.feature.md deleted file mode 100644 index 6a56587be30..00000000000 --- a/.changelog/5467.feature.md +++ /dev/null @@ -1 +0,0 @@ -go/roothash: expose RoundRoots in the roothash client diff --git a/.changelog/5469.bugfix.md b/.changelog/5469.bugfix.md deleted file mode 100644 index 28fcdce1bbf..00000000000 --- a/.changelog/5469.bugfix.md +++ /dev/null @@ -1,5 +0,0 @@ -go/p2p/peermgmt/backup: Prevent overwriting TTL when restoring peers - -If the peer address of a seed node was added to the libp2p address book -before peer manager restored backup peer addresses, its permanent TTL -was replaced with the TTL for recently connected peers. diff --git a/.changelog/5472.bugfix.md b/.changelog/5472.bugfix.md deleted file mode 100644 index 670ce0deb87..00000000000 --- a/.changelog/5472.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -governance: Fix pretty priting of `ChangeParametersProposal` diff --git a/.changelog/5473.bugfix.md b/.changelog/5473.bugfix.md deleted file mode 100644 index 16f943214c2..00000000000 --- a/.changelog/5473.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -go/oasis-node: Remove obsolete db section during config migration diff --git a/.changelog/5476.bugfix.md b/.changelog/5476.bugfix.md deleted file mode 100644 index 4e6aea1eb94..00000000000 --- a/.changelog/5476.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -go/p2p/discovery: Close only idle connections to seed node diff --git a/.punch_version.py b/.punch_version.py index 0adc4fbc13f..318204b216a 100644 --- a/.punch_version.py +++ b/.punch_version.py @@ -1,3 +1,3 @@ year = '23' minor = 0 -micro = 5 +micro = 6 diff --git a/CHANGELOG.md b/CHANGELOG.md index 790fdd61b9f..44b6d091a55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,53 @@ The format is inspired by [Keep a Changelog]. +## 23.0.6 (2023-11-27) + +| Protocol | Version | +|:------------------|:---------:| +| Consensus | 7.0.0 | +| Runtime Host | 5.1.0 | +| Runtime Committee | 5.0.0 | + +### Configuration Changes + +- Add `num_light_blocks_kept` configuration option + ([#5466](https://github.com/oasisprotocol/oasis-core/issues/5466)) + + Located under `consensus.prune`, it allows configuring the number of light + blocks that are kept in the local trusted store (defaulting to 10000). + +### Features + +- go/roothash: expose RoundRoots in the roothash client + ([#5467](https://github.com/oasisprotocol/oasis-core/issues/5467)) + +### Bug Fixes + +- go/consensus/cometbft/light: Try multiple sources when fetching blocks + ([#5466](https://github.com/oasisprotocol/oasis-core/issues/5466)) + +- go/p2p/peermgmt/backup: Prevent overwriting TTL when restoring peers + ([#5469](https://github.com/oasisprotocol/oasis-core/issues/5469)) + + If the peer address of a seed node was added to the libp2p address book + before peer manager restored backup peer addresses, its permanent TTL + was replaced with the TTL for recently connected peers. + +- governance: Fix pretty priting of `ChangeParametersProposal` + ([#5472](https://github.com/oasisprotocol/oasis-core/issues/5472)) + +- go/oasis-node: Remove obsolete db section during config migration + ([#5473](https://github.com/oasisprotocol/oasis-core/issues/5473)) + +- go/p2p/discovery: Close only idle connections to seed node + ([#5476](https://github.com/oasisprotocol/oasis-core/issues/5476)) + +### Internal Changes + +- go/common/sgx: implement `GetPCKCertificateChain` PCS API client + ([#5465](https://github.com/oasisprotocol/oasis-core/issues/5465)) + ## 23.0.5 (2023-11-22) | Protocol | Version |