Skip to content

Commit 2d004af

Browse files
authored
chore(deps): update testcontainers to 0.25.2 and drop ignore of RUSTSEC-2025-0111 (#18305)
## Which issue does this PR close? Follow up to #18288 ## Rationale for this change Updates `testcontainers` in order to avoid `RUSTSEC-2025-0111` ignore
1 parent 410d292 commit 2d004af

File tree

3 files changed

+171
-44
lines changed

3 files changed

+171
-44
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,4 @@ jobs:
4646
with:
4747
tool: cargo-audit
4848
- name: Run audit check
49-
# RUSTSEC-2025-0111: tokio-tar is by testcontainers for orchestration
50-
# of testing, so does not impact DataFusion's security
51-
# See https://github.com/apache/datafusion/issues/18288
52-
# NOTE: can remove this once testcontainers releases a version that includes
53-
# https://github.com/testcontainers/testcontainers-rs/pull/852
54-
run: cargo audit --ignore RUSTSEC-2025-0111
49+
run: cargo audit

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ rstest = "0.25.0"
178178
serde_json = "1"
179179
sqlparser = { version = "0.59.0", default-features = false, features = ["std", "visitor"] }
180180
tempfile = "3"
181-
testcontainers = { version = "0.24", features = ["default"] }
182-
testcontainers-modules = { version = "0.12" }
181+
testcontainers = { version = "0.25.2", features = ["default"] }
182+
testcontainers-modules = { version = "0.13" }
183183
tokio = { version = "1.48", features = ["macros", "rt", "sync"] }
184184
url = "2.5.7"
185185

0 commit comments

Comments
 (0)