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
62 changes: 29 additions & 33 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 @@ -146,7 +146,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

This commit has no Signed-off-by trailer, so .github/workflows/dco.yml will reject it while checking every non-merge commit in the PR. Recreate the commit with git commit -s so the required DCO check can pass.

AGENTS.md reference: AGENTS.md:L372-L372

Useful? React with 👍 / 👎.

pkcs1 = { version = "0.7", features = ["alloc"] }
pkcs8 = { version = "0.10" }
proptest = { version = "1" }
Expand All @@ -157,7 +157,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 Keep Rhai aligned with the declared script ABI

This changes the interpreter used by Evidence scripts and BReg planners/handlers to 1.26.0, while the reviewed Evidence ABI still pins Rhai 1.25.1 (products/evidence/reference/request-adapter/ADAPTER-API.md:545) and BReg still serializes CHANGE_REQUEST_PLANNER_RHAI_VERSION = "1.25.1" into compiled packages (crates/registry-breg/src/change_request.rs:64). A reviewed script affected by 1.26's optimizer or semantic fixes will therefore execute differently while its contract metadata continues to attest 1.25.1, potentially changing signed assertions or action effects. Keep 1.25.1, or update and review the ABI, version constants, tests, and generated artifacts together.

AGENTS.md reference: AGENTS.md:L206-L207

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