Skip to content

Commit ed10ad7

Browse files
build(deps): bump reqwest from 0.11.24 to 0.12.23
Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.11.24 to 0.12.23. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](seanmonstar/reqwest@v0.11.24...v0.12.23) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.12.23 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 841f4b3 commit ed10ad7

File tree

18 files changed

+41
-41
lines changed

18 files changed

+41
-41
lines changed

Cargo.lock

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

src/balancerd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = tru
5858
mz-environmentd = { path = "../environmentd", default-features = false, features = ["test"] }
5959
mz-frontegg-mock = { path = "../frontegg-mock" }
6060
postgres = "0.19.5"
61-
reqwest = "0.11.24"
61+
reqwest = "0.12.23"
6262
tempfile = "3.23.0"
6363

6464
[features]

src/ccsr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ workspace = true
1313
anyhow = "1.0.100"
1414
native-tls = "0.2.14"
1515
openssl = { version = "0.10.75", features = ["vendored"] }
16-
reqwest = { version = "0.11.13", features = [
16+
reqwest = { version = "0.12.23", features = [
1717
"blocking",
1818
"json",
1919
"native-tls-vendored",

src/cloud-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ workspace = true
1212
[dependencies]
1313
anyhow = "1.0.100"
1414
chrono = { version = "0.4.39", default-features = false, features = ["std"] }
15-
reqwest = { version = "0.11.4", features = ["json"] }
15+
reqwest = { version = "0.12.23", features = ["json"] }
1616
serde = { version = "1.0.219", features = ["derive"] }
1717
url = "2.5.7"
1818
thiserror = "2.0.17"

src/environmentd/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ rdkafka-sys = { version = "4.3.0", features = [
9696
] }
9797
rand = "0.9.2"
9898
regex = { version = "1.12.2", optional = true }
99-
reqwest = { version = "0.11.13", features = ["json"] }
99+
reqwest = { version = "0.12.23", features = ["json"] }
100100
rlimit = "0.10.2"
101101
semver = "1.0.27"
102102
sentry-tracing = "0.38.1"
@@ -156,7 +156,7 @@ rdkafka = { version = "0.29.0", features = [
156156
"libz-static",
157157
"zstd",
158158
] }
159-
reqwest = { version = "0.11.13", features = ["blocking"] }
159+
reqwest = { version = "0.12.23", features = ["blocking"] }
160160
serde_json = "1.0.145"
161161
serde_urlencoded = "0.7.1"
162162
similar-asserts = "1.7"

src/fivetran-destination/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ insta = "1.43"
4545
[build-dependencies]
4646
mz-build-tools = { path = "../build-tools", default-features = false, features = ["protobuf-src"] }
4747
prost-build = "0.13.5"
48-
reqwest = { version = "0.11.13", features = ["blocking", "native-tls-vendored"] }
48+
reqwest = { version = "0.12.23", features = ["blocking", "native-tls-vendored"] }
4949
tonic-build = "0.12.3"
5050

5151
[features]

src/frontegg-auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ lru = "0.14.0"
2020
mz-ore = { path = "../ore", features = ["network", "metrics"] }
2121
mz-repr = { path = "../repr" }
2222
prometheus = { version = "0.14.0", default-features = false }
23-
reqwest = { version = "0.11.13", features = ["json"] }
23+
reqwest = { version = "0.12.23", features = ["json"] }
2424
reqwest-middleware = "0.2.2"
2525
reqwest-retry = "0.2.2"
2626
serde = { version = "1.0.219", features = ["derive"] }

src/frontegg-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ workspace = true
1313
jsonwebtoken = "9.3.1"
1414
mz-frontegg-auth = { path = "../frontegg-auth" }
1515
mz-ore = { path = "../ore", features = ["network"] }
16-
reqwest = { version = "0.11.13", features = ["json"] }
16+
reqwest = { version = "0.12.23", features = ["json"] }
1717
serde = { version = "1.0.219", features = ["derive"] }
1818
thiserror = "2.0.17"
1919
tokio = { version = "1.48.0", features = ["macros"] }

src/frontegg-mock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ uuid = "1.18.1"
2929
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }
3030

3131
[dev-dependencies]
32-
reqwest = { version = "0.11.13", features = ["json"] }
32+
reqwest = { version = "0.12.23", features = ["json"] }
3333
openssl = { version = "0.10.75", features = ["vendored"] }
3434

3535
[package.metadata.cargo-udeps.ignore]

src/metabase/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publish = false
1010
workspace = true
1111

1212
[dependencies]
13-
reqwest = { version = "0.11.13", features = ["json"] }
13+
reqwest = { version = "0.12.23", features = ["json"] }
1414
serde = { version = "1.0.219", features = ["derive"] }
1515
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }
1616

0 commit comments

Comments
 (0)