-
Notifications
You must be signed in to change notification settings - Fork 474
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go-algorand 3.16.0-beta Release PR #5406
go-algorand 3.16.0-beta Release PR #5406
Conversation
Co-authored-by: Bob Broderick <[email protected]> Co-authored-by: Hang Su <[email protected]>
Nodes aggregate and save state proof information to be able to recover a stalled state proof subchain. In case of a problem nodes will not lose old state proof data so it will be possible to recover the stalled state proof chain. Data being saved: * state proof builder state is persisted * a new state proof verification tracker also persists some state proof related data from block headers Co-authored-by: Or Aharonee <[email protected]> Co-authored-by: Almog Tal <[email protected]> Co-authored-by: Jonathan Weiss <[email protected]> Co-authored-by: Pavel Zbitskiy <[email protected]>
Add a `/ready` readiness probe endpoint for kubernetes deployments
Co-authored-by: cce <[email protected]>
Codecov Report
@@ Coverage Diff @@
## rel/beta #5406 +/- ##
============================================
+ Coverage 53.57% 55.44% +1.87%
============================================
Files 430 452 +22
Lines 54130 63826 +9696
============================================
+ Hits 28998 35389 +6391
- Misses 22889 26009 +3120
- Partials 2243 2428 +185
... and 346 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess all of these should go into Bugfix section.
Tests: Fix State-Proofs ledger tests (https://github.com/algorand/go-algorand/pull/5379)
Tests: Fix error messages in ledger tests (https://github.com/algorand/go-algorand/pull/5363)
Tests: fix consensus version inconsistency in newTestLedger (https://github.com/algorand/go-algorand/pull/5342)
Tests: Fix devmode test (https://github.com/algorand/go-algorand/pull/5334)
All links [here] are placeholders (probably fine).
This release requires a protocol upgrade.
This release contains a consensus protocol upgrade, which implements the following spec: https://github.com/algorandfoundation/specs/tree/abd3d4823c6f77349fc04c3af7b1e99fe4df699f
Overview
This update includes a drop in round time of ~0.4 seconds, a robustness improvement to State Proofs, and several developer-oriented features in the AVM, simulate, and devmode.
What's New
/ready
endpoint to benefit any K8's deployment as a readiness probe. The endpoint will return a200
response code once algod has caught up to the latest state.config.json
file. There are also changes to make mounting a data directory more consistent. See DockerHub for more details.Changelog
Protocol Upgrade
This release contains a double protocol upgrade (Consensus v37 and v38). No action is needed from node runners but is called out for transparency. Consensus v37 is a technical upgrade released in unison with Consensus v38. v37 is needed to allow nodes to build up a necessary state to support State Proof related options in consensus v38.
New Features
/ready
endpoint) (#4844)Enhancements
submitForm
from go-sdk PR Add support for travis ARM64 integration tests #335 (#5253)Bugfixes
goal clerk simulate
(#5259)dd
argument to use a bytes value (#5263)Additional Resources