From cbda0813dfa0c40f4df2c75ea8a20346b12799e4 Mon Sep 17 00:00:00 2001 From: IoTMOD Date: Sun, 26 Jul 2020 18:44:08 +0200 Subject: [PATCH 1/2] Release 0.5.0-rc1 --- CHANGELOG.md | 63 ++++++++++++++++++++++++++++++++++++++++++- plugins/cli/plugin.go | 2 +- 2 files changed, 63 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 388c56f8a..967d6b105 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,68 @@ All notable changes to this project will be documented in this file. -## [0.4.2] - 22.06.2020 +## [0.5.0-rc1] - 26.07.2020 + +**Breaking change:** +** DO NOT USE IT ON MAINNET, IT WILL CRASH IMMEDIATELY AND IT WILL DESTROY YOUR DATABASE !!! ** + +### Added + + - Implements white-flag confirmation (#432) + - Weighted uniform random tipselection (#553) + - Added hornet.Hash utils (#564) + - Adaptive heaviest branch tipsel (#567) + +### Changed + + - Make code more testable for Chrysalis (#563) + +### Fixed + + - RandomInsecure range + +### Removed + + - Remove graph and monitor plugin (#555) + - Remove legacy protocol support (#556) + - checkConsistency API call + - Depth from getTransactionsToApprove + - Genesis TX special case + +### Config file changes + +`config.json` + +```diff + "permitRemoteAccess": [ +- "checkConsistency", + ] + "coordinator": { ++ "checkpoints": { ++ "maxTrackedTails": 10000 ++ }, ++ "tipsel": { ++ "minHeaviestBranchUnconfirmedTransactionsThreshold": 20, ++ "maxHeaviestBranchTipsPerCheckpoint": 10, ++ "randomTipsPerCheckpoint": 2, ++ "heaviestBranchSelectionDeadlineMilliseconds": 100 ++ } + } + "tipsel": { +- "belowMaxDepthTransactionLimit": 20000, +- "maxDepth": 5 ++ "maxDeltaTxYoungestRootSnapshotIndexToLSMI": 2, ++ "maxDeltaTxApproveesOldestRootSnapshotIndexToLSMI": 7, ++ "belowMaxDepth": 15, ++ "maxReferencedTipAgeSeconds": 3, ++ "maxApprovers": 2 + }, + "spammer": { +- "depth": 1, + }, +``` + +## [0.4.2] - 22.07.2020 ### Added diff --git a/plugins/cli/plugin.go b/plugins/cli/plugin.go index d50d77c56..a052b3012 100644 --- a/plugins/cli/plugin.go +++ b/plugins/cli/plugin.go @@ -21,7 +21,7 @@ import ( var ( // AppVersion version number - AppVersion = "0.4.2" + AppVersion = "0.5.0-rc1" LatestGithubVersion = AppVersion // AppName app code name From 0792e3be6aa06a7b79228e7612413fc39908b5a6 Mon Sep 17 00:00:00 2001 From: IoTMOD Date: Sun, 26 Jul 2020 19:47:44 +0200 Subject: [PATCH 2/2] Change: Comnet local snapshot source --- config_comnet.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config_comnet.json b/config_comnet.json index 365129241..b6c67ac65 100644 --- a/config_comnet.json +++ b/config_comnet.json @@ -51,6 +51,7 @@ "intervalUnsynced": 1000, "path": "snapshots/comnet/export.bin", "downloadURLs": [ + "https://ls.tanglebay.org/comnet/export.bin", "https://ls.manapotion.io/comnet/export.bin" ] }, @@ -68,7 +69,7 @@ "enabled": true }, "coordinator": { - "address": "YBWDHGHUEB9KSOPONTLTOSSKITIBE9MXPASCLREDNV9HEABYBPTHRQGWNJWQFSYAYZRDXXIOZHWBC9DWC", + "address": "UOMFQOULWQLXQQHFMFRQQTRDKDHVMRFFEGZ9LDU9TFZZ9CHDLZSIAHA9MXNSLYOERCHDUVDFEEZAEOBEW", "securityLevel": 2, "merkleTreeDepth": 23, "mwm": 10,