Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
da9737c
make txn output consistent (#185)
areshand Jul 2, 2025
bfad8dd
Post-migration integrity validation tool (#186)
sebtomba Jul 8, 2025
ea63add
feature: add active features check to validation tool (#192)
sebtomba Jul 16, 2025
e990929
create local network
Jun 30, 2025
62b8910
sync virtual genesis id between consensus and execution
Jul 16, 2025
c236c51
start validator fullnode
areshand Jul 25, 2025
5dedd4b
fix epoch duration
Sep 3, 2025
aa362c9
chore: gen scripts bytecode v7 for latest framework
0xmovses Sep 10, 2025
f1c00d5
feat: add bytecode 6 feature flag upgrade script
0xmovses Sep 10, 2025
94f2d9d
fix: admin addy
0xmovses Sep 10, 2025
b46e389
feat: add script for ease of running
0xmovses Sep 10, 2025
33c2ae1
chore: update upgrade script
0xmovses Sep 10, 2025
c27fde2
feat: deprecate governed gas pool
0xmovses Sep 10, 2025
3fdfcc5
fix: ggp deprecation build success now
0xmovses Sep 10, 2025
c00c431
chore: gen scripts w ggp deprecation
0xmovses Sep 10, 2025
1de94f7
chore: add native and atomic bridge deprecation
0xmovses Sep 10, 2025
096b416
chore: fix native_bridge deprecation
0xmovses Sep 10, 2025
19df419
fix: deprecation of atomic_bridge.move
0xmovses Sep 10, 2025
88ae60c
fix: update features.move with getters for bkwd compatible
0xmovses Sep 11, 2025
37e409b
feat: add script to add enum feature
0xmovses Sep 11, 2025
8903b1c
fix: update atpos-stdlib.move module
0xmovses Sep 11, 2025
32f79ee
fix: epilogue errors
0xmovses Sep 16, 2025
3c9ce0f
fix: latest changes
0xmovses Sep 17, 2025
ae121e1
chore: update script remove other scripts for testing
0xmovses Sep 18, 2025
1aa388f
fix: new feature scripts
0xmovses Sep 18, 2025
c03996c
chore: remove decommission feature
0xmovses Oct 16, 2025
0685b72
chore: doc and feature flag number check
0xmovses Oct 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ members = [
"keyless/pepper/example-client-rust",
"keyless/pepper/service",
"mempool",
"movement-migration/validation-tool",
"network/benchmark",
"network/builder",
"network/discovery",
Expand Down Expand Up @@ -252,6 +253,7 @@ members = [
"third_party/move/tools/move-unit-test",
"tools/calc-dep-sizes",
"tools/compute-module-expansion-size",
"tools/l1-migration",
"types",
"vm-validator",
]
Expand Down Expand Up @@ -827,6 +829,7 @@ which = "4.2.5"
whoami = "1.5.0"
# This allows for zeroize 1.6 to be used. Version 1.2.0 of x25519-dalek locks zeroize to 1.3.
x25519-dalek = { git = "https://github.com/aptos-labs/x25519-dalek", rev = "b9cdbaf36bf2a83438d9f660e5a708c82ed60d8e" }
xz2 = "0.1"
z3tracer = "0.8.0"

# MOVE DEPENDENCIES
Expand Down
6 changes: 0 additions & 6 deletions aptos-move/aptos-release-builder/data/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,5 @@ proposals:
description: "This includes changes in https://github.com/aptos-labs/aptos-core/releases/tag/aptos-node-vX.YY.Z"
execution_mode: MultiStep
update_sequence:
- Gas:
new: current
# replace with below for actual release, above "current" is needed for compat tests:
# old: https://raw.githubusercontent.com/aptos-labs/aptos-networks/main/gas/vX.WW.Z.json
# new: https://raw.githubusercontent.com/aptos-labs/aptos-networks/main/gas/vX.YY.Z.json
- Framework:
bytecode_version: 7
git_hash: ~
Loading