Skip to content

Commit 1653b08

Browse files
build(deps): bump thiserror from 1.0.68 to 2.0.4 (#3417)
* build(deps): bump thiserror from 1.0.68 to 2.0.4 Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.68 to 2.0.4. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@1.0.68...2.0.4) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deny): allow duplicate versions of thiserror * chore(detect): fix thiserror usage --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Oliver Gould <ver@buoyant.io>
1 parent a39eb30 commit 1653b08

File tree

38 files changed

+108
-86
lines changed

38 files changed

+108
-86
lines changed

Cargo.lock

Lines changed: 70 additions & 50 deletions
Large diffs are not rendered by default.

deny.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ skip = [
6666
{ name = "hashbrown", version = "0.12" },
6767
]
6868
skip-tree = [
69+
# thiserror v2 is still propagating through the ecosystem
70+
{ name = "thiserror", version = "1" },
6971
]
7072

7173
[sources]

linkerd/addr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publish = false
1010
http = "0.2"
1111
ipnet = "2.10"
1212
linkerd-dns-name = { path = "../dns/name" }
13-
thiserror = "1"
13+
thiserror = "2"
1414

1515
[lints.rust]
1616
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }

linkerd/app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ linkerd-opentelemetry = { path = "../opentelemetry" }
2929
linkerd-tonic-stream = { path = "../tonic-stream" }
3030
rangemap = "1"
3131
regex = "1"
32-
thiserror = "1"
32+
thiserror = "2"
3333
tokio = { version = "1", features = ["rt"] }
3434
tokio-stream = { version = "0.1", features = ["time", "sync"] }
3535
tonic = { version = "0.10", default-features = false, features = ["prost"] }

linkerd/app/admin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ futures = { version = "0.3", default-features = false }
2323
pprof = { version = "0.14", optional = true, features = ["prost-codec"] }
2424
serde = "1"
2525
serde_json = "1"
26-
thiserror = "1"
26+
thiserror = "2"
2727
tokio = { version = "1", features = ["macros", "sync", "parking_lot"] }
2828
tracing = "0.1"
2929

linkerd/app/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ipnet = "2.10"
2323
prometheus-client = "0.22"
2424
regex = "1"
2525
serde_json = "1"
26-
thiserror = "1"
26+
thiserror = "2"
2727
tokio = { version = "1", features = ["macros", "sync", "parking_lot"] }
2828
tokio-stream = { version = "0.1", features = ["time"] }
2929
tonic = { version = "0.10", default-features = false, features = ["prost"] }

linkerd/app/gateway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ linkerd-app-inbound = { path = "../inbound" }
1414
linkerd-app-outbound = { path = "../outbound" }
1515
linkerd-proxy-client-policy = { path = "../../proxy/client-policy" }
1616
once_cell = "1"
17-
thiserror = "1"
17+
thiserror = "2"
1818
tokio = { version = "1", features = ["sync"] }
1919
tonic = { version = "0.10", default-features = false }
2020
tower = { version = "0.4", default-features = false }

linkerd/app/inbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ linkerd2-proxy-api = { workspace = true, features = ["inbound"] }
3434
once_cell = "1"
3535
parking_lot = "0.12"
3636
rangemap = "1"
37-
thiserror = "1"
37+
thiserror = "2"
3838
tokio = { version = "1", features = ["sync"] }
3939
tonic = { version = "0.10", default-features = false }
4040
tower = { version = "0.4", features = ["util"] }

linkerd/app/outbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ once_cell = "1"
2727
parking_lot = "0.12"
2828
pin-project = "1"
2929
prometheus-client = "0.22"
30-
thiserror = "1"
30+
thiserror = "2"
3131
tokio = { version = "1", features = ["sync"] }
3232
tonic = { version = "0.10", default-features = false }
3333
tower = { version = "0.4", features = ["util"] }

linkerd/app/test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tokio-stream = { version = "0.1", features = ["sync"] }
3232
tonic = { version = "0.10", default-features = false, optional = true }
3333
tower = { version = "0.4", default-features = false }
3434
tracing = "0.1"
35-
thiserror = "1"
35+
thiserror = "2"
3636

3737
[dependencies.tracing-subscriber]
3838
version = "0.3"

0 commit comments

Comments
 (0)