Skip to content
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

Create release for polkadot 2409 #808

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2,660 changes: 1,833 additions & 827 deletions Cargo.lock

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substrate-api-client"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <info@scs.ch>"]
license = "Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -48,26 +48,26 @@ tungstenite = { version = "0.23", optional = true, features = ["native-tls", "ur
ws = { version = "0.9.2", optional = true, features = ["ssl"] }

# Substrate no_std dependencies
sp-core = { default-features = false, features = ["full_crypto", "serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-crypto-hashing = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-inherents = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime-interface = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-storage = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-version = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-core = { default-features = false, features = ["full_crypto", "serde"], version = "34.0.0" }
sp-crypto-hashing = { default-features = false, version = "0.1.0" }
sp-inherents = { default-features = false, version = "34.0.0" }
sp-runtime = { default-features = false, features = ["serde"], version = "39.0.1" }
sp-runtime-interface = { default-features = false, version = "28.0.0" }
sp-storage = { default-features = false, features = ["serde"], version = "21.0.0" }
sp-version = { default-features = false, features = ["serde"], version = "37.0.0" }

# substrate std / wasm only
frame-support = { optional = true, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
frame-support = { optional = true, version = "38.0.0" }

# local deps
ac-compose-macros = { path = "compose-macros", version = "0.18", default-features = false }
ac-node-api = { path = "node-api", version = "0.18", default-features = false }
ac-primitives = { path = "primitives", version = "0.18", default-features = false }
ac-compose-macros = { path = "compose-macros", version = "1.16", default-features = false }
ac-node-api = { path = "node-api", version = "1.16", default-features = false }
ac-primitives = { path = "primitives", version = "1.16", default-features = false }


[dev-dependencies]
ac-node-api = { path = "node-api", version = "0.18", features = ["mocks"] }
rococo-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
ac-node-api = { path = "node-api", version = "1.16", features = ["mocks"] }
rococo-runtime = { version = "18.0.0" }
scale-info = { version = "2.1.1", features = ["derive"] }
test-case = "3.1.0"

Expand Down
6 changes: 3 additions & 3 deletions compose-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-compose-macros"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <info@scs.ch>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -15,10 +15,10 @@ log = { version = "0.4.14", default-features = false }
maybe-async = { version = "0.2.7" }

# local
ac-primitives = { path = "../primitives", version = "0.18", default-features = false }
ac-primitives = { path = "../primitives", version = "1.16", default-features = false }

[dev-dependencies]
ac-node-api = { path = "../node-api", version = "0.18" }
ac-node-api = { path = "../node-api", version = "1.16" }
frame-metadata = { version = "16.0" }
codec = { package = "parity-scale-codec", version = "3.6.1" }

Expand Down
26 changes: 13 additions & 13 deletions examples/async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-examples-async"
version = "0.18.0"
version = "1.16.0"
license = "Apache-2.0"
edition = "2021"

Expand All @@ -14,17 +14,17 @@ tokio-util = "0.7.8"
wabt = "0.10.0"

# Substrate dependencies
frame-support = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
frame-system = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
rococo-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-identity = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-recovery = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-staking = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
frame-support = { version = "38.0.0" }
frame-system = { version = "38.0.0" }
rococo-runtime = { version = "18.0.0" }
pallet-balances = { version = "39.0.0" }
pallet-identity = { version = "38.0.0" }
pallet-recovery = { version = "38.0.0" }
pallet-staking = { version = "38.0.0" }
sp-core = { version = "34.0.0" }
sp-keyring = { version = "39.0.0" }
sp-runtime = { version = "39.0.1" }
sp-weights = { version = "31.0.0" }

# local deps
substrate-api-client = { path = "../..", version = "0.18", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] }
substrate-api-client = { path = "../..", version = "1.16", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] }
12 changes: 6 additions & 6 deletions examples/sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-examples-sync"
version = "0.18.0"
version = "1.16.0"
license = "Apache-2.0"
edition = "2021"

Expand All @@ -9,10 +9,10 @@ env_logger = "0.11"
log = "0.4.14"

# Substrate dependencies
sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-core = { version = "34.0.0" }
sp-keyring = { version = "39.0.0" }
sp-runtime = { version = "39.0.1" }
sp-weights = { version = "31.0.0" }

# local deps
substrate-api-client = { path = "../..", version = "0.18", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] }
substrate-api-client = { path = "../..", version = "1.16", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] }
10 changes: 5 additions & 5 deletions examples/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "ac-examples-wasm"
version = "0.18.0"
version = "1.16.0"
license = "Apache-2.0"
edition = "2021"

[dev-dependencies]
sp-core = { default-features = false, features = ["full_crypto", "serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
substrate-api-client = { path = "../..", version = "0.18", default-features = false }
pallet-balances = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-core = { version = "34.0.0", default-features = false, features = ["full_crypto", "serde"] }
sp-runtime = { version = "39.0.1", default-features = false }
substrate-api-client = { path = "../..", version = "1.16", default-features = false }
pallet-balances = { version = "39.0.0", default-features = false }
12 changes: 6 additions & 6 deletions keystore/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-keystore"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <info@scs.ch>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -15,11 +15,11 @@ parking_lot = "0.12.0"
serde_json = "1.0.79"

# Substrate dependencies
sc-keystore = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-application-crypto = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sc-keystore = { version = "33.0.0" }
sp-application-crypto = { version = "38.0.0" }
sp-core = { version = "34.0.0" }
sp-keyring = { version = "39.0.0" }
sp-keystore = { version = "0.40.0" }

[dev-dependencies]
tempfile = "3.3.0"
16 changes: 8 additions & 8 deletions node-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-node-api"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <info@scs.ch>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -26,17 +26,17 @@ serde = { version = "1.0.136", features = ["derive"], default-features = false }
serde_json = { version = "1.0.79", default-features = false, features = ["alloc"] }

# substrate
sp-core = { default-features = false, features = ["full_crypto", "serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-crypto-hashing = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-storage = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-core = { version = "34.0.0", default-features = false, features = ["full_crypto", "serde"] }
sp-crypto-hashing = { version = "0.1.0", default-features = false }
sp-runtime = { version = "39.0.1", default-features = false, features = ["serde"] }
sp-storage = { version = "21.0.0", default-features = false, features = ["serde"] }

# need to add this for `no_std`
sp-application-crypto = { default-features = false, features = ["full_crypto"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime-interface = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-application-crypto = { version = "38.0.0", default-features = false, features = ["full_crypto"] }
sp-runtime-interface = { version = "28.0.0", default-features = false }

# local
ac-primitives = { path = "../primitives", version = "0.18", default-features = false }
ac-primitives = { path = "../primitives", version = "1.16", default-features = false }

[dev-dependencies]
test-case = "3.1.0"
Expand Down
34 changes: 17 additions & 17 deletions primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-primitives"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <info@scs.ch>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -19,28 +19,28 @@ serde = { version = "1.0", default-features = false, features = ["derive", "allo
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }

# substrate no_std
sp-core = { default-features = false, features = ["full_crypto", "serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-crypto-hashing = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime-interface = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-staking = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-version = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-weights = { default-features = false, features = ["serde"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-core = { version = "34.0.0", default-features = false, features = ["full_crypto", "serde"] }
sp-crypto-hashing = { version = "0.1.0", default-features = false }
sp-runtime = { version = "39.0.1", default-features = false, features = ["serde"] }
sp-runtime-interface = { version = "28.0.0", default-features = false }
sp-staking = { version = "36.0.0", default-features = false, features = ["serde"] }
sp-version = { version = "37.0.0", default-features = false, features = ["serde"] }
sp-weights = { version = "31.0.0", default-features = false, features = ["serde"] }
# need to add this for the app_crypto macro
sp-application-crypto = { default-features = false, features = ["full_crypto"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-application-crypto = { version = "38.0.0", default-features = false, features = ["full_crypto"] }

# substrate std / wasm only
frame-system = { optional = true, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-assets = { optional = true, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-balances = { optional = true, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-contracts = { optional = true, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-staking = { optional = true, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
frame-system = { version = "38.0.0", optional = true }
pallet-assets = { version = "40.0.0", optional = true }
pallet-balances = { version = "39.0.0", optional = true }
pallet-contracts = { version = "38.0.0", optional = true }
pallet-staking = { version = "38.0.0", optional = true }

[dev-dependencies]
frame-metadata-hash-extension = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
frame-metadata-hash-extension = { version = "0.6.0" }
solochain-template-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-keyring = { version = "39.0.0" }
pallet-transaction-payment = { version = "38.0.0" }

[features]
default = ["std"]
Expand Down
12 changes: 6 additions & 6 deletions test-no-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-no-std"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <info@scs.ch>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -9,13 +9,13 @@ edition = "2021"
libc = { version = "0.2.119", default-features = false }

# local dependencies
ac-compose-macros = { path = "../compose-macros", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
ac-node-api = { path = "../node-api", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
ac-primitives = { path = "../primitives", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
substrate-api-client = { path = "..", version = "0.18", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
ac-compose-macros = { path = "../compose-macros", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }
ac-node-api = { path = "../node-api", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
ac-primitives = { path = "../primitives", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions"] }
substrate-api-client = { path = "..", version = "1.16", default-features = false, optional = true, features = ["disable_target_static_assertions", "sync-api"] }

# substrate dependencies
sp-io = { default-features = false, features = ["disable_oom", "disable_panic_handler"], git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-io = { version = "38.0.0", default-features = false, features = ["disable_oom", "disable_panic_handler"] }

[features]
# It is better to test the no-std crates standalone (don't enable both features at the same time) because dependency
Expand Down
22 changes: 11 additions & 11 deletions testing/async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ac-testing-async"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <info@scs.ch>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -12,15 +12,15 @@ jsonrpsee = { version = "0.24", features = ["async-client", "client-ws-transport


# Substrate dependencies
frame-support = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
rococo-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-crypto-hashing = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-staking = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
pallet-society = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
frame-support = { version = "38.0.0" }
rococo-runtime = { version = "18.0.0" }
sp-core = { version = "34.0.0" }
sp-crypto-hashing = { version = "0.1.0" }
sp-keyring = { version = "39.0.0" }
sp-runtime = { version = "39.0.1" }
sp-staking = { version = "36.0.0" }
pallet-balances = { version = "39.0.0" }
pallet-society = { version = "38.0.0" }

# local deps
substrate-api-client = { path = "../..", version = "0.18", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] }
substrate-api-client = { path = "../..", version = "1.16", features = ["staking-xt", "contracts-xt", "disable-metadata-hash-check"] }
12 changes: 6 additions & 6 deletions testing/sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "ac-testing-sync"
version = "0.18.0"
version = "1.16.0"
authors = ["Supercomputing Systems AG <info@scs.ch>"]
license = "Apache-2.0"
edition = "2021"

[dev-dependencies]
# Substrate dependencies
sp-application-crypto = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", branch = "master" }
sp-application-crypto = { version = "38.0.0" }
sp-core = { version = "34.0.0" }
sp-runtime = { version = "39.0.1" }

# local deps
substrate-api-client = { path = "../..", version = "0.18", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] }
ac-keystore = { path = "../../keystore", version = "0.18" }
substrate-api-client = { path = "../..", version = "1.16", default-features = false, features = ["tungstenite-client", "ws-client", "disable-metadata-hash-check"] }
ac-keystore = { path = "../../keystore", version = "1.16" }
Loading