@mc1global/opencode-jarvis 0.14.0 → 0.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ---
9
9
 
10
+ ## [0.14.2] - 2026-03-02
11
+
12
+ ### Fixed
13
+
14
+ #### Azure Task state for Agile process template (CD-006)
15
+
16
+ `getProjectInfo` was calling `_apis/projects/{project}` without the
17
+ `includeCapabilities=true` query parameter. Azure DevOps only returns
18
+ `capabilities.processTemplate.templateName` when that flag is set — without
19
+ it the field is missing, `detectBaseTemplate` falls back to `"basic"`, and
20
+ AC Tasks are created with state `"Done"` instead of `"Closed"` (the correct
21
+ terminal state for Tasks in the Agile process template).
22
+
23
+ **Fix:** Added `includeCapabilities: "true"` query parameter to the
24
+ `apiGet` call in `AzureDevOpsClient.getProjectInfo`
25
+ (`src/infrastructure/azure-sync/azure-devops-client.ts`).
26
+
27
+ **Tests:** New test suite
28
+ `tests/infrastructure/azure-sync/azure-devops-client.test.ts` — 6 cases
29
+ covering `includeCapabilities` param presence, all 4 process template
30
+ mappings, custom inherited names, and missing capabilities fallback.
31
+
32
+ ---
33
+
34
+ ## [0.14.1] - 2026-03-02
35
+
36
+ ### Changed
37
+
38
+ - README rewritten: removed Python/Bun references, added JARVIS methodology guide, legacy migration walkthrough, all 121 tools reference, Azure DevOps integration section, ORACLE usage, corrected install instructions for macOS/Linux/Windows WSL
39
+
40
+ ---
41
+
10
42
  ## [0.14.0] - 2026-03-01
11
43
 
12
44
  ### Added