From 89eed2fe6e9cc052b979e21c5213c14d1f907ea4 Mon Sep 17 00:00:00 2001 From: Sebastien Tardif Date: Wed, 24 Jun 2026 13:57:40 -0700 Subject: [PATCH 1/2] docs: update recommended CLI version to 0.5.0 Patchloom CLI v0.5.0 was released with HTTP MCP transport, execute_plan tool, and expanded library API. Update README recommended version from 0.4.0 to 0.5.0. Signed-off-by: Sebastien Tardif --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d1bf2da..d9d5a3b 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ The extension detects outdated CLI builds and warns with upgrade guidance. It re Set `patchloom.path` in settings, or add the CLI to your `PATH`. **CLI compatibility warning** -Run `Patchloom: Open Releases` to download the latest release. The extension requires 0.1.0 or newer; 0.4.0 is recommended. +Run `Patchloom: Open Releases` to download the latest release. The extension requires 0.1.0 or newer; 0.5.0 is recommended. **MCP config not injected** Run `Patchloom: Configure MCP` and select the target editor config. @@ -183,7 +183,7 @@ File bugs and feature requests at [patchloom/patchloom-vscode/issues](https://gi ## Requirements - VS Code 1.90 or newer (or compatible editors: Cursor, Windsurf, VSCodium) -- [Patchloom CLI](https://github.com/patchloom/patchloom) 0.1.0 or newer (0.4.0+ recommended for latest features including append, AST ops, and --confirm) +- [Patchloom CLI](https://github.com/patchloom/patchloom) 0.1.0 or newer (0.5.0+ recommended for latest features including HTTP MCP transport, execute_plan, and expanded library API) ## Contributing From 7a2651bf865a42a66474fa49c9b6fc19ccad032a Mon Sep 17 00:00:00 2001 From: Sebastien Tardif Date: Wed, 24 Jun 2026 14:18:30 -0700 Subject: [PATCH 2/2] ci: validate dependency results in ci gate job The ci gate job unconditionally reported success without checking whether unit-test, build, or integration-test actually passed. Add result validation so failures propagate correctly. This pairs with a ruleset update that replaces individual matrix check requirements (which get skipped on docs-only PRs) with the single ci gate check. Signed-off-by: Sebastien Tardif --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8c2d7b..7acb9dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -195,4 +195,11 @@ jobs: steps: - name: All CI jobs passed (or were correctly skipped for docs-only change) run: | + results=("${{ needs.unit-test.result }}" "${{ needs.build.result }}" "${{ needs.integration-test.result }}") + for r in "${results[@]}"; do + if [[ "$r" != "success" && "$r" != "skipped" ]]; then + echo "FAILED: dependency reported '$r'" + exit 1 + fi + done echo "CI gate passed."