-
Notifications
You must be signed in to change notification settings - Fork 519
go-algorand 4.4.0-beta Release PR #6482
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
Merged
algojohnlee
merged 48 commits into
algorand:rel/beta
from
Algo-devops-service:relbeta4.4.0
Nov 3, 2025
Merged
go-algorand 4.4.0-beta Release PR #6482
algojohnlee
merged 48 commits into
algorand:rel/beta
from
Algo-devops-service:relbeta4.4.0
Nov 3, 2025
Conversation
This file contains hidden or 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
Signed-off-by: slicesequal <[email protected]>
Co-authored-by: John Jannotti <[email protected]>
This adds a pure-Go ed25519 BatchVerifier implementation based on the ed25519consensus library, with additional checks to preserve our ed25519 validation criteria, last updated in algorand#3031. Like our libsodium batch verification implementation, the IsCanonicalY check here is also based on the "Taming the Many EdDSAs" paper in https://eprint.iacr.org/2020/1244 New tests added to compare ed25519 criteria results match our existing libsodium- and ed25519-donna-based batch verification implementation (from algorand#3031 and defined in algorandfoundation/specs#60). New test helpers run test vectors with different batch sizes, taken from - 12 edge cases from "Taming the many EdDSAs" Appendix C, Table 6c, also used in our libsodium fork's tests in batch verification: add ed25519 batch verification implementation algorand#3031 - 1025 successful cases from our libsodium fork's tests, also added in batch verification: add ed25519 batch verification implementation algorand#3031. - 196 edge cases used to draw the 14x14 grid visualizations from the blog post "It's 255:19AM. Do you know what your validation criteria are?" and used in ed25519consensus - 768 edge cases from the Go crypto package's crypto/ed25519/ed25519vectors_test.go
Co-authored-by: John Jannotti <[email protected]>
…lgorand#6464) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gary Malouf <[email protected]>
…lgorand#6417) Co-authored-by: Copilot <[email protected]>
…18.1 (algorand#6478) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gary Malouf <[email protected]> Co-authored-by: cce <[email protected]>
…6466) This follows algorand#6351 by integrating it with the WebsocketNetwork implementation, using a new VP message tag. Co-authored-by: Pavel Zbitskiy <[email protected]> Co-authored-by: John Jannotti <[email protected]>
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## rel/beta #6482 +/- ##
============================================
- Coverage 50.81% 47.38% -3.44%
============================================
Files 664 659 -5
Lines 111448 88415 -23033
============================================
- Hits 56634 41893 -14741
+ Misses 51941 43750 -8191
+ Partials 2873 2772 -101 ☔ View full report in Codecov by Sentry. |
gmalouf
approved these changes
Nov 3, 2025
algorandskiy
approved these changes
Nov 3, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
This release includes key updates to relay networking performance, stateful vote compression, and an upgrade to Golang 1.25 along with several bug fixes and test improvements.
Changelog
Enhancements
Bugfixes
Protocol Upgrade
This release does not contain a protocol upgrade.
Additional Resources