diff --git a/CHANGELOG.md b/CHANGELOG.md index 69180c325..7ec681654 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. +## [0.5.10] - 09.08.2023 + +### Changed + - Updated entry nodes + - Updated workflows and goreleaser + - Adapt dockerfile to stardust version + - Allow raw regex in public/protected routes + +### Fixed + - Fix transaction metadata endpoint if tx unknown + - Fix REST-API error handling + - Remove dashboard frontend git submodule + ## [0.5.9] - 03.08.2023 ### Added diff --git a/config.json b/config.json index 60bf6d7bf..891d87bb0 100644 --- a/config.json +++ b/config.json @@ -86,8 +86,7 @@ "bindAddress": "0.0.0.0:14627", "runAsEntryNode": false, "entryNodes": [ - "FvfwJuCMoWJvcJLSYww7whPxouZ9WFJ55uyxTxKxJ1ez@enter.hornet.zone:14626", - "31Tz9meznQMm7qSDUgyMmYVeHUCGA7za5Suvbom5hpE9@bender.iota.autopeering.com:14626" + "EagUoEdsY4QUTLAZa8xdFgYEPfrExwdY9MS2k9ugJ5Pi@entry-legacy.iotaledger.net:14626" ], "seed": "" } diff --git a/pkg/config/network_config.go b/pkg/config/network_config.go index 7fa1b624f..17fc31471 100644 --- a/pkg/config/network_config.go +++ b/pkg/config/network_config.go @@ -59,10 +59,7 @@ func init() { // autopeering configFlagSet.StringSlice(CfgNetAutopeeringEntryNodes, []string{ - "46CstniGgfWMdAySiWuS7bVfugwuHZCUQKVaC4Y34EYJ@enter.hornet.zone:14626", - "EkSLZ4uvSTED1x6KaGzqxoGxjbytt2rPVfbJk1LRLCGL@enter.manapotion.io:18626", - "2GHfjJhTqRaKCGBJJvS5RWty61XhjX7FtbVDhg7s8J1x@entrynode.tanglebay.org:14626", - "iotaMk9Rg8wWo1DDeG7fwV9iJ41hvkwFX8w6MyTQgDu@enter.thetangle.org:14627", + "EagUoEdsY4QUTLAZa8xdFgYEPfrExwdY9MS2k9ugJ5Pi@entry-legacy.iotaledger.net:14626", }, "list of autopeering entry nodes to use") configFlagSet.String(CfgNetAutopeeringBindAddr, "0.0.0.0:14627", "bind address for global services such as autopeering and gossip") configFlagSet.String(CfgNetAutopeeringSeed, "", "private key seed used to derive the node identity; optional Base64 encoded 256-bit string") diff --git a/plugins/cli/plugin.go b/plugins/cli/plugin.go index 1eb4dc579..80063758f 100644 --- a/plugins/cli/plugin.go +++ b/plugins/cli/plugin.go @@ -20,7 +20,7 @@ import ( var ( // AppVersion version number - AppVersion = "0.5.9" + AppVersion = "0.5.10" LatestGithubVersion = AppVersion // AppName app code name