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 packages/cachekit-core-ts/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 packages/cachekit-core-ts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["cdylib"]
[dependencies]
napi = { version = "3", features = ["napi6"] }
napi-derive = "3"
cachekit-core = { version = "0.5.0", features = ["encryption"] }
cachekit-core = { version = "0.6.0", features = ["encryption"] }

[build-dependencies]
napi-build = "2"
Expand Down
4 changes: 2 additions & 2 deletions packages/cachekit-core-wasm/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 packages/cachekit-core-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ wasm-bindgen = "=0.2.121"
# accept Uint8Array[] (previous master keys) across the boundary. Exact-pinned
# to the release paired with wasm-bindgen 0.2.121 above.
js-sys = "=0.3.98"
cachekit-core = { version = "0.5.0", features = ["encryption"] }
cachekit-core = { version = "0.6.0", features = ["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: This dependency version bump (0.4.0 -> 0.6.0) changes a dependency manifest without evidence of CVE/SCA validation. WHY: New package versions may introduce known vulnerabilities or supply-chain risk. HOW: Run an OSV/SCA scan against the new version and include audit output or advisory links in the PR description, and ensure the lockfile is updated.

Also found in:

  • packages/cachekit-core-ts/Cargo.toml:13-13

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

Prompt for LLM

File packages/cachekit-core-wasm/Cargo.toml:

Line 21:

WHAT: This dependency version bump (0.4.0 -> 0.6.0) changes a dependency manifest without evidence of CVE/SCA validation. WHY: New package versions may introduce known vulnerabilities or supply-chain risk. HOW: Run an OSV/SCA scan against the new version and include audit output or advisory links in the PR description, and ensure the lockfile is updated.

Talk to Kody by mentioning @kody

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

# Wipes the owned previous-master-key staging buffers on drop (the NAPI crate
# borrows and never copies; this crate must copy out of JS memory). Already in
# the tree transitively via cachekit-core — same resolved version.
Expand Down
Loading