From 240bf534f1a7148514ca2a9862e755c32479adda Mon Sep 17 00:00:00 2001 From: hal3e Date: Sat, 12 Oct 2024 15:16:58 +0200 Subject: [PATCH 1/2] update `forc` to `0.39.0` --- .github/workflows/ci.yml | 2 +- Cargo.toml | 12 ++++++------ .../src/provider/supported_fuel_core_version.rs | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c83368f58..fe58a33f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ env: CARGO_TERM_COLOR: always DASEL_VERSION: https://github.com/TomWright/dasel/releases/download/v2.3.6/dasel_linux_amd64 RUSTFLAGS: "-D warnings" - FUEL_CORE_VERSION: 0.38.0 + FUEL_CORE_VERSION: 0.39.0 FUEL_CORE_PATCH_BRANCH: "" FUEL_CORE_PATCH_REVISION: "" RUST_VERSION: 1.79.0 diff --git a/Cargo.toml b/Cargo.toml index 1742b7803..8ee671a83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,14 +85,14 @@ octocrab = { version = "0.39", default-features = false } dotenv = { version = "0.15", default-features = false } # Dependencies from the `fuel-core` repository: -fuel-core = { version = "0.38.0", default-features = false, features = [ +fuel-core = { version = "0.39.0", default-features = false, features = [ "wasm-executor", ] } -fuel-core-chain-config = { version = "0.38.0", default-features = false } -fuel-core-client = { version = "0.38.0", default-features = false } -fuel-core-poa = { version = "0.38.0", default-features = false } -fuel-core-services = { version = "0.38.0", default-features = false } -fuel-core-types = { version = "0.38.0", default-features = false } +fuel-core-chain-config = { version = "0.39.0", default-features = false } +fuel-core-client = { version = "0.39.0", default-features = false } +fuel-core-poa = { version = "0.39.0", default-features = false } +fuel-core-services = { version = "0.39.0", default-features = false } +fuel-core-types = { version = "0.39.0", default-features = false } # Dependencies from the `fuel-vm` repository: fuel-asm = { version = "0.58.0" } diff --git a/packages/fuels-accounts/src/provider/supported_fuel_core_version.rs b/packages/fuels-accounts/src/provider/supported_fuel_core_version.rs index 2040e3e96..c047bcf89 100644 --- a/packages/fuels-accounts/src/provider/supported_fuel_core_version.rs +++ b/packages/fuels-accounts/src/provider/supported_fuel_core_version.rs @@ -1 +1 @@ -pub const SUPPORTED_FUEL_CORE_VERSION: semver::Version = semver::Version::new(0, 38, 0); +pub const SUPPORTED_FUEL_CORE_VERSION: semver::Version = semver::Version::new(0, 39, 0); From fa866a899fb145b369d85fbceb2d1aa9235893ed Mon Sep 17 00:00:00 2001 From: hal3e Date: Sat, 12 Oct 2024 16:29:28 +0200 Subject: [PATCH 2/2] add resolver value --- packages/fuels-test-helpers/src/service.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/fuels-test-helpers/src/service.rs b/packages/fuels-test-helpers/src/service.rs index f6cb9213d..9fc6f1430 100644 --- a/packages/fuels-test-helpers/src/service.rs +++ b/packages/fuels-test-helpers/src/service.rs @@ -93,6 +93,7 @@ impl FuelService { max_queries_depth: 16, max_queries_complexity: 80000, max_queries_recursive_depth: 16, + max_queries_resolver_recursive_depth: 1, max_queries_directives: 10, max_concurrent_queries: 1024, request_body_bytes_limit: 16 * 1024 * 1024,