codemuster 0.3.4 → 0.3.5
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 +15 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ User-visible changes by released version. Add upcoming changes under Unreleased;
|
|
|
4
4
|
move them to a dated version heading before publishing. Historical entries below
|
|
5
5
|
start with 0.2.8.
|
|
6
6
|
|
|
7
|
+
## 0.3.5 - 2026-09-21
|
|
8
|
+
|
|
9
|
+
- A repair that cannot be integrated no longer ends the whole run. Previously one
|
|
10
|
+
such file cancelled every other worker mid-call, so a parallel `fix` could pay
|
|
11
|
+
for many agent calls and keep no repairs. The run now stops starting new
|
|
12
|
+
repairs, lets the calls already running finish, and retains each of those
|
|
13
|
+
repairs unapplied in its own worker checkout with the path reported, so they
|
|
14
|
+
can still be recovered. The file that could not be integrated is reported and
|
|
15
|
+
the command exits non-zero.
|
|
16
|
+
- The message for a file changed outside the allowed scope during validation no
|
|
17
|
+
longer blames the configured test command. CodeMuster compares the checkout
|
|
18
|
+
before and after validation, so it now says the change came either from the
|
|
19
|
+
test command or from something else using the same checkout. Running `fix`
|
|
20
|
+
while another tool or agent writes to the same checkout is what produces this.
|
|
21
|
+
|
|
7
22
|
## 0.3.4 - 2026-09-20
|
|
8
23
|
|
|
9
24
|
- `codemuster fix` no longer stops the whole run when one file is too large for a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codemuster",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "CodeMuster: full-coverage codebase audits with a coverage number, driven by your coding agent through one skill.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "Tim Carter",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"test": "node --test test/launcher.test.js test/plugin.test.js test/release.test.js"
|
|
38
38
|
},
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"@codemuster/darwin-arm64": "0.3.
|
|
41
|
-
"@codemuster/darwin-x64": "0.3.
|
|
42
|
-
"@codemuster/linux-arm64": "0.3.
|
|
43
|
-
"@codemuster/linux-x64": "0.3.
|
|
44
|
-
"@codemuster/win32-arm64": "0.3.
|
|
45
|
-
"@codemuster/win32-x64": "0.3.
|
|
40
|
+
"@codemuster/darwin-arm64": "0.3.5",
|
|
41
|
+
"@codemuster/darwin-x64": "0.3.5",
|
|
42
|
+
"@codemuster/linux-arm64": "0.3.5",
|
|
43
|
+
"@codemuster/linux-x64": "0.3.5",
|
|
44
|
+
"@codemuster/win32-arm64": "0.3.5",
|
|
45
|
+
"@codemuster/win32-x64": "0.3.5"
|
|
46
46
|
}
|
|
47
47
|
}
|