From 67d181b2f14bb29e92ecc7200f8c32b65990facb Mon Sep 17 00:00:00 2001 From: Romain Bardou Date: Mon, 15 Mar 2021 14:34:15 +0100 Subject: [PATCH] Changelog: fix style to make it consistent with the rest of the file --- CHANGES.md | 62 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 37 insertions(+), 25 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 0dee0de88f40..14d9f1715daa 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -19,22 +19,32 @@ be documented here either. ## Node -- Cap the number of expected connections to `100` on the command line +- Added Florence, the current protocol proposal on Mainnet. + This is the version of Florence without baking accounts (`PsFLoren`). + +- Added a new version of the protocol environment (v2). + It is used by Florence. + +- Added built-in network configurations for Edo2net (which runs Edo2, + the current Mainnet protocol) and Florencenet (which runs Florence). + Their corresponding aliases for `--network` are `edo2net` and `florencenet`. + +- Capped the number of expected connections to `100` on the command-line interface. -- Fixes a bug that launched the prevalidator when the node was not +- Fixed a bug that caused the execution of the prevalidator when the node was not bootstrapped. -- Enforce loading of non-embedded protocols before starting the node - allowing the prevalidator to start correctly. +- Enforced loading of non-embedded protocols before starting the node + to allow the prevalidator to start correctly. -- Optimize I/O and CPU usage by removing an unnecessary access to the +- Optimized I/O and CPU usage by removing an unnecessary access to the context during block validation. -- Fixes a bug where any event would allocate more memory than needed - when it were not to be printed. +- Fixed a bug where any event would allocate more memory than needed + when it was not to be printed. -- Add a new RPC for Alpha: `helpers/scripts/normalize_type`. +- Added a new RPC for Alpha: `helpers/scripts/normalize_type`. - Replace Edonet by Edo2net in built-in network configuration. The alias to give to `--network` is now `edo2net`. @@ -50,50 +60,52 @@ be documented here either. - Fixed the return code of errors in the client calls to be non-zero. -- Added a new multisig command to change keys and threshold +- Added a new multisig command to change keys and threshold: `set threshold of multisig contract ...`. -- Added a command to perform protocol migrations in persistent mockup mode - `migrate mockup to ` +- Added a command to perform protocol migrations in persistent mockup mode: + `migrate mockup to `. -- Add `--version` flag +- Added the `--version` flag. -- Fixed commands `--mode mockup config show` and `--mode mockup config init` which returned the default values rather than the actual ones. +- Fixed commands `--mode mockup config show` and `--mode mockup config init` + which returned the default values rather than the actual ones. - Replaced command `check that was signed by ` by `check that bytes were signed by ` to differentiate from new command `check that - message was signed by ` + message was signed by `. - Added wallet support for PVSS keys. -- Added support for all protocol constants in Mockup mode +- Added support for all protocol constants in Mockup mode. ## Baker / Endorser / Accuser -- Add `--version` flag +- Added the `--version` flag. -- Fixes the operation ordering in the baker so that the most +- Fixed the operation ordering in the baker so that the most profitable operations are applied first. ## Protocol Compiler And Environment -- Add `--version` flag +- Added the `--version` flag. ## Codec -- Add `--version` flag -- Register some ground encodings including arbitrary precision integers, n-bit - sized integers, and floating point numbers. +- Added the `--version` flag. +- Added support for some base encodings including arbitrary precision integers, n-bit + sized integers, and floating point numbers. ## Docker Images ## Miscellaneous -- Make sure file descriptors are opened with the `O_CLOEXEC` flag. -- Sapling: fix dummy address generator (set correctly the last 5 bits to 0 +- Sapling: fixed dummy address generator (the last 5 bits are now correctly set to 0 instead of the first 5 bits). +- Fixed a bug that caused some file descriptors to be leaked to external processes. + # Version 8.2 ## Node @@ -253,9 +265,9 @@ be documented here either. + PATCH: `/network/peers/` payload `{ acl: [ban,trust,open] }` + PATCH: `/network/point/` payload `{ acl: [ban,trust,open], peer_id: }` where - - `{acl : ban}`: blacklist the given address/peer and remove it from + - `{acl : ban}`: blacklist the given address/peer and remove it from the whitelist if present - - `{acl: trust}`: trust a given address/peer permanently and remove it + - `{acl: trust}`: trust a given address/peer permanently and remove it from the blacklist if present. - `{acl: open}`: removes an address/peer from the blacklist and whitelist. -- GitLab