From caade7d5a73c6e96738e61c8e023c31d4fb34336 Mon Sep 17 00:00:00 2001 From: Jernej Kos Date: Mon, 4 Mar 2024 10:04:17 +0100 Subject: [PATCH] changelog: Assemble changes for 23.0.10 release --- .changelog/5510.bugfix.md | 4 ---- .changelog/5521.internal.md | 1 - .changelog/5523.internal.md | 1 - .changelog/5533.internal.md | 4 ---- .changelog/5534.feature.md | 5 ----- .changelog/5578.feature.md | 1 - .punch_version.py | 2 +- CHANGELOG.md | 42 +++++++++++++++++++++++++++++++++++++ 8 files changed, 43 insertions(+), 17 deletions(-) delete mode 100644 .changelog/5510.bugfix.md delete mode 100644 .changelog/5521.internal.md delete mode 100644 .changelog/5523.internal.md delete mode 100644 .changelog/5533.internal.md delete mode 100644 .changelog/5534.feature.md delete mode 100644 .changelog/5578.feature.md diff --git a/.changelog/5510.bugfix.md b/.changelog/5510.bugfix.md deleted file mode 100644 index 86892e0a956..00000000000 --- a/.changelog/5510.bugfix.md +++ /dev/null @@ -1,4 +0,0 @@ -metrics: fix labels for disk read and write metrics - -Fixes `oasis_node_disk_written_bytes` and `oasis_node_disk_read_bytes` which -were mistakenly reversed. diff --git a/.changelog/5521.internal.md b/.changelog/5521.internal.md deleted file mode 100644 index dab4ee268d6..00000000000 --- a/.changelog/5521.internal.md +++ /dev/null @@ -1 +0,0 @@ -go: Bump go-libp2p to 0.32.2 diff --git a/.changelog/5523.internal.md b/.changelog/5523.internal.md deleted file mode 100644 index c53bbeaff4c..00000000000 --- a/.changelog/5523.internal.md +++ /dev/null @@ -1 +0,0 @@ -runtime: Increase number of processing threads in SGX diff --git a/.changelog/5533.internal.md b/.changelog/5533.internal.md deleted file mode 100644 index bd87d59ed3d..00000000000 --- a/.changelog/5533.internal.md +++ /dev/null @@ -1,4 +0,0 @@ -rust: bump shlex to v 1.3.0 - -[RUSTSEC-2024-0006]( -https://rustsec.org/advisories/RUSTSEC-2024-0006) diff --git a/.changelog/5534.feature.md b/.changelog/5534.feature.md deleted file mode 100644 index 638778b4657..00000000000 --- a/.changelog/5534.feature.md +++ /dev/null @@ -1,5 +0,0 @@ -go/oasis-net-runner: Add ability to set node log level and format - -Previously, every node started by the net runner had the default -log level of debug, while now it's possible to set it to other -levels. The log format can also be changed. diff --git a/.changelog/5578.feature.md b/.changelog/5578.feature.md deleted file mode 100644 index 222c307155c..00000000000 --- a/.changelog/5578.feature.md +++ /dev/null @@ -1 +0,0 @@ -sgx: Support early updates for ECDSA TCB infos diff --git a/.punch_version.py b/.punch_version.py index 35d8c934bb4..b5b2cbe64c1 100644 --- a/.punch_version.py +++ b/.punch_version.py @@ -1,3 +1,3 @@ year = '23' minor = 0 -micro = 9 +micro = 10 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9356620c545..51151b1f704 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,48 @@ The format is inspired by [Keep a Changelog]. +## 23.0.10 (2024-03-04) + +| Protocol | Version | +|:------------------|:---------:| +| Consensus | 7.0.0 | +| Runtime Host | 5.1.0 | +| Runtime Committee | 5.0.0 | + +### Features + +- go/oasis-net-runner: Add ability to set node log level and format + ([#5534](https://github.com/oasisprotocol/oasis-core/issues/5534)) + + Previously, every node started by the net runner had the default + log level of debug, while now it's possible to set it to other + levels. The log format can also be changed. + +- sgx: Support early updates for ECDSA TCB infos + ([#5578](https://github.com/oasisprotocol/oasis-core/issues/5578)) + +### Bug Fixes + +- metrics: fix labels for disk read and write metrics + ([#5510](https://github.com/oasisprotocol/oasis-core/issues/5510)) + + Fixes `oasis_node_disk_written_bytes` and `oasis_node_disk_read_bytes` which + were mistakenly reversed. + +### Internal Changes + +- go: Bump go-libp2p to 0.32.2 + ([#5521](https://github.com/oasisprotocol/oasis-core/issues/5521)) + +- runtime: Increase number of processing threads in SGX + ([#5523](https://github.com/oasisprotocol/oasis-core/issues/5523)) + +- rust: bump shlex to v 1.3.0 + ([#5533](https://github.com/oasisprotocol/oasis-core/issues/5533)) + + [RUSTSEC-2024-0006]( + https://rustsec.org/advisories/RUSTSEC-2024-0006) + ## 23.0.9 (2023-11-30) | Protocol | Version |