Skip to content

Commit 65564a4

Browse files
Update versions for v1.13.0 (#3810)
1 parent eaf3b48 commit 65564a4

File tree

7 files changed

+143
-23
lines changed

7 files changed

+143
-23
lines changed

.github/workflows/ci.yml

+10-9
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,16 @@ jobs:
110110
- name: Build AvalancheGo Binary
111111
shell: bash
112112
run: ./scripts/build.sh
113-
- name: Run e2e tests
114-
uses: ./.github/actions/run-monitored-tmpnet-cmd
115-
with:
116-
run: ./scripts/tests.upgrade.sh
117-
artifact_prefix: upgrade
118-
prometheus_username: ${{ secrets.PROMETHEUS_ID || '' }}
119-
prometheus_password: ${{ secrets.PROMETHEUS_PASSWORD || '' }}
120-
loki_username: ${{ secrets.LOKI_ID || '' }}
121-
loki_password: ${{ secrets.LOKI_PASSWORD || '' }}
113+
# TODO: Reactivate test once v1.13.0 is published
114+
# - name: Run e2e tests
115+
# uses: ./.github/actions/run-monitored-tmpnet-cmd
116+
# with:
117+
# run: ./scripts/tests.upgrade.sh
118+
# artifact_prefix: upgrade
119+
# prometheus_username: ${{ secrets.PROMETHEUS_ID || '' }}
120+
# prometheus_password: ${{ secrets.PROMETHEUS_PASSWORD || '' }}
121+
# loki_username: ${{ secrets.LOKI_ID || '' }}
122+
# loki_password: ${{ secrets.LOKI_PASSWORD || '' }}
122123
Lint:
123124
runs-on: ubuntu-latest
124125
steps:

RELEASES.md

+120-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,129 @@
11
# Release Notes
22

3-
## [v1.12.3] (pending)
3+
## [v1.13.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.13.0)
44

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.
618

719
### Configs
8-
- How long after startup the aforementioned health check runs can be configured via:
9-
`--network-no-ingress-connections-grace-period`
1020

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
11127

12128
## [v1.12.2](https://github.com/ava-labs/avalanchego/releases/tag/v1.12.2)
13129

node/node.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ func (n *Node) initNetworking(reg prometheus.Registerer) error {
629629

630630
n.Net, err = network.NewNetwork(
631631
&n.Config.NetworkConfig,
632-
n.Config.UpgradeConfig.EtnaTime,
632+
n.Config.UpgradeConfig.FortunaTime,
633633
n.msgCreator,
634634
reg,
635635
n.Log,

upgrade/upgrade.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var (
3535
CortinaXChainStopVertexID: ids.FromStringOrPanic("jrGWDh5Po9FMj54depyunNixpia5PN4aAYxfmNzU8n752Rjga"),
3636
DurangoTime: time.Date(2024, time.March, 6, 16, 0, 0, 0, time.UTC),
3737
EtnaTime: time.Date(2024, time.December, 16, 17, 0, 0, 0, time.UTC),
38-
FortunaTime: UnscheduledActivationTime,
38+
FortunaTime: time.Date(2025, time.April, 8, 15, 0, 0, 0, time.UTC),
3939
}
4040
Fuji = Config{
4141
ApricotPhase1Time: time.Date(2021, time.March, 26, 14, 0, 0, 0, time.UTC),
@@ -56,7 +56,7 @@ var (
5656
CortinaXChainStopVertexID: ids.FromStringOrPanic("2D1cmbiG36BqQMRyHt4kFhWarmatA1ighSpND3FeFgz3vFVtCZ"),
5757
DurangoTime: time.Date(2024, time.February, 13, 16, 0, 0, 0, time.UTC),
5858
EtnaTime: time.Date(2024, time.November, 25, 16, 0, 0, 0, time.UTC),
59-
FortunaTime: UnscheduledActivationTime,
59+
FortunaTime: time.Date(2025, time.March, 13, 15, 0, 0, 0, time.UTC),
6060
}
6161
Default = Config{
6262
ApricotPhase1Time: InitiallyActiveTime,
@@ -73,7 +73,7 @@ var (
7373
CortinaXChainStopVertexID: ids.Empty,
7474
DurangoTime: InitiallyActiveTime,
7575
EtnaTime: InitiallyActiveTime,
76-
FortunaTime: UnscheduledActivationTime,
76+
FortunaTime: InitiallyActiveTime,
7777
}
7878

7979
ErrInvalidUpgradeTimes = errors.New("invalid upgrade configuration")

utils/constants/acps.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,7 @@ var (
3737
)
3838

3939
// ScheduledACPs are the ACPs included into the next upgrade.
40-
ScheduledACPs = set.Of[uint32]()
40+
ScheduledACPs = set.Of[uint32](
41+
176, // https://github.com/avalanche-foundation/ACPs/blob/main/ACPs/176-dynamic-evm-gas-limit-and-price-discovery-updates/README.md
42+
)
4143
)

version/compatibility.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"39": [
3-
"v1.12.2"
3+
"v1.12.2",
4+
"v1.13.0"
45
],
56
"38": [
67
"v1.11.13",

version/constants.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const (
2222
var (
2323
Current = &Semantic{
2424
Major: 1,
25-
Minor: 12,
26-
Patch: 2,
25+
Minor: 13,
26+
Patch: 0,
2727
}
2828
CurrentApp = &Application{
2929
Name: Client,
@@ -34,13 +34,13 @@ var (
3434
MinimumCompatibleVersion = &Application{
3535
Name: Client,
3636
Major: 1,
37-
Minor: 12,
37+
Minor: 13,
3838
Patch: 0,
3939
}
4040
PrevMinimumCompatibleVersion = &Application{
4141
Name: Client,
4242
Major: 1,
43-
Minor: 11,
43+
Minor: 12,
4444
Patch: 0,
4545
}
4646

0 commit comments

Comments
 (0)