From 749315d1c81a4e305030636b3f5c8150e2417661 Mon Sep 17 00:00:00 2001 From: IoTMOD Date: Thu, 18 Jun 2020 23:28:25 +0200 Subject: [PATCH] Release 0.4.1-rc2 (#538) --- CHANGELOG.md | 59 +++++++++++++++++++++++++++++++++++++++++++ plugins/cli/plugin.go | 2 +- 2 files changed, 60 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7362fd01..5193febb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,65 @@ All notable changes to this project will be documented in this file. +## [0.4.1-rc2] - 18.06.2020 + +### Added + + - Config setting for warpsync advancement range + - Snapshot index and Pruning index to Prometheus + - Flag to force load a global snapshot if db exists + +### Changed + + - Coo plugin milestone validation + - Only check for pre-release updates if a pre-release version is running + - Autopeering seed encoding to base58 + +### Fixed + + - Missing snapshot dir + - Node does not sync after restart + - Check to prevent pruning of genesis tx + - Below max depth for SolidEntryPoints + - Gossip bind address for IPv6 + - Synchronization with IRI nodes + +### Config file changes + +`config.json` + +```diff ++"warpsync": { ++ "advancementRange": 200 ++}, + +"entryNodes": [ +- "LehlDBPJ6kfcfLOK6kAU4nD7B/BdR7SJhai7yFCbCCM=@enter.hornet.zone:14626", +- "zEiNuQMDfZ6F8QDisa1ndX32ykBTyYCxbtkO0vkaWd0=@enter.manapotion.io:18626", +- "EsY+zvaselQYA33AVNzrYIGLplboIh4r8oO+vLKQAVM=@entrynode.tanglebay.org:14626" ++ "46CstniGgfWMdAySiWuS7bVfugwuHZCUQKVaC4Y34EYJ=@enter.hornet.zone:14626", ++ "EkSLZ4uvSTED1x6KaGzqxoGxjbytt2rPVfbJk1LRLCGL=@enter.manapotion.io:18626", ++ "2GHfjJhTqRaKCGBJJvS5RWty61XhjX7FtbVDhg7s8J1x=@entrynode.tanglebay.org:14626" +], +``` + +`config_comnet.json` + +```diff ++"warpsync": { ++ "advancementRange": 50 ++}, + +"entryNodes": [ +- "TANGLEleGqaMFFSTiyAV/vvdING/xuJNTDW16oCXZbo=@enter.comnet.thetangle.org:14641", +- "YRdteHJeawDw6UMw22yePwiQYlc1CsrmWhVljzfc6uw=@entrynode.comnet.tanglebay.org:14636", +- "1bU0uI+apA7YRna530e3SYfTDtUsobrLObt58pe5c5E=@enter.comnet.hornet.zone:14627" ++ "67it5aiegGwyLPSewfc2Bv42BvdRAdNjaGjf3VMhoG2u=@enter.comnet.thetangle.org:14641", ++ "7Y1GSTTwJLMPCffNJhWggZPtwVce5hsgAVcHanNa6HXh=@entrynode.comnet.tanglebay.org:14636", ++ "FPE6kHwZhvw8g163faJwTaPzYePbYtaXhwpWxFKuJfEY=@enter.comnet.hornet.zone:14627" +], +``` + ## [0.4.1-rc1] - 12.06.2020 ### Added diff --git a/plugins/cli/plugin.go b/plugins/cli/plugin.go index 86be8fa35..5548218d6 100644 --- a/plugins/cli/plugin.go +++ b/plugins/cli/plugin.go @@ -21,7 +21,7 @@ import ( var ( // AppVersion version number - AppVersion = "0.4.1-rc1" + AppVersion = "0.4.1-rc2" LatestGithubVersion = AppVersion // AppName app code name