From f1da34083bf527809d27d952cbebcd092e51ce17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tadej=20Jane=C5=BE?= Date: Fri, 20 Dec 2019 15:23:16 +0100 Subject: [PATCH] XXX: Example commit of 'towncrier build --version 19.1' run --- .changelog/1845.feature.md | 1 - .changelog/2377.removal.md | 9 ------- .changelog/2435.feature.md | 2 -- .changelog/2482.feature.md | 8 ------- .changelog/2484.bugfix.md | 4 ---- .changelog/2492.removal.md | 4 ---- CHANGELOG.md | 49 ++++++++++++++++++++++++++++++++++++++ 7 files changed, 49 insertions(+), 28 deletions(-) delete mode 100644 .changelog/1845.feature.md delete mode 100644 .changelog/2377.removal.md delete mode 100644 .changelog/2435.feature.md delete mode 100644 .changelog/2482.feature.md delete mode 100644 .changelog/2484.bugfix.md delete mode 100644 .changelog/2492.removal.md diff --git a/.changelog/1845.feature.md b/.changelog/1845.feature.md deleted file mode 100644 index 8e2fd25126a..00000000000 --- a/.changelog/1845.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add `oasis-node debug storage export` sub-command. diff --git a/.changelog/2377.removal.md b/.changelog/2377.removal.md deleted file mode 100644 index 12f6b31c9db..00000000000 --- a/.changelog/2377.removal.md +++ /dev/null @@ -1,9 +0,0 @@ -Remove staking-related roothash messages. - -There is no longer a plan to support direct manipulation of the staking accounts -from the runtimes in order to isolate the runtimes from corrupting the -consensus layer. - -To reduce complexity, the staking-related roothash messages were removed. The -general roothash message mechanism stayed as-is since it may be useful in the -future, but any commits with non-empty messages are rejected for now. diff --git a/.changelog/2435.feature.md b/.changelog/2435.feature.md deleted file mode 100644 index 4d6e3d49673..00000000000 --- a/.changelog/2435.feature.md +++ /dev/null @@ -1,2 +0,0 @@ -Add `oasis-node unsafe-reset` sub-command which resets the node back to a -freshly provisioned state, preserving any key material if it exists. diff --git a/.changelog/2482.feature.md b/.changelog/2482.feature.md deleted file mode 100644 index d9c539f6d00..00000000000 --- a/.changelog/2482.feature.md +++ /dev/null @@ -1,8 +0,0 @@ -Add consensus block and transaction metadata accessors. - -In order to enable people to build "network explorers", we exposed some -additional methods via the consensus API endpoint, specifically: - -- Consensus block metadata. -- Access to raw consensus transactions within a block. -- Stream of consensus blocks as they are finalized. diff --git a/.changelog/2484.bugfix.md b/.changelog/2484.bugfix.md deleted file mode 100644 index 9f82042addb..00000000000 --- a/.changelog/2484.bugfix.md +++ /dev/null @@ -1,4 +0,0 @@ -Reduce Badger in-memory cache sizes. - -The default is 1 GiB per badger instance and we use a few instances so this -resulted in some nice memory usage. diff --git a/.changelog/2492.removal.md b/.changelog/2492.removal.md deleted file mode 100644 index 78ebb6726b7..00000000000 --- a/.changelog/2492.removal.md +++ /dev/null @@ -1,4 +0,0 @@ -Remove `oasis-node debug dummy` sub-commands. - -These are only useful for testing, and our test harness has a internal Go API -that removes the need to have this functionality exposed as a sub-command. diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dbfc3e3689..f49faf94b8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,55 @@ The format is inspired by [Keep a Changelog]. +## 19.1 (2019-12-20) + +### Deprecations and Removals + +- Remove staking-related roothash messages. + ([#2377](https://github.com/oasislabs/oasis-core/issues/2377)) + + There is no longer a plan to support direct manipulation of the staking accounts + from the runtimes in order to isolate the runtimes from corrupting the + consensus layer. + + To reduce complexity, the staking-related roothash messages were removed. The + general roothash message mechanism stayed as-is since it may be useful in the + future, but any commits with non-empty messages are rejected for now. + +- Remove `oasis-node debug dummy` sub-commands. + ([#2492](https://github.com/oasislabs/oasis-core/issues/2492)) + + These are only useful for testing, and our test harness has a internal Go API + that removes the need to have this functionality exposed as a sub-command. + +### Features + +- Add `oasis-node debug storage export` sub-command. + ([#1845](https://github.com/oasislabs/oasis-core/issues/1845)) + +- Add `oasis-node unsafe-reset` sub-command which resets the node back to a + freshly provisioned state, preserving any key material if it exists. + ([#2435](https://github.com/oasislabs/oasis-core/issues/2435)) + +- Add consensus block and transaction metadata accessors. + ([#2482](https://github.com/oasislabs/oasis-core/issues/2482)) + + In order to enable people to build "network explorers", we exposed some + additional methods via the consensus API endpoint, specifically: + + - Consensus block metadata. + - Access to raw consensus transactions within a block. + - Stream of consensus blocks as they are finalized. + +### Bug Fixes + +- Reduce Badger in-memory cache sizes. + ([#2484](https://github.com/oasislabs/oasis-core/issues/2484)) + + The default is 1 GiB per badger instance and we use a few instances so this + resulted in some nice memory usage. + + ## 19.0 (2019-12-18) ### Process