Skip to content
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.15.0-stable Release PR #5218

Merged
merged 84 commits into from
Mar 20, 2023

Conversation

Algo-devops-service
Copy link
Contributor

@Algo-devops-service Algo-devops-service commented Mar 17, 2023

GitHub Logo

Overview

This release includes the new simulate endpoint for evaluating transactions, networking optimizations, and lays the groundwork for better configuration management and conduit support.

⚠️ Minor breaking change for goal users: The goal node catchup functionality when run with no arguments has changed. You will now be prompted to confirm the action if a catchpoint label is not fed as an argument to the catchup command. Please revisit any automation around fast-catchup a node and ensure they are properly adapted.

What's New

  • Connection deduplication: improved networking code
    • Relay Runners -- enable this feature by setting the node PublicAddress config.json value to its public endpoint address (eq. to SRV address including port number) to optimize its bandwidth usage
  • Simulate endpoint: local evaluation of transactions
    • Ever wondered what effects your transaction could have on the blockchain state? This feature is for you! Now you can evaluate your transactions before sending them out to the network. See here for more information.
  • Profiles for algocfg: a set of profiles for configuration defaults
    • Node configurations can be tricky! Use this feature to get started on properly configuring your node.
  • Algod follower mode: a new operation mode for use with upcoming conduit release
  • New private network default template and automatic start
    • Executing goal network create --rootdir "ANY_DIRECTORY" --start will create and start a private network using the default private network template. This is great for testing your dApps on a private network before deploying them on a public network.

Refer to our developer release article here for more information on these features!

Changelog

New Features

  • Algod: Additional simulation result information (#4439)
  • Network: connection deduplication (#4695)
  • Perf: Separate the txn specific operations from StreamVerifier (#5132)

Enhancements

  • API: Update state delta type, handler (#5123)
  • AVM: Teal macros (#4737)
  • Agreement: update AttachReceivedAt to handle compound (PP) messages (#5142)
  • Algocfg: Add relay profile, algocfg profile cmd (#5069)
  • Algod: Make simulation endpoint non-experimental (#5159)
  • Algod: Modify EvalTracer design and improve testing for failures (#5071)
  • Algod: Rename enums by default (#5089)
  • Algod: split SetFdSoftLimit calls for relay and non-relay nodes (#5070)
  • Algorelay: Fix typo in relayCmd.go (#5135)
  • Build: update C++ flags for recent Mac compiler warnings (#5050)
  • Build(deps): bump github.com/aws/aws-sdk-go from 1.16.5 to 1.33.0 (#4955)
  • Ci: upgrade test_nightly infra to large (#5054)
  • Cicd: Adding github release notes template (#5044)
  • Container: support kmd (#4984)
  • Deploy Templates: Recipe Changes (#5155)
  • Development: tool to convert validated blocks. (#5048)
  • Devmode: Allow DevMode + FollowMode configurations. (#5157)
  • Doc: Fix the inline comment for proposalAccepted (#4889)
  • Docs: add follower node documentation. (#5181)
  • Docs: Message pack information. (#5160)
  • Enhancement: minor change in agreement/type.go comment, numbers are not matching (#5186)
  • Feat(algocfg): add development profile and profile descriptions. (#5164)
  • Goal: catchup without args prompts to continue (#5165)
  • Goal: goal network create default templates (#4891)
  • Goal: allow ConfigJSONOverride in local network templates (#5017)
  • Goal: resolve data dir code duplication (#5073)
  • Goal: add --start option for network create command (#4902)
  • Ledger: turn deferredCommitContext.newBase into a function (#5093)
  • Lint: Check for references to loop variables (#5105)
  • Network: add OutgoingMessage disconnectReason field (#5147)
  • Network: Ignore invalid tags (#4517)
  • Node: Add follower node for sync mode (#5009)
  • Refactor: Push test-only functionality of storage interfaces into test-interface. (#5175)
  • Telemetry: fine-grained breakdown of AssembleBlockStats.StopReason (#5191)
  • Tests: Fix t.Parallel() errors in cmd package (#4991)
  • Tests: Fix t.Parallel() errors in netdeploy package (#4993)
  • Tests: No Cache Testing in ledger (#5058)
  • Tests: reenable catchpoint tests (#4419)
  • Tools: Remove vbconvert (#5133)
  • Txhandler: Move streamverifer out of txn go (#5039)

Bugfixes

  • API: lower default for MaxHeaderBytes. (#5171)
  • API: Incorrect KvDelta in StateDeltaToLedgerDelta (#5084)
  • Algocfg: Bug fix - Add colon to indicate port specification (#5193)
  • Algod: Refactor AccountData conversion (#5098)
  • Circleci: Fix cached Results issue in self-hosted runner (#5137)
  • Devmode: Fix devmode networking (#5182)
  • E2e-test: Fix follower e2e test (#5114)
  • Fix: Disable LRU flushPendingWrite warning if disabled (#5184)
  • Fix: guard addPeer from adding peers who are closing (#5151)
  • Fix(follower): add experimental tag to deltas endpoint. (#5169)
  • Fix(follower): update test that defines a follower relay. (#5162)
  • Goal: fix for goal node status crash - no longer getting block (#5100)
  • Goal: allow for relative dataDir via -d cmd option (#5067)
  • Ledger: fix error shadowing in onlineAccountsNewRoundImpl (#5188)
  • Node: Fix time since last block. (#5113)
  • Tests: Fix TestStreamVerifierPoolShutdown (#5152)
  • Tests: Fix test by sorting results (#5103)
  • Tests: Add start anchor to paralleltest exclusion regex (#5046)

Protocol Upgrade

This release does not contain a protocol upgrade.


NOTE
vFuture changes are not yet available in MainNet or TestNet but can be used in private networks.

  • AVM: Go19 ecdsa curve check (#4917)

Additional Resources

algojack and others added 30 commits January 25, 2023 14:42
* remove duped word

* change needs to be in README_in
algorandskiy and others added 18 commits March 2, 2023 15:58
@codecov
Copy link

codecov bot commented Mar 17, 2023

Codecov Report

Merging #5218 (0192a92) into rel/stable (90e744c) will decrease coverage by 0.09%.
The diff coverage is 61.09%.

@@              Coverage Diff               @@
##           rel/stable    #5218      +/-   ##
==============================================
- Coverage       54.29%   54.20%   -0.09%     
==============================================
  Files             434      443       +9     
  Lines           54170    55052     +882     
==============================================
+ Hits            29410    29843     +433     
- Misses          22480    22885     +405     
- Partials         2280     2324      +44     
Impacted Files Coverage Δ
agreement/proposal.go 71.96% <ø> (ø)
cmd/algocfg/getCommand.go 28.00% <0.00%> (ø)
cmd/algocfg/resetCommand.go 8.33% <0.00%> (ø)
cmd/algocfg/setCommand.go 8.19% <0.00%> (ø)
cmd/goal/account.go 13.99% <0.00%> (ø)
cmd/goal/application.go 17.78% <0.00%> (ø)
cmd/goal/asset.go 15.75% <0.00%> (ø)
cmd/goal/clerk.go 8.77% <0.00%> (ø)
cmd/goal/interact.go 3.62% <0.00%> (ø)
cmd/goal/kmd.go 7.31% <0.00%> (ø)
... and 93 more

... and 2 files with indirect coverage changes

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

Copy link
Contributor

@algobarb algobarb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM - commits match beta release PR

Copy link
Contributor

@algorandskiy algorandskiy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Commits look good

@algojohnlee algojohnlee merged commit 814bc0b into algorand:rel/stable Mar 20, 2023
PhearZero pushed a commit to PhearNet/crypto that referenced this pull request Jan 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.