Skip to content

Commit

Permalink
Release v0.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
muXxer committed Aug 9, 2023
1 parent 91dd70c commit f60d86c
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 8 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,16 @@ jobs:
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Disable git dubious ownership check
run: git config --global --add safe.directory "*"

- name: Fetch all tags for GoReleaser
run: git fetch --force --tags

- name: Release HORNET
run: goreleaser --clean
run: goreleaser --verbose --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": ""
}
Expand Down
5 changes: 1 addition & 4 deletions pkg/config/network_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion plugins/cli/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

var (
// AppVersion version number
AppVersion = "0.5.9"
AppVersion = "0.5.10"
LatestGithubVersion = AppVersion

// AppName app code name
Expand Down

0 comments on commit f60d86c

Please sign in to comment.