Skip to content

Commit 35c34af

Browse files
[release] v2026.3.0 (#185)
* update global * update wasm * nits * fix timeouts * update update * update inspector * update version
1 parent 499de32 commit 35c34af

11 files changed

Lines changed: 85 additions & 88 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ members = [
1212
resolver = "2"
1313

1414
[workspace.package]
15-
version = "0.0.19"
15+
version = "2026.3.0"
1616
edition = "2021"
1717
license = "MIT OR Apache-2.0"
1818

1919
[workspace.dependencies]
20-
alto-chain = { version = "0.0.19", path = "chain" }
21-
alto-client = { version = "0.0.19", path = "client" }
22-
alto-types = { version = "0.0.19", path = "types" }
20+
alto-chain = { version = "2026.3.0", path = "chain" }
21+
alto-client = { version = "2026.3.0", path = "client" }
22+
alto-types = { version = "2026.3.0", path = "types" }
2323
commonware-broadcast = "2026.3.0"
2424
commonware-codec = "2026.3.0"
2525
commonware-consensus = "2026.3.0"

deploy/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,13 @@ After redeploying a cluster, update the identity (BLS12-381 threshold public key
126126

127127
```bash
128128
# Global cluster:
129-
OLD_KEY=$(grep '^identity:' follower/examples/global.yml | sed 's/identity: "//;s/"//')
129+
OLD_KEY=$(sed -nE 's/^identity: "(.*)"$/\1/p' follower/examples/global.yml)
130130
NEW_KEY="<new-key-hex>"
131-
sed -i '' "s/$OLD_KEY/$NEW_KEY/g" follower/examples/global.yml inspector/src/main.rs
131+
sed -i '' "s/$OLD_KEY/$NEW_KEY/g" follower/examples/global.yml
132+
sed -i '' -E "s|^const DEFAULT_IDENTITY: &str = \".*\";|const DEFAULT_IDENTITY: &str = \"$NEW_KEY\";|" inspector/src/main.rs
132133

133134
# USA cluster:
134-
OLD_KEY=$(grep '^identity:' follower/examples/usa.yml | sed 's/identity: "//;s/"//')
135+
OLD_KEY=$(sed -nE 's/^identity: "(.*)"$/\1/p' follower/examples/usa.yml)
135136
NEW_KEY="<new-key-hex>"
136137
sed -i '' "s/$OLD_KEY/$NEW_KEY/g" follower/examples/usa.yml
137138
```

deploy/dashboard.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@
731731
},
732732
"disableTextWrap": false,
733733
"editorMode": "builder",
734-
"expr": "engine_consensus_voter_state_skips_per_leader_total{deployer_name=~\"$Validator\", deployer_region=~\"$Region\"}",
734+
"expr": "engine_consensus_voter_state_timeouts_total{deployer_name=~\"$Validator\", deployer_region=~\"$Region\"}",
735735
"fullMetaSearch": false,
736736
"includeNullMetadata": true,
737737
"legendFormat": "{{deployer_name}} ({{deployer_ip}})",
@@ -3675,4 +3675,4 @@
36753675
"uid": "chain",
36763676
"version": 1,
36773677
"weekStart": ""
3678-
}
3678+
}

0 commit comments

Comments
 (0)