Skip to content
Closed
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
42 changes: 19 additions & 23 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ napi = { version = "3.12.0", features = ["async", "serde-json"] }
napi-build = { version = "2.4.0" }
napi-derive = { version = "3.6.2" }
p256 = { version = "0.13", features = ["ecdsa"] }
pg_query = { version = "=6.1.1", default-features = false }
pg_query = { version = "=6.2.0", default-features = false }

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Add the required DCO sign-off

The commit message has no Signed-off-by: trailer, so this commit does not satisfy the repository's DCO requirement and will need to be recreated or included in a properly signed-off replacement commit before it can be accepted.

AGENTS.md reference: AGENTS.md:L314-L314

Useful? React with 👍 / 👎.

pkcs1 = { version = "0.7", features = ["alloc"] }
pkcs8 = { version = "0.10" }
proptest = { version = "1" }
Expand All @@ -153,7 +153,7 @@ rand_chacha = { version = "0.9" }
rand_core = { version = "0.6", features = ["std"] }
rcgen = { version = "0.13", default-features = false, features = ["ring", "zeroize"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "rustls-tls-native-roots"] }
rhai = { version = "=1.25.1", features = ["sync", "serde"] }
rhai = { version = "=1.26.0", features = ["sync", "serde"] }

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Document the security review of the Rhai upgrade

This pin changes the interpreter used by registry-evidence for derivation and other assertion scripts, and the included 1.26.0 release notes explicitly describe optimizer and function-call semantic changes; nevertheless, the commit contains no explicit review of their effect on Evidence's bounded assertion evaluation. Add the required security review notes before accepting this behavior-changing dependency update.

AGENTS.md reference: AGENTS.md:L323-L325

Useful? React with 👍 / 👎.

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Preserve the pinned Rhai ABI version

When Evidence adapter scripts or BReg change-request planners run, this makes them execute under Rhai 1.26.0 even though products/evidence/contracts/rhai-abi.yaml:164 and ADAPTER-API.md:496-498 freeze observable behavior at 1.25.1, the Evidence lexical guard explicitly emulates 1.25.1 tokenization, and BReg still emits rhaiVersion: 1.25.1 from CHANGE_REQUEST_PLANNER_RHAI_VERSION. Thus compiled artifacts can be validated and advertised as 1.25.1 while receiving 1.26.0's changed optimizer and call semantics; retain the 1.25.1 pin unless the scanner, version metadata, compatibility tests, and governed contracts are intentionally revised together.

AGENTS.md reference: AGENTS.md:L167-L170

Useful? React with 👍 / 👎.

rustls = { version = "0.23", default-features = false, features = ["std", "ring"] }
# `bundled` vendors the SQLite amalgamation, so a statement source needs no
# system library. `hooks` carries the authorizer and the progress handler, which
Expand Down
Loading