From 110e96e8b800245ecc8de25c0a0247c6e524c8b7 Mon Sep 17 00:00:00 2001 From: green Date: Tue, 1 Nov 2022 03:31:21 +0000 Subject: [PATCH 1/3] Bumped the version of all `fuel-core` crate to `0.13.1`. Bumped `fuel-vm` to `0.22.3` and `fuel-tx` to `0.23.1` --- Cargo.lock | 36 ++++++++++++++++----------------- fuel-block-executor/Cargo.toml | 4 ++-- fuel-block-importer/Cargo.toml | 4 ++-- fuel-block-producer/Cargo.toml | 4 ++-- fuel-chain-config/Cargo.toml | 6 +++--- fuel-client/Cargo.toml | 2 +- fuel-core-bft/Cargo.toml | 4 ++-- fuel-core-interfaces/Cargo.toml | 2 +- fuel-core/Cargo.toml | 26 ++++++++++++------------ fuel-metrics/Cargo.toml | 2 +- fuel-p2p/Cargo.toml | 6 +++--- fuel-poa-coordinator/Cargo.toml | 4 ++-- fuel-relayer/Cargo.toml | 4 ++-- fuel-sync/Cargo.toml | 4 ++-- fuel-txpool/Cargo.toml | 6 +++--- 15 files changed, 57 insertions(+), 57 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a507265f9fa..4e98b969774 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2252,7 +2252,7 @@ dependencies = [ [[package]] name = "fuel-block-executor" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "fuel-core-interfaces", @@ -2261,7 +2261,7 @@ dependencies = [ [[package]] name = "fuel-block-importer" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "fuel-core-interfaces", @@ -2271,7 +2271,7 @@ dependencies = [ [[package]] name = "fuel-block-producer" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "async-trait", @@ -2289,7 +2289,7 @@ dependencies = [ [[package]] name = "fuel-chain-config" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "fuel-core-interfaces", @@ -2307,7 +2307,7 @@ dependencies = [ [[package]] name = "fuel-core" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "assert_matches", @@ -2371,7 +2371,7 @@ dependencies = [ [[package]] name = "fuel-core-bft" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "fuel-core-interfaces", @@ -2381,7 +2381,7 @@ dependencies = [ [[package]] name = "fuel-core-interfaces" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "async-trait", @@ -2418,7 +2418,7 @@ dependencies = [ [[package]] name = "fuel-gql-client" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "chrono", @@ -2454,7 +2454,7 @@ dependencies = [ [[package]] name = "fuel-metrics" -version = "0.13.0" +version = "0.13.1" dependencies = [ "axum", "lazy_static", @@ -2463,7 +2463,7 @@ dependencies = [ [[package]] name = "fuel-p2p" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "async-trait", @@ -2486,7 +2486,7 @@ dependencies = [ [[package]] name = "fuel-poa-coordinator" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "async-trait", @@ -2501,7 +2501,7 @@ dependencies = [ [[package]] name = "fuel-relayer" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "async-trait", @@ -2542,7 +2542,7 @@ checksum = "b0f895423d18472d60eb078cf949608ff3fe6e42e91d41b85993b11528d2c4c3" [[package]] name = "fuel-sync" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "fuel-core-interfaces", @@ -2578,9 +2578,9 @@ dependencies = [ [[package]] name = "fuel-tx" -version = "0.23.0" +version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa4a9936140e5879aa160c2c2a25ff2b9e4fcf8302380849ea934a7c71898b72" +checksum = "dffd148866f191397915b4a407455ece148197890ce5cf86d4b3f1eedcc7f35e" dependencies = [ "bitflags", "derivative", @@ -2597,7 +2597,7 @@ dependencies = [ [[package]] name = "fuel-txpool" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anyhow", "async-trait", @@ -2624,9 +2624,9 @@ dependencies = [ [[package]] name = "fuel-vm" -version = "0.22.2" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30a1816f7a44ad20b08e3a88c62ca863345bdfba5248f0c2cfc4e6ccf30e9b1c" +checksum = "98e685e7f73195d470bb54de69ff14570a835c97ed42dd32c395aba3c09dc8f9" dependencies = [ "anyhow", "fuel-asm", diff --git a/fuel-block-executor/Cargo.toml b/fuel-block-executor/Cargo.toml index 45ab3c66fa4..8ffe80175f6 100644 --- a/fuel-block-executor/Cargo.toml +++ b/fuel-block-executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-block-executor" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -11,5 +11,5 @@ description = "Fuel Block Executor" [dependencies] anyhow = "1.0" -fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.0" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.1" } tokio = { version = "1.21", features = ["full"] } diff --git a/fuel-block-importer/Cargo.toml b/fuel-block-importer/Cargo.toml index 7fa1f728cb1..85123564ee9 100644 --- a/fuel-block-importer/Cargo.toml +++ b/fuel-block-importer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-block-importer" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -11,6 +11,6 @@ description = "Fuel Block Importer" [dependencies] anyhow = "1.0" -fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.0" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.1" } parking_lot = "0.12" tokio = { version = "1.21", features = ["full"] } diff --git a/fuel-block-producer/Cargo.toml b/fuel-block-producer/Cargo.toml index 33984eafdbf..796e778e7fa 100644 --- a/fuel-block-producer/Cargo.toml +++ b/fuel-block-producer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-block-producer" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -13,7 +13,7 @@ description = "Fuel Block Producer" anyhow = "1.0" async-trait = "0.1" chrono = "0.4" -fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.0" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.1" } parking_lot = "0.12" tokio = { version = "1.21", features = ["full"] } tracing = { version = "0.1" } diff --git a/fuel-chain-config/Cargo.toml b/fuel-chain-config/Cargo.toml index 597454746d8..22121307e4d 100644 --- a/fuel-chain-config/Cargo.toml +++ b/fuel-chain-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-chain-config" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] categories = ["cryptography::cryptocurrencies"] edition = "2021" @@ -12,10 +12,10 @@ description = "Fuel Chain config types" [dependencies] anyhow = "1.0" -fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.0", features = [ +fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.1", features = [ "serde", ] } -fuel-poa-coordinator = { path = "../fuel-poa-coordinator", version = "0.13.0" } +fuel-poa-coordinator = { path = "../fuel-poa-coordinator", version = "0.13.1" } hex = { version = "0.4", features = ["serde"] } itertools = "0.10" rand = "0.8" diff --git a/fuel-client/Cargo.toml b/fuel-client/Cargo.toml index 324cbf12337..87380809bae 100644 --- a/fuel-client/Cargo.toml +++ b/fuel-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-gql-client" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"] edition = "2021" diff --git a/fuel-core-bft/Cargo.toml b/fuel-core-bft/Cargo.toml index d2785686317..fec0ea89052 100644 --- a/fuel-core-bft/Cargo.toml +++ b/fuel-core-bft/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-core-bft" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -11,6 +11,6 @@ description = "Fuel Core BFT" [dependencies] anyhow = "1.0" -fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.0" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.1" } parking_lot = "0.12" tokio = { version = "1.21", features = ["full"] } diff --git a/fuel-core-interfaces/Cargo.toml b/fuel-core-interfaces/Cargo.toml index 7daa1ad0d93..be9bb5ab259 100644 --- a/fuel-core-interfaces/Cargo.toml +++ b/fuel-core-interfaces/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-core-interfaces" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] categories = ["cryptography::cryptocurrencies"] edition = "2021" diff --git a/fuel-core/Cargo.toml b/fuel-core/Cargo.toml index cf444aba36e..bd65b500288 100644 --- a/fuel-core/Cargo.toml +++ b/fuel-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-core" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"] edition = "2021" @@ -35,20 +35,20 @@ derive_more = { version = "0.99" } dirs = "4.0" enum-iterator = "1.2" env_logger = "0.9" -fuel-block-executor = { path = "../fuel-block-executor", version = "0.13.0" } -fuel-block-importer = { path = "../fuel-block-importer", version = "0.13.0" } -fuel-block-producer = { path = "../fuel-block-producer", version = "0.13.0" } -fuel-chain-config = { path = "../fuel-chain-config", version = "0.13.0" } -fuel-core-bft = { path = "../fuel-core-bft", version = "0.13.0" } -fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.0", features = [ +fuel-block-executor = { path = "../fuel-block-executor", version = "0.13.1" } +fuel-block-importer = { path = "../fuel-block-importer", version = "0.13.1" } +fuel-block-producer = { path = "../fuel-block-producer", version = "0.13.1" } +fuel-chain-config = { path = "../fuel-chain-config", version = "0.13.1" } +fuel-core-bft = { path = "../fuel-core-bft", version = "0.13.1" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.1", features = [ "serde", ] } -fuel-metrics = { path = "../fuel-metrics", version = "0.13.0", optional = true } -fuel-p2p = { path = "../fuel-p2p", version = "0.13.0", optional = true } -fuel-poa-coordinator = { path = "../fuel-poa-coordinator", version = "0.13.0" } -fuel-relayer = { path = "../fuel-relayer", version = "0.13.0", optional = true } -fuel-sync = { path = "../fuel-sync", version = "0.13.0" } -fuel-txpool = { path = "../fuel-txpool", version = "0.13.0" } +fuel-metrics = { path = "../fuel-metrics", version = "0.13.1", optional = true } +fuel-p2p = { path = "../fuel-p2p", version = "0.13.1", optional = true } +fuel-poa-coordinator = { path = "../fuel-poa-coordinator", version = "0.13.1" } +fuel-relayer = { path = "../fuel-relayer", version = "0.13.1", optional = true } +fuel-sync = { path = "../fuel-sync", version = "0.13.1" } +fuel-txpool = { path = "../fuel-txpool", version = "0.13.1" } futures = "0.3" hex = { version = "0.4", features = ["serde"] } itertools = "0.10" diff --git a/fuel-metrics/Cargo.toml b/fuel-metrics/Cargo.toml index 72c8b544af0..3deb62c1517 100644 --- a/fuel-metrics/Cargo.toml +++ b/fuel-metrics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-metrics" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] categories = ["cryptography::cryptocurrencies"] edition = "2021" diff --git a/fuel-p2p/Cargo.toml b/fuel-p2p/Cargo.toml index 45a8115f2c6..c2dec2e6145 100644 --- a/fuel-p2p/Cargo.toml +++ b/fuel-p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-p2p" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] categories = ["cryptography::cryptocurrencies", "network-programming"] edition = "2021" @@ -14,7 +14,7 @@ description = "Fuel client networking" anyhow = "1.0" async-trait = "0.1" bincode = "1.3" -fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde"], version = "0.13.0" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde"], version = "0.13.1" } futures = "0.3" futures-timer = "3.0" ip_network = "0.4" @@ -30,7 +30,7 @@ tracing = "0.1" [dev-dependencies] ctor = "0.1" -fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde", "test-helpers"], version = "0.13.0" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde", "test-helpers"], version = "0.13.1" } rand = "0.8" tokio = { version = "1.21", features = ["full"] } tracing-appender = "0.2" diff --git a/fuel-poa-coordinator/Cargo.toml b/fuel-poa-coordinator/Cargo.toml index a6f41fbd4c5..9e5799cb9c7 100644 --- a/fuel-poa-coordinator/Cargo.toml +++ b/fuel-poa-coordinator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-poa-coordinator" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -11,7 +11,7 @@ description = "Fuel Core PoA Coordinator" [dependencies] anyhow = "1.0" -fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.0" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.1" } humantime-serde = "1.1.1" parking_lot = "0.12" serde = { version = "1.0", features = ["derive"] } diff --git a/fuel-relayer/Cargo.toml b/fuel-relayer/Cargo.toml index ed8c95678da..687dc261257 100644 --- a/fuel-relayer/Cargo.toml +++ b/fuel-relayer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-relayer" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -26,7 +26,7 @@ ethers-providers = { version = "0.17", default-features = false, features = [ ] } ethers-signers = { version = "0.17", default-features = false } features = "0.10" -fuel-core-interfaces = { path = "../fuel-core-interfaces", package = "fuel-core-interfaces", version = "0.13.0" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", package = "fuel-core-interfaces", version = "0.13.1" } futures = "0.3" hex = "0.4" once_cell = "1.4" diff --git a/fuel-sync/Cargo.toml b/fuel-sync/Cargo.toml index 74d893a5862..28aec4d164c 100644 --- a/fuel-sync/Cargo.toml +++ b/fuel-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-sync" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] edition = "2021" homepage = "https://fuel.network/" @@ -11,6 +11,6 @@ description = "Fuel Synchronizer" [dependencies] anyhow = "1.0" -fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.0" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.1" } parking_lot = "0.12" tokio = { version = "1.21", features = ["full"] } diff --git a/fuel-txpool/Cargo.toml b/fuel-txpool/Cargo.toml index 83f53be389d..22b10cb57b1 100644 --- a/fuel-txpool/Cargo.toml +++ b/fuel-txpool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuel-txpool" -version = "0.13.0" +version = "0.13.1" authors = ["Fuel Labs "] categories = ["cryptography::cryptocurrencies"] edition = "2021" @@ -14,8 +14,8 @@ description = "Transaction pool" anyhow = "1.0" async-trait = "0.1" chrono = "0.4" -fuel-chain-config = { path = "../fuel-chain-config", version = "0.13.0" } -fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.0" } +fuel-chain-config = { path = "../fuel-chain-config", version = "0.13.1" } +fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.13.1" } futures = "0.3" parking_lot = "0.11" thiserror = "1.0" From ab979c56ff30aa6abc96b6ba75a9ec0365c5e801 Mon Sep 17 00:00:00 2001 From: green Date: Tue, 1 Nov 2022 03:32:31 +0000 Subject: [PATCH 2/3] Apply `cargo update` --- Cargo.lock | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4e98b969774..1ac413f91ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -221,9 +221,9 @@ dependencies = [ [[package]] name = "async-global-executor" -version = "2.3.0" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0da5b41ee986eed3f524c380e6d64965aea573882a8907682ad100f7859305ca" +checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" dependencies = [ "async-channel", "async-executor", @@ -327,16 +327,16 @@ dependencies = [ [[package]] name = "async-io" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83e21f3a490c72b3b0cf44962180e60045de2925d8dff97918f7ee43c8f637c7" +checksum = "e8121296a9f05be7f34aa4196b1747243b3b62e048bb7906f644f3fbfc490cf7" dependencies = [ + "async-lock", "autocfg", "concurrent-queue", "futures-lite", "libc", "log", - "once_cell", "parking", "polling", "slab", @@ -734,9 +734,9 @@ checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" [[package]] name = "byte-slice-cast" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87c5fdd0166095e1d463fc6cc01aa8ce547ad77a4e84d42eb6762b084e28067e" +checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" [[package]] name = "byte-tools" @@ -816,9 +816,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.0.73" +version = "1.0.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" +checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574" dependencies = [ "jobserver", ] @@ -2167,9 +2167,9 @@ dependencies = [ [[package]] name = "ff" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df689201f395c6b90dfe87127685f8dbfc083a5e779e613575d8bd7314300c3e" +checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" dependencies = [ "rand_core 0.6.4", "subtle", @@ -3127,9 +3127,9 @@ dependencies = [ [[package]] name = "hyper" -version = "0.14.20" +version = "0.14.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" +checksum = "abfba89e19b959ca163c7752ba59d737c1ceea53a5d31a149c805446fc958064" dependencies = [ "bytes", "futures-channel", @@ -3164,9 +3164,9 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.51" +version = "0.1.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5a6ef98976b22b3b7f2f3a806f858cb862044cfa66805aa3ad84cb3d3b785ed" +checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -4294,9 +4294,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" +checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" [[package]] name = "oorandom" From b9d3845eab700dec009f6f8c46f4b68c41315020 Mon Sep 17 00:00:00 2001 From: green Date: Tue, 1 Nov 2022 03:34:01 +0000 Subject: [PATCH 3/3] Update `Chart.yaml` --- deployment/charts/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/charts/Chart.yaml b/deployment/charts/Chart.yaml index 2129504d2c6..e30150d26d5 100644 --- a/deployment/charts/Chart.yaml +++ b/deployment/charts/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: fuel-core description: Fuel Core Helm Chart type: application -appVersion: "0.13.0" +appVersion: "0.13.1" version: 0.1.0