You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Pages navigation now links to the ProcessKit CLI Runner immediately after the Rust implementation.
Command.RetryBackoff / Command.retryBackoff retries one operation with bounded exponential delays and optional jitter, using the command's TimeProvider.
Command.ExtraFd / Command.extraFd adds a full-duplex POSIX child channel at file descriptor 3 or greater, claimed once through RunningProcess.TakeExtraFd.
A runnable C# Generic Host sample demonstrates supervised worker-process restarts, keyed liveness health reporting, logging, and graceful host shutdown.
HTTP readiness and liveness probes now accept caller-owned HttpClient instances for custom headers, TLS validation, proxies, and transports without transferring ownership.
RunningProcess.Signal delivers a signal to one run's own contained tree, with matching signal recording in FakeProcess.
Command.StopSignal and ProcessGroupOptions.WithStopSignal select the soft signal used before graceful-stop escalation.
ResourceLimits.WithCpuTimeMax and ProcessGroupOptions.WithCpuTimeMax cap CPU time through Windows Job Objects or POSIX RLIMIT_CPU.
Command.WindowsRawArg appends a trusted Windows command-line fragment verbatim for programs with non-standard argument parsers, with typed refusal on POSIX and automatic batch wrappers.
GitHub Releases now include a CycloneDX JSON SBOM for each published NuGet package, covered by checksums and build-provenance attestations.
Changed
macOS child exits now use one shared kqueueEVFILT_PROC reaper instead of rescanning every pending pid on each SIGCHLD.
Scheduled dependency audits now fail on vulnerable direct or transitive NuGet packages and run as part of the local full-verification script.
StopAsync, pipeline sessions, supervisors, hosted processes, timeout grace, and group shutdown now honor the configured soft-stop signal.
Command.StopSignal and ProcessGroupOptions.WithStopSignal now report invalid graceful-stop signals through one consistent validation contract.
Fixed
HTTP readiness and liveness probes now reject relative URIs immediately instead of surfacing raw transport errors or restarting healthy children.
HTTP readiness probes now reject empty acceptable-status sets and unrepresentable Unix-socket paths instead of silently consuming the full readiness timeout.
Failed Windows Job limit updates now restore the previous cumulative CPU-time deadline without granting the process tree a fresh budget.
Command.Retry now rejects negative delays at the builder boundary instead of silently retrying with no delay.