|
1 | 1 | # Release Notes
|
2 | 2 |
|
3 |
| -## [v1.12.3] (pending) |
| 3 | +## [v1.13.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.13.0) |
4 | 4 |
|
5 |
| -- Extended the network health check by also alerting if a primary network validator has no nodes connected to it. Runs a configurable time after startup or 10 minutes by default. |
| 5 | +This upgrade consists of the following Avalanche Community Proposal (ACP): |
| 6 | +- [ACP-176](https://github.com/avalanche-foundation/ACPs/blob/main/ACPs/176-dynamic-evm-gas-limit-and-price-discovery-updates/README.md) Dynamic EVM Gas Limits and Price Discovery Updates |
| 7 | + |
| 8 | +The ACP in this upgrade goes into effect at 11 AM ET (3 PM UTC) on Tuesday, April 8th, 2025 on Mainnet. |
| 9 | + |
| 10 | +**All Fortuna supporting Mainnet nodes should upgrade before 11 AM ET, April 8th 2025.** |
| 11 | + |
| 12 | +The plugin version is unchanged at `39` and is compatible with version `v1.12.2`. |
| 13 | + |
| 14 | +### APIs |
| 15 | + |
| 16 | +- Added ProposerVM block timestamp metrics: `avalanche_proposervm_last_accepted_timestamp` |
| 17 | +- Added network health check to alert if a primary network validator has no ingress connections. Runs a configurable time after startup or 10 minutes by default. |
6 | 18 |
|
7 | 19 | ### Configs
|
8 |
| -- How long after startup the aforementioned health check runs can be configured via: |
9 |
| -`--network-no-ingress-connections-grace-period` |
10 | 20 |
|
| 21 | +- Added: |
| 22 | + - `--proposervm-min-block-duration` |
| 23 | + - `--network-no-ingress-connections-grace-period` to configure how long after startup it is expected for a Mainnet validator to have received an ingress connection. |
| 24 | + |
| 25 | +### What's Changed |
| 26 | + |
| 27 | +- Implement traversal based early termination by @yacovm in https://github.com/ava-labs/avalanchego/pull/3337 |
| 28 | +- Add networked-signer tests by @richardpringle in https://github.com/ava-labs/avalanchego/pull/3613 |
| 29 | +- Remove unused code by @yacovm in https://github.com/ava-labs/avalanchego/pull/3682 |
| 30 | +- chore(proposervm): timestamp metrics for block acceptance by @ARR4N in https://github.com/ava-labs/avalanchego/pull/3680 |
| 31 | +- remove dependency of validator.State from BitSetSignature.Verify by @tsachiherman in https://github.com/ava-labs/avalanchego/pull/3679 |
| 32 | +- [docker] Optimize build time by copying and downloading deps first by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3683 |
| 33 | +- fix: broken link in README.md by @DeVikingMark in https://github.com/ava-labs/avalanchego/pull/3681 |
| 34 | +- [docker] Silence remaining InvalidDefaultArgInFrom warnings by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3684 |
| 35 | +- [tmpnet] Update subnet configuration in README by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3686 |
| 36 | +- testing: improve e2e test bootstrapping by @tsachiherman in https://github.com/ava-labs/avalanchego/pull/3690 |
| 37 | +- [tmpnet] Update URI and StakingAddress usage in support of kube by @marun in https://github.com/ava-labs/avalanchego/pull/3665 |
| 38 | +- [tmpnet] Re-enable reuse of dynamically allocated API ports by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3697 |
| 39 | +- fix spelling issues by @futreall in https://github.com/ava-labs/avalanchego/pull/3700 |
| 40 | +- fix: correct typos in parser.go and tmpnet documentation by @avorylli in https://github.com/ava-labs/avalanchego/pull/3712 |
| 41 | +- fix: typos in documentation files by @maximevtush in https://github.com/ava-labs/avalanchego/pull/3710 |
| 42 | +- Fail fast in tests if avalancheGo executable isn't an absolute path by @yacovm in https://github.com/ava-labs/avalanchego/pull/3707 |
| 43 | +- [ci] Fix metrics link annotation emitted for e2e and upgrade jobs by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3713 |
| 44 | +- Remove Mock Mempool by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3687 |
| 45 | +- cleanup(tmpnet): resolve chainconfig post-etna TODO by @darioush in https://github.com/ava-labs/avalanchego/pull/3720 |
| 46 | +- Update to go 1.23.6 by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3722 |
| 47 | +- docs: Fix grammatical errors and improve clarity in documentation and comments by @VolodymyrBg in https://github.com/ava-labs/avalanchego/pull/3716 |
| 48 | +- [testing] Replace script-based tool installation with nix by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3691 |
| 49 | +- Remove unnecessary function by @richardpringle in https://github.com/ava-labs/avalanchego/pull/3723 |
| 50 | +- bump coreth to master by @darioush in https://github.com/ava-labs/avalanchego/pull/3724 |
| 51 | +- Make `bls.Signer` api fallible by @richardpringle in https://github.com/ava-labs/avalanchego/pull/3696 |
| 52 | +- Add comment to seemingly dead code by @richardpringle in https://github.com/ava-labs/avalanchego/pull/3721 |
| 53 | +- Bump coreth by @richardpringle in https://github.com/ava-labs/avalanchego/pull/3728 |
| 54 | +- Comment on the need for `CGO_ENABLED=1` to support cross-compilation by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3735 |
| 55 | +- [ci] Update to golangci-lint version compatible with go 1.23 by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3739 |
| 56 | +- [testing] Provide more logging context for SynchronizedBeforeSuite by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3741 |
| 57 | +- refactor: export PeerSample by @Elvis339 in https://github.com/ava-labs/avalanchego/pull/3745 |
| 58 | +- [antithesis] Set AVAGO_PLUGIN_DIR for VM images by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3751 |
| 59 | +- [ci] Drop support for Ubuntu 20.04 by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3737 |
| 60 | +- Fix spelling errors in `majority.go`, `minority.go`, `compressor.go`, and `logger.go` by @tomasandroil in https://github.com/ava-labs/avalanchego/pull/3738 |
| 61 | +- [ci] Simplify tmpnet monitoring action by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3736 |
| 62 | +- Remove apostrophe from Dockerfile comments by @aaronbuchwald in https://github.com/ava-labs/avalanchego/pull/3706 |
| 63 | +- fix error 404 link README.md by @futreall in https://github.com/ava-labs/avalanchego/pull/3750 |
| 64 | +- fix: typos in documentation files by @leopardracer in https://github.com/ava-labs/avalanchego/pull/3733 |
| 65 | +- Add With and WithOptions receivers to the Logger interface by @iansuvak in https://github.com/ava-labs/avalanchego/pull/3729 |
| 66 | +- [tmpnet] Minimize duration of tx acceptance for e2e testing by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3685 |
| 67 | +- Remove unused `ForceCreateChain` function from `testManager` by @strmfos in https://github.com/ava-labs/avalanchego/pull/3755 |
| 68 | +- chore: make function comments match function names by @rustco in https://github.com/ava-labs/avalanchego/pull/3757 |
| 69 | +- L1 validator eviction block validity by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3758 |
| 70 | +- Add ACP-176 e2e tests by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3749 |
| 71 | +- [tmpnet] Deploy collectors with golang to simplify cross-repo use by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3692 |
| 72 | +- fix spelling issues config_test.go by @futreall in https://github.com/ava-labs/avalanchego/pull/3760 |
| 73 | +- [tmpnet] Add check for collection of logs and metrics to custom github action by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3740 |
| 74 | +- Deprecate the `snow.Context.Lock` by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3762 |
| 75 | +- Name F-Upgrade Fortuna by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3761 |
| 76 | +- Add CodecID to ICM README by @iansuvak in https://github.com/ava-labs/avalanchego/pull/3759 |
| 77 | +- Update CODEOWNERS s/marun/maru-ava/ by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3768 |
| 78 | +- Support caller-defined namespaces in merkledb by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3747 |
| 79 | +- Fix empty standard block check by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3775 |
| 80 | +- Enable empty standard block check by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3776 |
| 81 | +- Restrict ProposerVM P-chain height advancement by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3777 |
| 82 | +- Add canoto serialization support to the block context by @aaronbuchwald in https://github.com/ava-labs/avalanchego/pull/3709 |
| 83 | +- Remove support for AVM tx checksums by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3774 |
| 84 | +- [ci] Disable monitoring for jobs of PRs of fork branches by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3781 |
| 85 | +- Update db_test.go by @sky-coderay in https://github.com/ava-labs/avalanchego/pull/3765 |
| 86 | +- chore: fix some function names in comment by @tcpdumppy in https://github.com/ava-labs/avalanchego/pull/3773 |
| 87 | +- Implement ACP-118 Aggregator by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3394 |
| 88 | +- Print git commit version upon startup by @yacovm in https://github.com/ava-labs/avalanchego/pull/3771 |
| 89 | +- chore(nix): add darwin.apple_sdk.frameworks.Security by @darioush in https://github.com/ava-labs/avalanchego/pull/3769 |
| 90 | +- Add comment to SendConfig documenting how to broadcast by @aaronbuchwald in https://github.com/ava-labs/avalanchego/pull/3783 |
| 91 | +- refactor: use a more straightforward return value by @fuyangpengqi in https://github.com/ava-labs/avalanchego/pull/3726 |
| 92 | +- [ci] Stop emitting grafana link as an annotation by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3767 |
| 93 | +- Remove Etna activation banner by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3789 |
| 94 | +- Upgrade canoto to v0.13.3 by @tsachiherman in https://github.com/ava-labs/avalanchego/pull/3790 |
| 95 | +- Healthcheck for zero ingress connection count by @yacovm in https://github.com/ava-labs/avalanchego/pull/3719 |
| 96 | +- Timely halt Avalanche engine by @yacovm in https://github.com/ava-labs/avalanchego/pull/3792 |
| 97 | +- [docker] Update all images to debian12/bookworm by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3798 |
| 98 | +- [ci] Move monitoring check from github action to code by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3766 |
| 99 | +- [tmpnet] Start kind cluster with golang by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3780 |
| 100 | +- Fix flake TestIngressConnCount by @yacovm in https://github.com/ava-labs/avalanchego/pull/3799 |
| 101 | +- [tmpnet] Rename tmpnetctl main package from cmd to tmpnetctl by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3787 |
| 102 | +- Improve check-clean CI script by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3800 |
| 103 | +- Bump golang.org/x/net from 0.33.0 to 0.36.0 by @dependabot in https://github.com/ava-labs/avalanchego/pull/3793 |
| 104 | +- Fix ACP-118 Aggregator Test Flake by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3801 |
| 105 | +- Canoto v0.15.0 upgrade by @tsachiherman in https://github.com/ava-labs/avalanchego/pull/3805 |
| 106 | +- [tmpnet] Fix README example for tmpnetctl script by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3807 |
| 107 | +- Update coreth to v0.15.0-rc.0 by @darioush in https://github.com/ava-labs/avalanchego/pull/3808 |
| 108 | + |
| 109 | +### New Contributors |
| 110 | + |
| 111 | +- @maru-ava made their first contribution in https://github.com/ava-labs/avalanchego/pull/3683 |
| 112 | +- @DeVikingMark made their first contribution in https://github.com/ava-labs/avalanchego/pull/3681 |
| 113 | +- @futreall made their first contribution in https://github.com/ava-labs/avalanchego/pull/3700 |
| 114 | +- @avorylli made their first contribution in https://github.com/ava-labs/avalanchego/pull/3712 |
| 115 | +- @maximevtush made their first contribution in https://github.com/ava-labs/avalanchego/pull/3710 |
| 116 | +- @VolodymyrBg made their first contribution in https://github.com/ava-labs/avalanchego/pull/3716 |
| 117 | +- @Elvis339 made their first contribution in https://github.com/ava-labs/avalanchego/pull/3745 |
| 118 | +- @tomasandroil made their first contribution in https://github.com/ava-labs/avalanchego/pull/3738 |
| 119 | +- @leopardracer made their first contribution in https://github.com/ava-labs/avalanchego/pull/3733 |
| 120 | +- @strmfos made their first contribution in https://github.com/ava-labs/avalanchego/pull/3755 |
| 121 | +- @rustco made their first contribution in https://github.com/ava-labs/avalanchego/pull/3757 |
| 122 | +- @sky-coderay made their first contribution in https://github.com/ava-labs/avalanchego/pull/3765 |
| 123 | +- @tcpdumppy made their first contribution in https://github.com/ava-labs/avalanchego/pull/3773 |
| 124 | +- @fuyangpengqi made their first contribution in https://github.com/ava-labs/avalanchego/pull/3726 |
| 125 | + |
| 126 | +**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.12.2...v1.13.0 |
11 | 127 |
|
12 | 128 | ## [v1.12.2](https://github.com/ava-labs/avalanchego/releases/tag/v1.12.2)
|
13 | 129 |
|
|
0 commit comments