From 670de6831edf74fab203e8e0a348a8335a693db9 Mon Sep 17 00:00:00 2001 From: Victor Allombert Date: Tue, 17 Jan 2023 15:29:18 +0100 Subject: [PATCH 1/2] Node: improve data version's v3 documentation --- src/lib_node_config/data_version.ml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib_node_config/data_version.ml b/src/lib_node_config/data_version.ml index 6a62bb5bb8b1..60f22c05fad1 100644 --- a/src/lib_node_config/data_version.ml +++ b/src/lib_node_config/data_version.ml @@ -100,7 +100,8 @@ end * - (0.)0.8 : context upgrade (upgrade to irmin.3.0) * - 1.0 : context upgrade (upgrade to irmin.3.3) * - 2.0 : introduce context GC (upgrade to irmin.3.4) - * - 3.0 : change blocks' context hash semantics *) + * - 3.0 : change blocks' context hash semantics and upgrade to + irmin.3.5 *) (* FIXME https://gitlab.com/tezos/tezos/-/issues/2861 We should enable the semantic versioning instead of applying -- GitLab From 20ae102f71dc641be9cbcc294a102c56be4bff1a Mon Sep 17 00:00:00 2001 From: Victor Allombert Date: Tue, 17 Jan 2023 15:30:00 +0100 Subject: [PATCH 2/2] Changelog: notice context format changes --- CHANGES.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 98e7e3d6e696..62a6ebc2562b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -77,8 +77,10 @@ Node - **Breaking change**: bumped the node's storage version to ``3.0``. This new version changes the store's representation - required by the new protocol's semantics. Upgrading to this new - version is automatic and irreversible. (MR :gl: `!6835`) + required by the new protocol's semantics and the context's format to + improve the disk usage footprint while running a context + pruning. Upgrading to this new version is automatic and + irreversible. (MR :gl: `!6835` and :gl: `!6959`) - **Breaking change**: bumped the snapshot version to ``5``. This version changes internal snapshot file representation to include -- GitLab