deps: bump processkit =1.1.0 → =1.2.0 (deep-audit fixes) - #7
Merged
Conversation
…orce shared-group streaming timeout)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the pinned
processkitcrate=1.1.0→=1.2.0(published 2026-07-03, a deep-audit release). Non-breaking within 1.x — the binding compiles with zero code changes and all tests pass.What this brings
Almost entirely inherited correctness fixes on surface processkit-py exposes:
Commandtimeout now enforced while streaming a shared-group handle (group.astart(cmd)→stdout_lines) — previously the deadline watchdog armed only for own-group handles, so a quiet child left the stream pending forever. (New regression test.)ProcessGroupafter a gracefulshutdown(escalate_to_kill=False)no longer orphans fresh children.wait/profilegain a 64 MiB in-flight cap (OOM guard); boundedProcessResultDebug; cleanerError::TimeoutDisplay; cassette replay fidelity + crash-safe writes; env-isolation no longer pierced by client defaults;ok_codes([])a true no-op; Windows suspend/resume thread-owner check; cgroup hybrid-mount detection.The one upstream behavioral change (
default_envduplicate-key → last-wins) does not affect this binding (CliClient env is a dict).Deferred (surface stays minimal for the 1.0 freeze)
The new 1.2.0 additive APIs —
no_timeout,output_contains_any,default_retry/RetryPolicy,default_env_fn(and the Rust-ergonomicBox/Arc<dyn ProcessRunner>+Erroraccessors, N/A to the Python surface) — are deferred. They're safely additive after the freeze.Verification
cargo build/clippy -D warnings/fmtclean against 1.2.0;Cargo.lockadds zero new transitive deps.mypy --strict,mypy.stubtest, pytest 205 passed / 4 skipped (+1:test_shared_group_streaming_enforces_command_timeout).