-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* function to revoke vouch * vouch revoking apis * add test * set rotation can only expand by a certain number of nodes on every epoch. So that no more than 25% of the next validator set has unproven nodes. This is based on the amount of nodes that we know to keep consensus (case 1 and 2). * updating tests and patch implementation * patch reconfig case_2 * make sure jailed nodes are dropping * increase threshold for voting * update writeset for rescue to include recovert mode * patch build * remove recovery mode * expand epoch set by 1/6th * make setting recovery mode optional from CLI * impove mock case 1 helper * patch onboarding reconfig * patch mock tests * refactored tests that use mock_ * build stdlib for release * update 0L default configs for mempool and state sync * bump version * changelog * Update 5_1_1.md
- Loading branch information
1 parent
837785d
commit 325a1ef
Showing
9 changed files
with
61 additions
and
15 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "diem-config" | ||
version = "5.1.0" | ||
version = "5.1.1" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Diem diem-config" | ||
repository = "https://github.com/diem/diem" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "diem-management" | ||
version = "5.1.0" | ||
version = "5.1.1" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Diem Management is a tool used to manage the configuration of a Diem Node" | ||
repository = "https://github.com/diem/diem" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "diem-node" | ||
version = "5.1.0" | ||
version = "5.1.1" | ||
authors = ["Diem Association <[email protected]>"] | ||
description = "Diem node" | ||
repository = "https://github.com/diem/diem" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
## 5.1.1 | ||
|
||
This minor upgrade includes improvments to tooling, updates to default node configurations. | ||
|
||
Validators should recreated `validator.node.yaml` so the network has uniform configurations. | ||
|
||
### TL;DR Deployment | ||
|
||
Validators should update with: | ||
|
||
``` | ||
cd ~/libra | ||
git fetch | ||
git checkout v5.1.1 -f | ||
make bins install web-files | ||
# recreate validator.node.yaml, to have uniform configurations | ||
ol init --val | ||
# you can now restart your services | ||
``` | ||
|
||
# Changes | ||
|
||
# Features | ||
* Add Prometheus metrics for tx execution and 0L VDFs [#1102](https://github.com/OLSF/libra/pull/1102) | ||
* Tx api for revoking vouch [#1098](https://github.com/OLSF/libra/pull/1098) | ||
|
||
# Improvement | ||
* Update 0L default configs for mempool and state sync [#1100](https://github.com/OLSF/libra/pull/1100) | ||
* Set rotation can only expand by 1/6 [#1099](https://github.com/OLSF/libra/pull/1099) | ||
* Makewhole claim bindings f*or making transactions on Carpe[#1097](https://github.com/OLSF/libra/pull/1097) | ||
* Patch bug making node crash on bad block commit [#1112](https://github.com/OLSF/libra/pull/1112) | ||
|
||
### Tests | ||
|
||
- All continuous integration tests passed. | ||
- QA was performed through smoke-tests with a subset of validators. AKA Phoenix network. | ||
|
||
### Compatibility | ||
The Move stdlib and framework changes are backwards compatible with `diem-node` from v5.0.1 | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "ol" | ||
authors = [] | ||
version = "5.1.0" | ||
version = "5.1.1" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "txs" | ||
authors = [] | ||
version = "5.1.0" | ||
version = "5.1.1" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
|