Skip to content

Commit

Permalink
Merge pull request #82 from gohornet/prepare-release
Browse files Browse the repository at this point in the history
Prepare 0.2.8 release
  • Loading branch information
muXxer authored Dec 19, 2019
2 parents 3a5c9ac + 528eafe commit e96d704
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 2 deletions.
54 changes: 53 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,57 @@

All notable changes to this project will be documented in this file.

## [0.2.8] - 19.12.2019

### Added

- Rate limiting for WebSocket sends
- Show address balance even if no txs are available (Dashboard - Explorer)
- Show spent state (Dashboard - Explorer)
- Port configuration for Monitor plugin
- Config to prefer IPv6 (addNeighbors)
- Alternative addNeighbors command

### Changed

- Release archives now contain a dir which wraps all files
- API errors
- TPS chart for better visibility of input and output (Dashboard)

### Fixed

- Check wasSyncedBefore in ZMQ and Monitor
- Wrong ZeroMQ `tx_trytes` response order
- Deadlock if node is shut down during startup phase
- Different TX order than IRI (attachToTangle)
- Log level was ignored

### Config file changes

New options:

```json

"network": {
"preferIPv6": false,
}

"monitor": {
"domain": "",
"host": "127.0.0.1",
"port": 4434,
"apiPort": 4433
}
```

**Changed option (you have to edit it in your config):**

```json
"node": {
"loglevel": 127
}
```

## [0.2.7] - 17.12.2019

### Added
Expand Down Expand Up @@ -43,6 +94,7 @@ All notable changes to this project will be documented in this file.
### Config file changes

New option:

```json
"useProfile": "auto",
```
Expand Down Expand Up @@ -77,6 +129,7 @@ This release fixes a CRITICAL bug! You have to delete your database folder.
### Config file changes

New settings:

```json
"monitor": {
"tanglemonitorpath": "tanglemonitor/frontend",
Expand All @@ -96,7 +149,6 @@ New settings:
}
```


## [0.2.1] - 13.12.2019

### Added
Expand Down
2 changes: 1 addition & 1 deletion plugins/cli/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

var (
// AppVersion version number
AppVersion = "0.2.7"
AppVersion = "0.2.8"

// AppName app code name
AppName = "HORNET"
Expand Down

0 comments on commit e96d704

Please sign in to comment.