Skip to content

Commit b16c8b6

Browse files
committed
Merge branch 'master' into tsv-disabling
2 parents c986fd3 + 0570b6f commit b16c8b6

File tree

116 files changed

+6318
-2372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+6318
-2372
lines changed

.gitlab/pipeline/zombienet/polkadot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,14 @@ zombienet-polkadot-functional-0005-parachains-disputes-past-session:
105105
--local-dir="${LOCAL_DIR}/functional"
106106
--test="0005-parachains-disputes-past-session.zndsl"
107107

108+
zombienet-polkadot-functional-0006-parachains-max-tranche0:
109+
extends:
110+
- .zombienet-polkadot-common
111+
script:
112+
- /home/nonroot/zombie-net/scripts/ci/run-test-local-env-manager.sh
113+
--local-dir="${LOCAL_DIR}/functional"
114+
--test="0006-parachains-max-tranche0.zndsl"
115+
108116
zombienet-polkadot-smoke-0001-parachains-smoke-test:
109117
extends:
110118
- .zombienet-polkadot-common

Cargo.lock

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

cumulus/client/relay-chain-rpc-interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jsonrpsee = { version = "0.16.2", features = ["ws-client"] }
3333
tracing = "0.1.37"
3434
async-trait = "0.1.73"
3535
url = "2.4.0"
36-
serde_json = "1.0.107"
36+
serde_json = "1.0.108"
3737
serde = "1.0.188"
3838
schnellru = "0.2.1"
3939
smoldot = { version = "0.11.0", default_features = false, features = ["std"]}

cumulus/parachain-template/node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0" }
1717
serde = { version = "1.0.188", features = ["derive"] }
1818
jsonrpsee = { version = "0.16.2", features = ["server"] }
1919
futures = "0.3.28"
20-
serde_json = "1.0.104"
20+
serde_json = "1.0.108"
2121

2222
# Local
2323
parachain-template-runtime = { path = "../runtime" }

cumulus/parachains/integration-tests/emulated/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publish = false
1010
[dependencies]
1111
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false }
1212
paste = "1.0.14"
13-
serde_json = "1.0.104"
13+
serde_json = "1.0.108"
1414

1515
# Substrate
1616
grandpa = { package = "sc-consensus-grandpa", path = "../../../../../substrate/client/consensus/grandpa" }

cumulus/polkadot-parachain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ futures = "0.3.28"
1919
hex-literal = "0.4.1"
2020
log = "0.4.20"
2121
serde = { version = "1.0.188", features = ["derive"] }
22-
serde_json = "1.0.107"
22+
serde_json = "1.0.108"
2323

2424
# Local
2525
rococo-parachain-runtime = { path = "../parachains/runtimes/testing/rococo-parachain" }

cumulus/test/service/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ criterion = { version = "0.5.1", features = [ "async_tokio" ] }
1717
jsonrpsee = { version = "0.16.2", features = ["server"] }
1818
rand = "0.8.5"
1919
serde = { version = "1.0.188", features = ["derive"] }
20-
serde_json = "1.0.107"
20+
serde_json = "1.0.108"
2121
tokio = { version = "1.32.0", features = ["macros"] }
2222
tracing = "0.1.37"
2323
url = "2.4.0"

polkadot/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ jemalloc-allocator = [
6464
"polkadot-node-core-pvf/jemalloc-allocator",
6565
"polkadot-overseer/jemalloc-allocator",
6666
]
67+
network-protocol-staging = [ "polkadot-cli/network-protocol-staging" ]
68+
6769

6870
# Enables timeout-based tests supposed to be run only in CI environment as they may be flaky
6971
# when run locally depending on system load

polkadot/cli/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,5 @@ runtime-metrics = [
7474
"polkadot-node-metrics/runtime-metrics",
7575
"service/runtime-metrics",
7676
]
77+
78+
network-protocol-staging = [ "service/network-protocol-staging" ]

polkadot/node/core/approval-voting/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ schnorrkel = "0.9.1"
1717
kvdb = "0.13.0"
1818
derive_more = "0.99.17"
1919
thiserror = "1.0.48"
20+
itertools = "0.10.5"
2021

2122
polkadot-node-subsystem = { path = "../../subsystem" }
2223
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
@@ -30,6 +31,9 @@ sp-consensus = { path = "../../../../substrate/primitives/consensus/common", def
3031
sp-consensus-slots = { path = "../../../../substrate/primitives/consensus/slots", default-features = false }
3132
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto", default-features = false, features = ["full_crypto"] }
3233
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
34+
rand_core = "0.5.1"
35+
rand_chacha = { version = "0.3.1" }
36+
rand = "0.8.5"
3337

3438
[dev-dependencies]
3539
async-trait = "0.1.57"
@@ -43,3 +47,5 @@ polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
4347
assert_matches = "1.4.0"
4448
kvdb-memorydb = "0.13.0"
4549
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
50+
log = "0.4.17"
51+
env_logger = "0.9.0"

0 commit comments

Comments
 (0)