-
Notifications
You must be signed in to change notification settings - Fork 104
chore: migrate to protocol v0.14.0-rc.1
#1784
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mmagician
wants to merge
37
commits into
next
Choose a base branch
from
mmagician-claude/update-base-to-beta
base: next
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,650
−1,133
Open
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
922cd86
chore: migrate to protocol release/v0.14.0-beta
claude bc85d59
chore: block_on
igamigo 765169b
chore: patch crypto until a 0.22.x release is done
igamigo 44d5214
chore: update to crypto v0.22.5
mmagician 5320e57
chore: fmt
mmagician 4d53991
Merge branch 'next' into mmagician-claude/update-base-to-beta
mmagician 8bb975e
fix: account state forest pruning and LargeSmt loading
claude fe275f3
refactor: simplify KMS signer DER parsing with spki and k256 crates
claude a5f88db
Merge branch 'next' into mmagician-claude/update-base-to-beta
claude 5767361
chore: import smt types from miden-protocol instead of miden-crypto
claude 3528ad5
fix(stress-test): avoid account ID prefix collisions in seeding
claude b57d716
fix(stress-test): use high-entropy seeds for account creation
claude 71c29d4
Merge branch 'next' into mmagician-claude/update-base-to-beta
claude 916d06a
chore: address self review comments
claude 0490027
chore: cleanup imports
mmagician 99c7134
test: single source of randomness
igamigo 9d5ff52
temp: use mmagician-0.22.6 branch
mmagician f9d4412
chore: revert kms changes
mmagician c5c87b5
fix: remove middle step serialization for InputNoteCommitment
SantiagoPittella 98497ba
chore: cargo lock
igamigo 8079f10
Revert "test: single source of randomness"
igamigo b6b3af0
chore: remove crypto patch
igamigo 683c3d0
chore: merge
igamigo 6a50d56
chore: bump protocol to beta.4
mmagician b59b408
chore: merge next
igamigo 433d1b1
chore: bump miden deps to 0.14.0-rc.1
claude 6427ebc
refactor: revert account_state_forest to use LargeSmtForest
claude aee7df2
fix: adapt to NodeIndex/LeafIndex API renames in miden-crypto 0.23
claude 02bf124
fix: adapt to API changes in miden-protocol 0.14.0-rc.1
claude 269909a
fix: adapt genesis crate to rc.1 deps
claude 2450e4c
chore: use simpler FungibleAsset::from_key_value`
mmagician 1f1f599
fix: restore test assertions weakened during LargeSmt revert (#1830)
mmagician 44c1a68
revert: remove stress-test seeding offset changes (#1829)
mmagician 030a778
chore: no need to dup error strings, progagate
mmagician e309055
Merge branch 'next' into mmagician-claude/update-base-to-beta
mmagician 0cc4066
fix: network transaction executor + network monitor (#1826)
igamigo 6ffd273
fix: combine identical match arms to fix clippy lint
claude File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -32,7 +32,7 @@ license = "MIT" | |||||
| readme = "README.md" | ||||||
| repository = "https://github.com/0xMiden/node" | ||||||
| rust-version = "1.93" | ||||||
| version = "0.14.0-alpha.8" | ||||||
| version = "0.14.0-beta.4" | ||||||
|
|
||||||
| # Optimize the cryptography for faster tests involving account creation. | ||||||
| [profile.test.package.miden-crypto] | ||||||
|
|
@@ -47,35 +47,33 @@ debug = true | |||||
|
|
||||||
| [workspace.dependencies] | ||||||
| # Workspace crates. | ||||||
| miden-large-smt-backend-rocksdb = { path = "crates/large-smt-backend-rocksdb", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-block-producer = { path = "crates/block-producer", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-db = { path = "crates/db", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-grpc-error-macro = { path = "crates/grpc-error-macro", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-ntx-builder = { path = "crates/ntx-builder", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-proto = { path = "crates/proto", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-proto-build = { path = "proto", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-rpc = { path = "crates/rpc", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-store = { path = "crates/store", version = "=0.14.0-alpha.8" } | ||||||
| miden-large-smt-backend-rocksdb = { path = "crates/large-smt-backend-rocksdb", version = "=0.14.0-beta.4" } | ||||||
| miden-node-block-producer = { path = "crates/block-producer", version = "=0.14.0-beta.4" } | ||||||
| miden-node-db = { path = "crates/db", version = "=0.14.0-beta.4" } | ||||||
| miden-node-grpc-error-macro = { path = "crates/grpc-error-macro", version = "=0.14.0-beta.4" } | ||||||
| miden-node-ntx-builder = { path = "crates/ntx-builder", version = "=0.14.0-beta.4" } | ||||||
| miden-node-proto = { path = "crates/proto", version = "=0.14.0-beta.4" } | ||||||
| miden-node-proto-build = { path = "proto", version = "=0.14.0-beta.4" } | ||||||
| miden-node-rpc = { path = "crates/rpc", version = "=0.14.0-beta.4" } | ||||||
| miden-node-store = { path = "crates/store", version = "=0.14.0-beta.4" } | ||||||
| miden-node-test-macro = { path = "crates/test-macro" } | ||||||
| miden-node-utils = { path = "crates/utils", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-validator = { path = "crates/validator", version = "=0.14.0-alpha.8" } | ||||||
| miden-remote-prover-client = { path = "crates/remote-prover-client", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-utils = { path = "crates/utils", version = "=0.14.0-beta.4" } | ||||||
| miden-node-validator = { path = "crates/validator", version = "=0.14.0-beta.4" } | ||||||
| miden-remote-prover-client = { path = "crates/remote-prover-client", version = "=0.14.0-beta.4" } | ||||||
| # Temporary workaround until <https://github.com/rust-rocksdb/rust-rocksdb/pull/1029> | ||||||
| # is part of `rocksdb-rust` release | ||||||
| miden-node-rocksdb-cxx-linkage-fix = { path = "crates/rocksdb-cxx-linkage-fix", version = "=0.14.0-alpha.8" } | ||||||
| miden-node-rocksdb-cxx-linkage-fix = { path = "crates/rocksdb-cxx-linkage-fix", version = "=0.14.0-beta.4" } | ||||||
|
|
||||||
| # miden-base aka protocol dependencies. These should be updated in sync. | ||||||
| miden-block-prover = { version = "=0.14.0-alpha.2" } | ||||||
| miden-protocol = { default-features = false, version = "=0.14.0-alpha.2" } | ||||||
| miden-standards = { version = "=0.14.0-alpha.2" } | ||||||
| miden-testing = { version = "=0.14.0-alpha.2" } | ||||||
| miden-tx = { default-features = false, version = "=0.14.0-alpha.2" } | ||||||
| miden-tx-batch-prover = { version = "=0.14.0-alpha.2" } | ||||||
| miden-block-prover = { version = "=0.14.0-rc.1" } | ||||||
| miden-protocol = { default-features = false, version = "=0.14.0-rc.1" } | ||||||
| miden-standards = { version = "=0.14.0-rc.1" } | ||||||
| miden-testing = { version = "=0.14.0-rc.1" } | ||||||
| miden-tx = { default-features = false, version = "=0.14.0-rc.1" } | ||||||
| miden-tx-batch-prover = { version = "=0.14.0-rc.1" } | ||||||
|
|
||||||
| # Other miden dependencies. These should align with those expected by miden-base. | ||||||
| miden-air = { features = ["std", "testing"], version = "0.20" } | ||||||
|
|
||||||
| miden-crypto = { version = "0.19.7" } | ||||||
| miden-crypto = { version = "0.23" } | ||||||
|
|
||||||
| # External dependencies | ||||||
| anyhow = { version = "1.0" } | ||||||
|
|
@@ -147,3 +145,5 @@ should_panic_without_expect = "allow" # We don't care about the specific panic | |||||
| # Configure `cargo-typos` | ||||||
| [workspace.metadata.typos] | ||||||
| files.extend-exclude = ["*.svg"] # Ignore SVG files. | ||||||
|
|
||||||
| [patch.crates-io] | ||||||
|
Comment on lines
+148
to
+149
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit:
Suggested change
|
||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Concerning that this is so much bigger