From 00585deca57921ad79bd2fb791ce44e50ad1a786 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 23 Feb 2026 05:30:15 +0000 Subject: [PATCH 1/2] chore(deps): upgrade monty to latest main (87f8f31) Pin monty to rev 87f8f31 (5 commits past v0.0.7) which includes: - pyo3-build-config for easier ubuntu builds - remove take_data! from cell value methods (heap refactor) - REPL session preservation on runtime errors - rustyline REPL line editing - monty-js build.rs fix https://claude.ai/code/session_01VaBqrsCfoxzDYhFarhF36x --- crates/bashkit/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bashkit/Cargo.toml b/crates/bashkit/Cargo.toml index cf21846d..a26c753d 100644 --- a/crates/bashkit/Cargo.toml +++ b/crates/bashkit/Cargo.toml @@ -61,7 +61,7 @@ base64 = { workspace = true, optional = true } tracing = { workspace = true, optional = true } # Embedded Python interpreter (optional) -monty = { git = "https://github.com/pydantic/monty", tag = "v0.0.7", optional = true } +monty = { git = "https://github.com/pydantic/monty", rev = "87f8f31", optional = true } [features] default = [] From 3af848937f19ab844dd1a87ed40e23bb84a0758d Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 23 Feb 2026 05:38:41 +0000 Subject: [PATCH 2/2] chore(deps): add cargo-vet exemptions for rustix 1.1.4 and linux-raw-sys 0.12.1 New transitive dependencies from monty upgrade via pyo3-build-config. https://claude.ai/code/session_01VaBqrsCfoxzDYhFarhF36x --- supply-chain/config.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/supply-chain/config.toml b/supply-chain/config.toml index 92f2d44e..c28f3a51 100644 --- a/supply-chain/config.toml +++ b/supply-chain/config.toml @@ -622,6 +622,10 @@ criteria = "safe-to-deploy" version = "0.11.0" criteria = "safe-to-run" +[[exemptions.linux-raw-sys]] +version = "0.12.1" +criteria = "safe-to-run" + [[exemptions.litemap]] version = "0.8.1" criteria = "safe-to-deploy" @@ -974,6 +978,10 @@ criteria = "safe-to-deploy" version = "1.1.3" criteria = "safe-to-run" +[[exemptions.rustix]] +version = "1.1.4" +criteria = "safe-to-run" + [[exemptions.rustls]] version = "0.23.36" criteria = "safe-to-deploy"