@namzu/cli 26.0.0 → 26.0.1
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 +42 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @namzu/cli
|
|
2
2
|
|
|
3
|
+
## 26.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8d5223b: Nothing a consumer installs or calls changes, and that is the whole of this
|
|
8
|
+
release. `vitest` moves from `^3.2.6` to `^4.1.11` in the `devDependencies` of
|
|
9
|
+
all nineteen packages that declared it, and `@vitest/coverage-v8` moves with it
|
|
10
|
+
in `@namzu/sdk`. Every occurrence is a devDependency — checked, not assumed —
|
|
11
|
+
so `dependencies`, `peerDependencies`, exports, types, defaults and the wire
|
|
12
|
+
shape are untouched, and the published tarballs differ from the previous
|
|
13
|
+
release only in `package.json#devDependencies`.
|
|
14
|
+
|
|
15
|
+
The reason is a security fix with no 3.x backport. `GHSA-82fw-gwwq-j7x9`
|
|
16
|
+
("Path Traversal / Arbitrary File Read via `@vitest/mocker` Redirect Mock")
|
|
17
|
+
covers `vitest` and `@vitest/mocker` from `2.1.0` up to `4.1.11`, so `^3.2.6`
|
|
18
|
+
can only be resolved by leaving the 3.x line. `4.1.11` is the first patched
|
|
19
|
+
release and is what the lockfile now resolves for both.
|
|
20
|
+
|
|
21
|
+
What this costs anyone who works on the repository rather than with it: the
|
|
22
|
+
upgrade was not a version bump. Vitest 4 changed test discovery, coverage
|
|
23
|
+
configuration, mock construction and reporter output, and each of those broke
|
|
24
|
+
something here that had to be migrated rather than worked around. Those fixes
|
|
25
|
+
are all under `__tests__/`, `vitest.config.ts` files and `scripts/`, none of
|
|
26
|
+
which is published, which is why this is a patch and not a major.
|
|
27
|
+
|
|
28
|
+
You do not need to do anything. If you pin `vitest` yourself to run this
|
|
29
|
+
project's own suites, note that the config files it ships are now written for
|
|
30
|
+
`>= 4.1.11` and will not run under 3.x.
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [175dab2]
|
|
33
|
+
- Updated dependencies [8d5223b]
|
|
34
|
+
- @namzu/sdk@42.0.2
|
|
35
|
+
- @namzu/anthropic@5.1.2
|
|
36
|
+
- @namzu/computer-use@1.4.3
|
|
37
|
+
- @namzu/deepseek@1.2.1
|
|
38
|
+
- @namzu/files@1.1.1
|
|
39
|
+
- @namzu/google@0.3.1
|
|
40
|
+
- @namzu/ollama@2.2.3
|
|
41
|
+
- @namzu/openai@3.1.2
|
|
42
|
+
- @namzu/openrouter@2.4.1
|
|
43
|
+
- @namzu/zen@2.1.1
|
|
44
|
+
|
|
3
45
|
## 26.0.0
|
|
4
46
|
|
|
5
47
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@namzu/cli",
|
|
3
|
-
"version": "26.0.
|
|
3
|
+
"version": "26.0.1",
|
|
4
4
|
"description": "Interactive and headless terminal agent for Namzu, with provider discovery, durable sessions, tools and diagnostics.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"namzu",
|
|
@@ -46,16 +46,16 @@
|
|
|
46
46
|
"react": "19.2.6",
|
|
47
47
|
"string-width": "8.2.1",
|
|
48
48
|
"yaml": "^2.9.0",
|
|
49
|
-
"@namzu/anthropic": "5.1.
|
|
50
|
-
"@namzu/computer-use": "1.4.
|
|
51
|
-
"@namzu/deepseek": "^1.2.
|
|
52
|
-
"@namzu/files": "1.1.
|
|
53
|
-
"@namzu/ollama": "2.2.
|
|
54
|
-
"@namzu/openai": "3.1.
|
|
55
|
-
"@namzu/openrouter": "2.4.
|
|
56
|
-
"@namzu/sdk": "^42.0.
|
|
57
|
-
"@namzu/google": "^0.3.
|
|
58
|
-
"@namzu/zen": "^2.
|
|
49
|
+
"@namzu/anthropic": "5.1.2",
|
|
50
|
+
"@namzu/computer-use": "1.4.3",
|
|
51
|
+
"@namzu/deepseek": "^1.2.1",
|
|
52
|
+
"@namzu/files": "1.1.1",
|
|
53
|
+
"@namzu/ollama": "2.2.3",
|
|
54
|
+
"@namzu/openai": "3.1.2",
|
|
55
|
+
"@namzu/openrouter": "2.4.1",
|
|
56
|
+
"@namzu/sdk": "^42.0.2",
|
|
57
|
+
"@namzu/google": "^0.3.1",
|
|
58
|
+
"@namzu/zen": "^2.1.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@biomejs/biome": "^1.9.4",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"@xterm/headless": "^6.0.0",
|
|
64
64
|
"ink-testing-library": "^4.0.0",
|
|
65
65
|
"typescript": "^5.5.0",
|
|
66
|
-
"vitest": "^
|
|
67
|
-
"@namzu/telemetry": "2.2.
|
|
66
|
+
"vitest": "^4.1.11",
|
|
67
|
+
"@namzu/telemetry": "2.2.1"
|
|
68
68
|
},
|
|
69
69
|
"engines": {
|
|
70
70
|
"node": ">=22.13.0"
|