-
Notifications
You must be signed in to change notification settings - Fork 491
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.18.0-beta Release PR #5679
Merged
algojohnlee
merged 54 commits into
algorand:rel/beta
from
Algo-devops-service:relbeta3.18.0
Aug 17, 2023
Merged
go-algorand 3.18.0-beta Release PR #5679
algojohnlee
merged 54 commits into
algorand:rel/beta
from
Algo-devops-service:relbeta3.18.0
Aug 17, 2023
Conversation
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
Co-authored-by: chris erway <chris.erway@algorand.com>
…lgorand#5647) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#5673) The catchup code had a race where, upon seeing an unsupported block in the future, the catchup logic would cancel the current pipeline of block fetches. Depending on the timing, this might either make some progress or not fetch any blocks at all. The new logic is more deterministic: it tries to always fetch all blocks up until the last supported block, and when the ledger reaches the last supported block, the catchup service stops.
algorandskiy
approved these changes
Aug 17, 2023
algobarb
approved these changes
Aug 17, 2023
Codecov Report
@@ Coverage Diff @@
## rel/beta #5679 +/- ##
============================================
- Coverage 56.48% 55.19% -1.29%
============================================
Files 450 465 +15
Lines 63541 64971 +1430
============================================
- Hits 35889 35859 -30
- Misses 25260 26719 +1459
- Partials 2392 2393 +1
... and 19 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
winder
approved these changes
Aug 17, 2023
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
Go-Algorand 3.18.0 is a minor release introducing the ability for unnamed resources to be referenced from simulated transaction groups. The release also contains minor enhancements and bug fixes.
What's New
/v2/blocks/{round}/txids
endpoint. With this, you can now retrieve top level Transaction ID's in a given block. (#5611)DisableAPIAuth
configuration option to make Algod's public API endpoints accessible without providing an Authentication token. (#5625)Changelog
New Features
Enhancements
--full-trace
keeps track of everything in exec trace (#5609)Bugfixes
Protocol Upgrade
This release does not contain a protocol upgrade.
Additional Resources