From ca3c5c65f417dc3a391a3c7dcc2a09a48f30403e Mon Sep 17 00:00:00 2001 From: ptrus Date: Thu, 18 Jun 2020 11:53:45 +0200 Subject: [PATCH] changelog: Assemble changes for release 20.8.1 --- .changelog/3015.feature.md | 9 --------- .changelog/3023.bugfix.md | 1 - .changelog/3024.bugfix.md | 5 ----- .changelog/3028.trivial.md | 0 CHANGELOG.md | 27 +++++++++++++++++++++++++++ 5 files changed, 27 insertions(+), 15 deletions(-) delete mode 100644 .changelog/3015.feature.md delete mode 100644 .changelog/3023.bugfix.md delete mode 100644 .changelog/3024.bugfix.md delete mode 100644 .changelog/3028.trivial.md diff --git a/.changelog/3015.feature.md b/.changelog/3015.feature.md deleted file mode 100644 index f5defbdf80c..00000000000 --- a/.changelog/3015.feature.md +++ /dev/null @@ -1,9 +0,0 @@ -go/identity/cli: Add show TLS pubkey commands - -Adds following CLI helpers for displaying TLS public keys: - -- `oasis-node identity show-tls-pubkey --datadir ` for displaying -the public key used in the external node gRPC endpoints. -- `oasis-node identity show-sentry-client-pubkey --datadir ` for -displaying the public key used by the upstream nodes when connecting to the -sentry control endpoint. diff --git a/.changelog/3023.bugfix.md b/.changelog/3023.bugfix.md deleted file mode 100644 index b77ebc6c6b9..00000000000 --- a/.changelog/3023.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -runtime/dispatcher: Break recv loop on abort request diff --git a/.changelog/3024.bugfix.md b/.changelog/3024.bugfix.md deleted file mode 100644 index 67920bd459a..00000000000 --- a/.changelog/3024.bugfix.md +++ /dev/null @@ -1,5 +0,0 @@ -go/runtime/host/sandbox: Fix possible data race - -The data race existed because the cancel function that is referenced inside a -goroutine waiting for initialization to complete was unintentionally -overwritten. diff --git a/.changelog/3028.trivial.md b/.changelog/3028.trivial.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/CHANGELOG.md b/CHANGELOG.md index b66637698f4..035d0f71c3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,33 @@ The format is inspired by [Keep a Changelog]. +## 20.8.1 (2020-06-18) + +### Features + +- go/identity/cli: Add show TLS pubkey commands + ([#3015](https://github.com/oasisprotocol/oasis-core/issues/3015)) + + Adds following CLI helpers for displaying TLS public keys: + + - `oasis-node identity show-tls-pubkey --datadir ` for displaying + the public key used in the external node gRPC endpoints. + - `oasis-node identity show-sentry-client-pubkey --datadir ` for + displaying the public key used by the upstream nodes when connecting to the + sentry control endpoint. + +### Bug Fixes + +- runtime/dispatcher: Break recv loop on abort request + ([#3023](https://github.com/oasisprotocol/oasis-core/issues/3023)) + +- go/runtime/host/sandbox: Fix possible data race + ([#3024](https://github.com/oasisprotocol/oasis-core/issues/3024)) + + The data race existed because the cancel function that is referenced inside a + goroutine waiting for initialization to complete was unintentionally + overwritten. + ## 20.8 (2020-06-16) ### Process