Skip to content
Merged
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.2.0] - 2026-07-19

### Added

- **Persistent Git Protocol Sessions**: Added bounded, backpressured sessions
for `git cat-file --batch`, `git mktree --batch -z`, and `git fast-import`.
- **Cross-Runtime Duplex Port**: Added an optional session runner contract for
Node.js, Bun, Deno, and custom runners while preserving one-shot execution.

### Fixed

- **Session Contract Validation**: Normalized validation and process failures,
bounded stderr collection, and hardened close, timeout, and poison behavior.

## [3.1.0] - 2026-07-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@git-stunts/plumbing",
"version": "3.1.0",
"version": "3.2.0",
"description": "Robust async, stream-first Git plumbing for Node, Bun, and Deno.",
"type": "module",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/infrastructure/adapters/deno/DenoShellRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default class DenoShellRunner {
}
}
return {
code: processError !== null && status.code === 0 ? 1 : status.code,
code: status.code === 0 && (processError !== null || timedOut) ? 1 : status.code,
error: processError,
signal: status.signal,
stderr: await stderrPromise,
Expand Down
Loading