Skip to content

Commit 3e480c7

Browse files
dependabot[bot]lutter
authored andcommitted
build(deps): bump thiserror from 1.0.61 to 2.0.12
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.61 to 2.0.12. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@1.0.61...2.0.12) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.12 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4be5c1f commit 3e480c7

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ sqlparser = "0.46.0"
8484
strum = { version = "0.26", features = ["derive"] }
8585
syn = { version = "2.0.101", features = ["full"] }
8686
test-store = { path = "./store/test-store" }
87-
thiserror = "1.0.25"
87+
thiserror = "2.0.12"
8888
tokio = { version = "1.44.2", features = ["full"] }
8989
tonic = { version = "0.12.3", features = ["tls-roots", "gzip"] }
9090
tonic-build = { version = "0.12.3", features = ["prost"] }

chain/ethereum/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ anyhow = "1.0"
1414
tiny-keccak = "1.5.0"
1515
hex = "0.4.3"
1616
semver = "1.0.23"
17+
thiserror = { workspace = true }
1718

1819
itertools = "0.13.0"
1920

core/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ graph-runtime-wasm = { path = "../runtime/wasm" }
1818
serde_yaml = { workspace = true }
1919
# Switch to crates.io once tower 0.5 is released
2020
tower = { git = "https://github.com/tower-rs/tower.git", features = ["full"] }
21+
thiserror = { workspace = true }
2122
cid = "0.11.1"
2223
anyhow = "1.0"
2324

graph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ prost-types = { workspace = true }
8787

8888
futures03 = { version = "0.3.1", package = "futures", features = ["compat"] }
8989
wasmparser = "0.118.1"
90-
thiserror = "1.0.25"
90+
thiserror = "2.0.12"
9191
parking_lot = "0.12.3"
9292
itertools = "0.13.0"
9393
defer = "0.2"

graph/src/components/store/err.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ pub enum StoreError {
5959
#[error("panic in subgraph writer: {0}")]
6060
WriterPanic(JoinError),
6161
#[error(
62-
"found schema version {0} but this graph node only supports versions up to {}. \
62+
"found schema version {0} but this graph node only supports versions up to {latest}. \
6363
Did you downgrade Graph Node?",
64-
DeploymentSchemaVersion::LATEST
64+
latest = DeploymentSchemaVersion::LATEST
6565
)]
6666
UnsupportedDeploymentSchemaVersion(i32),
6767
#[error("pruning failed: {0}")]

0 commit comments

Comments
 (0)