Skip to content

Commit e6173f3

Browse files
Update versions for v1.13.0-fuji
1 parent 505a1e4 commit e6173f3

File tree

7 files changed

+40
-17
lines changed

7 files changed

+40
-17
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

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Release Notes
22

3+
## [v1.13.0-fuji](https://github.com/ava-labs/avalanchego/releases/tag/v1.13.0-fuji)
4+
5+
**Please note that this release is unable to run mainnet - and will display "mainnet is not supported" if attempted to run with a mainnet configuration.**
6+
7+
This release fixes a P-Chain regression that caused nodes to be unable to synchronize the network. It is recommended for all Fuji node operators to update as soon as possible.
8+
9+
**All Subnet or L1 node operators should upgrade before Noon ET, March 7th 2025 to ensure a graceful upgrade process.**
10+
11+
Additionally, this release schedules the activation of an Avalanche Community Proposal (ACP):
12+
- [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
13+
14+
The ACP in this upgrade goes into effect at 11 AM ET (3 PM UTC) on Thursday, March 13th, 2025 on the Fuji testnet.
15+
16+
**All Fuji nodes must upgrade before 11 AM ET, March 13th 2025.**
17+
18+
**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.12.2...v1.13.0-fuji
19+
320
## [v1.12.2](https://github.com/ava-labs/avalanchego/releases/tag/v1.12.2)
421

522
This version is backwards compatible to [v1.12.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.12.0). It is optional, but encouraged.

config/config.go

+4
Original file line numberDiff line numberDiff line change
@@ -1292,6 +1292,10 @@ func GetNodeConfig(v *viper.Viper) (node.Config, error) {
12921292
return node.Config{}, err
12931293
}
12941294

1295+
if nodeConfig.NetworkID == constants.MainnetID {
1296+
return node.Config{}, errors.New("mainnet is not supported")
1297+
}
1298+
12951299
// Database
12961300
nodeConfig.DatabaseConfig, err = getDatabaseConfig(v, nodeConfig.NetworkID)
12971301
if err != nil {

node/node.go

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

629629
n.Net, err = network.NewNetwork(
630630
&n.Config.NetworkConfig,
631-
n.Config.UpgradeConfig.EtnaTime,
631+
n.Config.UpgradeConfig.FortunaTime,
632632
n.msgCreator,
633633
reg,
634634
n.Log,

upgrade/upgrade.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -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")

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)