Skip to content
Snippets Groups Projects
Unverified Commit e875627a authored by Angelo Capossele's avatar Angelo Capossele Committed by GitHub
Browse files

Update changelog and bump version (#788)

* :pencil: Update changelog

* Bump version
parent 86aa7197
No related branches found
No related tags found
No related merge requests found
# v0.3.0 - 2020-10-12
* Added multiple dRNG committees support: Pollen, X-Team and Custom.
* Added clock synchronization plugin via NTP.
* Added basic codeQL analysis pipeline for common vulnerability scanning.
* Added basic HTTP authentication.
* Changed payload layout to be more similar to the one specified for Chrysalis phase 2.
* Improved rand-seed tool by writing its output to a file.
* Improved the Docker network by making MongoDB, Grafana and Prometheus optional so that startup/shutdown times are low when not needed.
* Upgraded to the latest hive.go.
* Upgraded NodeJS dependencies of the dashboard.
* Fixed several security issues.
* Refactored the entire code base to make its package structure flat and more consistent with Hornet.
* Moved data structures to hive.go
* Removed JWT authentication due to security issues of the package dgrijalva/jwt-go
* **Breaking**: bumps network and database versions
# v0.2.4 - 2020-09-03 # v0.2.4 - 2020-09-03
* Fixes race condition that was preventing the deletion of some entries from missing messages. * Fixes race condition that was preventing the deletion of some entries from missing messages.
* Improves the Tangle-BadgerDB interaction. * Improves the Tangle-BadgerDB interaction.
......
...@@ -13,5 +13,5 @@ const ( ...@@ -13,5 +13,5 @@ const (
func init() { func init() {
flag.StringSlice(CfgEntryNodes, []string{"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@ressims.iota.cafe:15626"}, "list of trusted entry nodes for auto peering") flag.StringSlice(CfgEntryNodes, []string{"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@ressims.iota.cafe:15626"}, "list of trusted entry nodes for auto peering")
flag.Uint32(CfgNetworkVersion, 7, "autopeering network version") flag.Uint32(CfgNetworkVersion, 8, "autopeering network version")
} }
...@@ -18,7 +18,7 @@ var ( ...@@ -18,7 +18,7 @@ var (
const ( const (
// AppVersion version number // AppVersion version number
AppVersion = "v0.2.4" AppVersion = "v0.3.0"
// AppName app code name // AppName app code name
AppName = "GoShimmer" AppName = "GoShimmer"
......
...@@ -10,7 +10,7 @@ import ( ...@@ -10,7 +10,7 @@ import (
const ( const (
// DBVersion defines the version of the database schema this version of GoShimmer supports. // 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. // Every time there's a breaking change regarding the stored data, this version flag should be adjusted.
DBVersion = 9 DBVersion = 10
) )
var ( var (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment