From 748e2fd92aff24a5e400ab1fde243a97d9219551 Mon Sep 17 00:00:00 2001 From: Andrea V <1577639+karimodm@users.noreply.github.com> Date: Tue, 6 Sep 2022 11:50:55 +0200 Subject: [PATCH 1/2] Disable Warpsync by default (#2421) * Warpsync is disabled by default when deploying * Disable Warpsync by default * Disable Warpsync by default: the proper way * Warpsync is disabled in code --- plugins/warpsync/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/warpsync/plugin.go b/plugins/warpsync/plugin.go index 0558eec631..7ca82e15c8 100644 --- a/plugins/warpsync/plugin.go +++ b/plugins/warpsync/plugin.go @@ -39,7 +39,7 @@ type dependencies struct { } func init() { - Plugin = node.NewPlugin(PluginName, deps, node.Enabled, configure, run) + Plugin = node.NewPlugin(PluginName, deps, node.Disabled, configure, run) Plugin.Events.Init.Hook(event.NewClosure(func(event *node.InitEvent) { if err := event.Container.Provide(func(t *tangleold.Tangle, p2pManager *p2p.Manager) *warpsync.Manager { From 473f249287db56418c6e365da7cab594350221b1 Mon Sep 17 00:00:00 2001 From: Andrea V <1577639+karimodm@users.noreply.github.com> Date: Tue, 6 Sep 2022 13:33:31 +0200 Subject: [PATCH 2/2] Version bumps for release (#2422) --- CHANGELOG.md | 6 ++++++ plugins/autopeering/discovery/parameters.go | 2 +- plugins/banner/plugin.go | 2 +- plugins/database/versioning.go | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92a29283ed..5cb5d00e86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v0.9.8 - 2022-09-06 + +> This release disables the Warpsync plugin, which is still experimental. + +- Disable Warpsync by default (#2421) + # v0.9.7 - 2022-09-05 > This release introduces major bugfixes to the networking and the faucet. diff --git a/plugins/autopeering/discovery/parameters.go b/plugins/autopeering/discovery/parameters.go index cd072aa7b8..02b035ce04 100644 --- a/plugins/autopeering/discovery/parameters.go +++ b/plugins/autopeering/discovery/parameters.go @@ -5,7 +5,7 @@ import "github.com/iotaledger/goshimmer/plugins/config" // ParametersDefinitionDiscovery contains the definition of configuration parameters used by the autopeering peer discovery. type ParametersDefinitionDiscovery struct { // NetworkVersion defines the config flag of the network version. - NetworkVersion uint32 `default:"65" usage:"autopeering network version"` + NetworkVersion uint32 `default:"66" usage:"autopeering network version"` // EntryNodes defines the config flag of the entry nodes. EntryNodes []string `default:"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@analysisentry-01.devnet.shimmer.iota.cafe:15626,5EDH4uY78EA6wrBkHHAVBWBMDt7EcksRq6pjzipoW15B@entry-0.devnet.tanglebay.com:14646,CAB87iQZR6BjBrCgEBupQJ4gpEBgvGKKv3uuGVRBKb4n@entry-1.devnet.tanglebay.com:14646" usage:"list of trusted entry nodes for auto peering"` diff --git a/plugins/banner/plugin.go b/plugins/banner/plugin.go index 2c21de02a1..c2f86aeada 100644 --- a/plugins/banner/plugin.go +++ b/plugins/banner/plugin.go @@ -15,7 +15,7 @@ var ( Plugin = node.NewPlugin(PluginName, nil, node.Enabled, configure, run) // AppVersion version number - AppVersion = "v0.9.7" + AppVersion = "v0.9.8" // SimplifiedAppVersion is the version number without commit hash SimplifiedAppVersion = simplifiedVersion(AppVersion) ) diff --git a/plugins/database/versioning.go b/plugins/database/versioning.go index 2cbc879f8e..d40752d4a1 100644 --- a/plugins/database/versioning.go +++ b/plugins/database/versioning.go @@ -11,7 +11,7 @@ import ( const ( // DBVersion defines the version of the database schema this version of GoShimmer supports. // Every time there's a breaking change regarding the stored data, this version flag should be adjusted. - DBVersion = 65 + DBVersion = 66 ) var (