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

update fuel-core to 0.39.0 #1530

Merged
merged 2 commits into from
Oct 12, 2024
Merged
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 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
Original file line number Diff line number Diff line change
@@ -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);
1 change: 1 addition & 0 deletions packages/fuels-test-helpers/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading