Skip to content

chore: bump-version to 18.0.0-rc1 - #1736

Merged
rjan90 merged 2 commits into
masterfrom
phi/bump-version
Apr 16, 2026
Merged

chore: bump-version to 18.0.0-rc1#1736
rjan90 merged 2 commits into
masterfrom
phi/bump-version

Conversation

@rjan90

@rjan90 rjan90 commented Apr 16, 2026

Copy link
Copy Markdown
Contributor

Bumping the version in prep for the code-freeze and testing in Butterfly. Once confirmed to be working properly in Butterfly, will bump to a stable release with the RC

chore: bump-version in prep for rc1
@rjan90
rjan90 requested a review from LesnyRumcajs April 16, 2026 12:19
@github-project-automation github-project-automation Bot moved this to 📌 Triage in FilOz Apr 16, 2026
@LesnyRumcajs

Copy link
Copy Markdown
Contributor

Let's also update the lockfile (cargo c, you can interrupt it after a second)

@codecov-commenter

codecov-commenter commented Apr 16, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 90.56%. Comparing base (50b9ed8) to head (4ff02df).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##           master    #1736   +/-   ##
=======================================
  Coverage   90.56%   90.56%           
=======================================
  Files         140      140           
  Lines       27814    27814           
=======================================
  Hits        25189    25189           
  Misses       2625     2625           
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

chore: update cargo.lock
@github-actions

Copy link
Copy Markdown

Suggested tag: v18.0.0-rc1

Comparing to: v17.0.0 (diff)

Changes in configuration file(s):

diff --git a/Cargo.toml b/Cargo.toml
index a3bef862..b44e0446 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -74,32 +74,32 @@ testing-fake-proofs = []
 
 [workspace.dependencies]
 # Common
-serde = { version = "1.0.219", features = ["derive"] }
-anyhow = "1.0.98"
+serde = { version = "1.0", features = ["derive"] }
+anyhow = "1.0.102"
 bitflags = "2.9.0"
 num = { version = "0.4", features = ["serde"] }
 num-derive = "0.4.2"
 num-traits = "0.2.19"
 lazy_static = "1.5.0"
-log = { version = "0.4.27", features = ["std"] }
+log = { version = "0.4.29", features = ["std"] }
 byteorder = "1.5.0"
 itertools = "0.14.0"
-indexmap = { version = "2.9.0" }
+indexmap = { version = "2.13.1" }
 derive_builder = "0.20.2"
-once_cell = "1.21.3"
-rand = { version = "0.8.5", default-features = false }
+once_cell = "1.21.4"
+rand = { version = "0.9.3", default-features = false }
 hex = "0.4.3"
-hex-literal = "1.0.0"
+hex-literal = "1.1.0"
 serde_json = "1.0"
 regex = "1"
 test-case = "3.3.1"
 bimap = "0.6.3"
-castaway = "0.2.3"
-thiserror = "2.0.12"
+castaway = "0.2.4"
+thiserror = "2.0.18"
 pretty_env_logger = "0.5.0"
 serde_repr = "0.1.20"
 unsigned-varint = "0.8.0"
-rand_chacha = "0.3.1"
+rand_chacha = "0.9.0"
 
 # Crypto
 k256 = { version = "0.13.4", default-features = false }
@@ -121,13 +121,13 @@ cid = { version = "0.11.1", default-features = false, features = [
 multihash = { version = "0.19.3", default-features = false }
 multihash-codetable = { version = "0.1.4", default-features = false }
 multihash-derive = { version = "0.9.1", default-features = false }
-ipld-core = { version = "0.4.2", features = ["serde"] }
-integer-encoding = { version = "4.0.2", default-features = false }
+ipld-core = { version = "0.4.3", features = ["serde"] }
+integer-encoding = { version = "4.1.0", default-features = false }
 
 # actor-utils
 fvm_actor_utils = "14.0.0"
 frc42_dispatch = "10.0.0"
-frc46_token = "14.0.0"
+frc46_token = "14.1.0"
 
 # FVM
 fvm_sdk = "~4.7"
@@ -136,7 +136,7 @@ fvm_ipld_encoding = "0.5.3"
 fvm_ipld_blockstore = "0.3.1"
 fvm_ipld_hamt = "0.10.4"
 fvm_ipld_kamt = "0.4.5"
-fvm_ipld_amt = "0.7.4"
+fvm_ipld_amt = "0.7.5"
 fvm_ipld_bitfield = "0.7.2"
 
 # workspacediff --git a/actors/evm/Cargo.toml b/actors/evm/Cargo.toml
index de100f92..334a94bd 100644
--- a/actors/evm/Cargo.toml
+++ b/actors/evm/Cargo.toml
@@ -15,6 +15,7 @@ exclude = ["/precompile-testdata", "/tests/measurements", "/tests/contracts"]
 crate-type = ["cdylib", "lib"]
 
 [dependencies]
+p256 = { version = "0.13.2", features = ["ecdsa"], default-features = false }
 fil_actors_runtime = { workspace = true }
 fvm_shared = { workspace = true }
 fvm_ipld_kamt = { workspace = true }
@@ -33,7 +34,8 @@ hex = { workspace = true }
 hex-literal = { workspace = true }
 substrate-bn = { workspace = true }
 thiserror = { workspace = true }
-blst = "0.3.14"
+blst = "0.3.16"
+alloy-core = { workspace = true }
 
 [dev-dependencies]
 hex = { workspace = true, features = ["serde"] }
@@ -42,8 +44,9 @@ fil_actors_runtime = { workspace = true, features = ["test_utils", "sector-defau
 etk-asm = { workspace = true }
 alloy-core = { workspace = true }
 serde_json = { workspace = true }
-rand = { workspace = true }
+rand = { workspace = true, features = ["thread_rng"] }
 once_cell = { workspace = true }
+rstest = "0.26.0"
 
 
 [features]
diff --git a/actors/miner/Cargo.toml b/actors/miner/Cargo.toml
index 44d417fd..5901d0d0 100644
--- a/actors/miner/Cargo.toml
+++ b/actors/miner/Cargo.toml
@@ -24,6 +24,7 @@ fvm_ipld_hamt = { workspace = true }
 fvm_ipld_blockstore = { workspace = true }
 fvm_ipld_encoding = { workspace = true }
 serde = { workspace = true }
+serde_repr = { workspace = true }
 cid = { workspace = true }
 anyhow = { workspace = true }
 multihash = { workspace = true }

Automatically created GitHub Release

A draft GitHub Release has been created.
It is going to be published when this PR is merged.
You can modify its' body to include any release notes you wish to include with the release.

@rjan90 rjan90 moved this from 📌 Triage to 🔎 Awaiting Review in FilOz Apr 16, 2026
@github-project-automation github-project-automation Bot moved this from 🔎 Awaiting Review to ✔️ Approved by reviewer in FilOz Apr 16, 2026
@rjan90
rjan90 added this pull request to the merge queue Apr 16, 2026
Merged via the queue into master with commit 0e1b559 Apr 16, 2026
14 checks passed
@rjan90
rjan90 deleted the phi/bump-version branch April 16, 2026 13:27
@github-project-automation github-project-automation Bot moved this from ✔️ Approved by reviewer to 🎉 Done in FilOz Apr 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: 🎉 Done

Development

Successfully merging this pull request may close these issues.

3 participants