From 029a101ff08ab18efc9fe454caa625036697f007 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 25 Sep 2026 13:11:43 +0000 Subject: [PATCH] chore: version packages --- .changeset/easy-pianos-joke.md | 5 ----- .changeset/fix-windows-cmd-shim-spawn.md | 5 ----- CHANGELOG.md | 6 ++++++ llms-full.txt | 6 ++++++ package-lock.json | 4 ++-- package.json | 2 +- readme-standard-v1.json | 2 +- 7 files changed, 16 insertions(+), 14 deletions(-) delete mode 100644 .changeset/easy-pianos-joke.md delete mode 100644 .changeset/fix-windows-cmd-shim-spawn.md diff --git a/.changeset/easy-pianos-joke.md b/.changeset/easy-pianos-joke.md deleted file mode 100644 index 064435d..0000000 --- a/.changeset/easy-pianos-joke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- - ---- - - diff --git a/.changeset/fix-windows-cmd-shim-spawn.md b/.changeset/fix-windows-cmd-shim-spawn.md deleted file mode 100644 index e619063..0000000 --- a/.changeset/fix-windows-cmd-shim-spawn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@agentskit/code-review": patch ---- - -Fix local CLI providers (`claude-cli`, `codex-cli`, ...) failing to spawn on Windows. npm's global install of any Node CLI produces a `.cmd` shim there, and Windows' `CreateProcess` cannot execute one without a shell, so the previous plain `child_process.spawn` failed with `ENOENT`/`EINVAL` for every local provider regardless of the configured path — reproduced live via `doctor --provider claude-cli`, which reported `executable: not found` even though the CLI ran fine directly in the same shell. Switched to `cross-spawn`, which detects this case and re-execs through `cmd.exe` with the same argument escaping Node's own `shell: true` uses. diff --git a/CHANGELOG.md b/CHANGELOG.md index 2baa656..a4b3a9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.32.1 + +### Patch Changes + +- [#295](https://github.com/AgentsKit-io/code-review/pull/295) [`57d62f7`](https://github.com/AgentsKit-io/code-review/commit/57d62f78f6c1687b87f680b846f50c64d02ae81f) Thanks [@rembradtech](https://github.com/rembradtech)! - Fix local CLI providers (`claude-cli`, `codex-cli`, ...) failing to spawn on Windows. npm's global install of any Node CLI produces a `.cmd` shim there, and Windows' `CreateProcess` cannot execute one without a shell, so the previous plain `child_process.spawn` failed with `ENOENT`/`EINVAL` for every local provider regardless of the configured path — reproduced live via `doctor --provider claude-cli`, which reported `executable: not found` even though the CLI ran fine directly in the same shell. Switched to `cross-spawn`, which detects this case and re-execs through `cmd.exe` with the same argument escaping Node's own `shell: true` uses. + ## 0.32.0 ### Minor Changes diff --git a/llms-full.txt b/llms-full.txt index 3ac7d41..3c5ab57 100644 --- a/llms-full.txt +++ b/llms-full.txt @@ -2199,6 +2199,12 @@ Canonical source: https://raw.githubusercontent.com/AgentsKit-io/code-review/mai # Changelog +## 0.32.1 + +### Patch Changes + +- [#295](https://github.com/AgentsKit-io/code-review/pull/295) [`57d62f7`](https://github.com/AgentsKit-io/code-review/commit/57d62f78f6c1687b87f680b846f50c64d02ae81f) Thanks [@rembradtech](https://github.com/rembradtech)! - Fix local CLI providers (`claude-cli`, `codex-cli`, ...) failing to spawn on Windows. npm's global install of any Node CLI produces a `.cmd` shim there, and Windows' `CreateProcess` cannot execute one without a shell, so the previous plain `child_process.spawn` failed with `ENOENT`/`EINVAL` for every local provider regardless of the configured path — reproduced live via `doctor --provider claude-cli`, which reported `executable: not found` even though the CLI ran fine directly in the same shell. Switched to `cross-spawn`, which detects this case and re-execs through `cmd.exe` with the same argument escaping Node's own `shell: true` uses. + ## 0.32.0 ### Minor Changes diff --git a/package-lock.json b/package-lock.json index d3e2630..ad724c7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@agentskit/code-review", - "version": "0.32.0", + "version": "0.32.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@agentskit/code-review", - "version": "0.32.0", + "version": "0.32.1", "license": "MIT", "dependencies": { "@agentskit/adapters": "^0.17.0", diff --git a/package.json b/package.json index ae86b05..94ece79 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agentskit/code-review", - "version": "0.32.0", + "version": "0.32.1", "type": "module", "description": "Provider-agnostic, low-noise AI code review for local development and GitHub Actions.", "license": "MIT", diff --git a/readme-standard-v1.json b/readme-standard-v1.json index 00f7ab4..4b3833d 100644 --- a/readme-standard-v1.json +++ b/readme-standard-v1.json @@ -220,7 +220,7 @@ "docs/OPERATIONS.md", "test/cli-smoke.test.mjs" ], - "sourceHash": "sha256:af628b663697427563114429ac7cf28b30a901e9c73fff354b054107166a9f1c" + "sourceHash": "sha256:4686dca77a5cf55e44cf77408829359a7939dd69db79bb7f3d53fd03b8f3511b" }, "exceptions": [] }