Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
# Compression, checksums, encryption (https://crates.io/crates/cachekit-core)
cachekit-core = { version = "0.4.0", features = ["compression", "checksum", "messagepack", "encryption"] }
cachekit-core = { version = "0.5.0", features = ["compression", "checksum", "messagepack", "encryption"] }

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

kody code-review Kody Rules high

WHAT: A dependency version bump (cachekit-core 0.4.0 -> 0.5.0) was made without CVE/SCA evidence or a lockfile update. WHY: Dependency changes can introduce known vulnerabilities or supply-chain risk. HOW: Run an OSV/SCA scan (e.g., cargo audit) on the new version, include the results/advisory links in the PR description, and update Cargo.lock accordingly.

Kody rule violation: Validate new/updated dependencies for CVEs and supply-chain risk

Prompt for LLM

File rust/Cargo.toml:

Line 23:

WHAT: A dependency version bump (cachekit-core 0.4.0 -> 0.5.0) was made without CVE/SCA evidence or a lockfile update. WHY: Dependency changes can introduce known vulnerabilities or supply-chain risk. HOW: Run an OSV/SCA scan (e.g., cargo audit) on the new version, include the results/advisory links in the PR description, and update Cargo.lock accordingly.

Talk to Kody by mentioning @kody

Was this suggestion helpful? React with 👍 or 👎 to help Kody learn from this interaction.


# Python integration - optional for Rust-only builds
pyo3 = { workspace = true, optional = true }
Expand Down
4 changes: 2 additions & 2 deletions rust/fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ rmp-serde = "1"
# Bump it in the same diff as every parent-crate core bump.
[dependencies.cachekit_storage]
package = "cachekit-core"
version = "=0.4.0"
version = "=0.5.0"
features = ["compression", "checksum", "messagepack", "encryption"]

# Prevent this from interfering with normal build
Expand Down
Loading