Skip to content

Commit c3e1c36

Browse files
alambJefffrey
andauthored
Downgrade aws-smithy-runtime, update rust_decimal, ignore RUSTSEC-2026-0001 to get clean CI (#19657)
## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - Closes #19656 ## Rationale for this change CI is failing I think because aws-smithy-runtime was yanked ## What changes are included in this PR? ran `cargo update` for this crate and then checked in the results: ```shell andrewlamb@Andrews-MacBook-Pro-3:~/Software/datafusion$ cargo update -p aws-smithy-runtime Updating crates.io index Locking 1 package to latest compatible version Downgrading aws-smithy-runtime v1.9.6 -> v1.9.5 note: pass `--verbose` to see 149 unchanged dependencies behind latest ``` ## Are these changes tested? I tested locally ```shell cargo audit ``` ## Are there any user-facing changes? No this is a developmnt process only --------- Co-authored-by: Jefffrey <[email protected]>
1 parent 5c2ee36 commit c3e1c36

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

.github/workflows/audit.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,7 @@ jobs:
4646
with:
4747
tool: cargo-audit
4848
- name: Run audit check
49-
run: cargo audit
49+
# RUSTSEC-2026-0001: https://rustsec.org/advisories/RUSTSEC-2026-0001.html
50+
# underlying rkyv is patched, but rustsec database not yet updated
51+
# Can remove when this is merged: https://github.com/rustsec/advisory-db/pull/2565
52+
run: cargo audit --ignore RUSTSEC-2026-0001

Cargo.lock

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

datafusion/sqllogictest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ log = { workspace = true }
5757
object_store = { workspace = true }
5858
postgres-protocol = { version = "0.6.7", optional = true }
5959
postgres-types = { version = "0.2.11", features = ["derive", "with-chrono-0_4"], optional = true }
60-
rust_decimal = { version = "1.38.0", features = ["tokio-pg"] }
60+
rust_decimal = { version = "1.39.0", features = ["tokio-pg"] }
6161
# When updating the following dependency verify that sqlite test file regeneration works correctly
6262
# by running the regenerate_sqlite_files.sh script.
6363
sqllogictest = "0.28.4"

0 commit comments

Comments
 (0)