Skip to content

Commit

Permalink
Release 0.5.0-rc1
Browse files Browse the repository at this point in the history
Release 0.5.0-rc1
  • Loading branch information
IoTMOD authored Jul 26, 2020
2 parents cbe8163 + 0792e3b commit bd99647
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 3 deletions.
63 changes: 62 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,68 @@

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

## [0.4.2] - 22.06.2020
## [0.5.0-rc1] - 26.07.2020

**Breaking change:**
** DO NOT USE IT ON MAINNET, IT WILL CRASH IMMEDIATELY AND IT WILL DESTROY YOUR DATABASE !!! **

### Added

- Implements white-flag confirmation (#432)
- Weighted uniform random tipselection (#553)
- Added hornet.Hash utils (#564)
- Adaptive heaviest branch tipsel (#567)

### Changed

- Make code more testable for Chrysalis (#563)

### Fixed

- RandomInsecure range

### Removed

- Remove graph and monitor plugin (#555)
- Remove legacy protocol support (#556)
- checkConsistency API call
- Depth from getTransactionsToApprove
- Genesis TX special case

### Config file changes

`config.json`

```diff
"permitRemoteAccess": [
- "checkConsistency",
]
"coordinator": {
+ "checkpoints": {
+ "maxTrackedTails": 10000
+ },
+ "tipsel": {
+ "minHeaviestBranchUnconfirmedTransactionsThreshold": 20,
+ "maxHeaviestBranchTipsPerCheckpoint": 10,
+ "randomTipsPerCheckpoint": 2,
+ "heaviestBranchSelectionDeadlineMilliseconds": 100
+ }
}
"tipsel": {
- "belowMaxDepthTransactionLimit": 20000,
- "maxDepth": 5
+ "maxDeltaTxYoungestRootSnapshotIndexToLSMI": 2,
+ "maxDeltaTxApproveesOldestRootSnapshotIndexToLSMI": 7,
+ "belowMaxDepth": 15,
+ "maxReferencedTipAgeSeconds": 3,
+ "maxApprovers": 2
},
"spammer": {
- "depth": 1,
},
```

## [0.4.2] - 22.07.2020

### Added

Expand Down
3 changes: 2 additions & 1 deletion config_comnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"intervalUnsynced": 1000,
"path": "snapshots/comnet/export.bin",
"downloadURLs": [
"https://ls.tanglebay.org/comnet/export.bin",
"https://ls.manapotion.io/comnet/export.bin"
]
},
Expand All @@ -68,7 +69,7 @@
"enabled": true
},
"coordinator": {
"address": "YBWDHGHUEB9KSOPONTLTOSSKITIBE9MXPASCLREDNV9HEABYBPTHRQGWNJWQFSYAYZRDXXIOZHWBC9DWC",
"address": "UOMFQOULWQLXQQHFMFRQQTRDKDHVMRFFEGZ9LDU9TFZZ9CHDLZSIAHA9MXNSLYOERCHDUVDFEEZAEOBEW",
"securityLevel": 2,
"merkleTreeDepth": 23,
"mwm": 10,
Expand Down
2 changes: 1 addition & 1 deletion plugins/cli/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

var (
// AppVersion version number
AppVersion = "0.4.2"
AppVersion = "0.5.0-rc1"
LatestGithubVersion = AppVersion

// AppName app code name
Expand Down

0 comments on commit bd99647

Please sign in to comment.