@f5-sales-demo/xcsh 20.22.0 → 20.22.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
|
@@ -36,6 +36,9 @@
|
|
|
36
36
|
|
|
37
37
|
### Fixed
|
|
38
38
|
|
|
39
|
+
- Isolated post-publication npm verification in a job-local writable prefix and failed immediately
|
|
40
|
+
for non-registry installation errors
|
|
41
|
+
([#3375](https://github.com/f5-sales-demo/xcsh/issues/3375)).
|
|
39
42
|
- Consumed vLLM-advertised context limits with bounded output budgets while preserving compatibility
|
|
40
43
|
fallbacks when metadata is absent
|
|
41
44
|
([#2947](https://github.com/f5-sales-demo/xcsh/issues/2947),
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@f5-sales-demo/xcsh",
|
|
4
|
-
"version": "20.22.
|
|
4
|
+
"version": "20.22.2",
|
|
5
5
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
6
6
|
"homepage": "https://github.com/f5-sales-demo/xcsh",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@agentclientprotocol/sdk": "1.3.0",
|
|
64
|
-
"@f5-sales-demo/pi-agent-core": "20.22.
|
|
65
|
-
"@f5-sales-demo/pi-ai": "20.22.
|
|
66
|
-
"@f5-sales-demo/pi-natives": "20.22.
|
|
67
|
-
"@f5-sales-demo/pi-resource-management": "20.22.
|
|
68
|
-
"@f5-sales-demo/pi-tui": "20.22.
|
|
69
|
-
"@f5-sales-demo/pi-utils": "20.22.
|
|
70
|
-
"@f5-sales-demo/xcsh-stats": "20.22.
|
|
64
|
+
"@f5-sales-demo/pi-agent-core": "20.22.2",
|
|
65
|
+
"@f5-sales-demo/pi-ai": "20.22.2",
|
|
66
|
+
"@f5-sales-demo/pi-natives": "20.22.2",
|
|
67
|
+
"@f5-sales-demo/pi-resource-management": "20.22.2",
|
|
68
|
+
"@f5-sales-demo/pi-tui": "20.22.2",
|
|
69
|
+
"@f5-sales-demo/pi-utils": "20.22.2",
|
|
70
|
+
"@f5-sales-demo/xcsh-stats": "20.22.2",
|
|
71
71
|
"@mozilla/readability": "^0.6",
|
|
72
72
|
"@sinclair/typebox": "^0.34",
|
|
73
73
|
"@xterm/headless": "^6.0",
|
|
@@ -17,17 +17,17 @@ export interface BuildInfo {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export const BUILD_INFO: BuildInfo = {
|
|
20
|
-
"version": "20.22.
|
|
21
|
-
"commit": "
|
|
22
|
-
"shortCommit": "
|
|
20
|
+
"version": "20.22.2",
|
|
21
|
+
"commit": "ed93a01366838afc5ccd503a0bc678af72c92fe4",
|
|
22
|
+
"shortCommit": "ed93a01",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v20.22.
|
|
25
|
-
"commitDate": "2026-08-
|
|
26
|
-
"buildDate": "2026-08-
|
|
24
|
+
"tag": "v20.22.2",
|
|
25
|
+
"commitDate": "2026-08-25T17:12:23+00:00",
|
|
26
|
+
"buildDate": "2026-08-26T01:20:47.235Z",
|
|
27
27
|
"dirty": true,
|
|
28
28
|
"prNumber": "",
|
|
29
29
|
"repoUrl": "https://github.com/f5-sales-demo/xcsh",
|
|
30
30
|
"repoSlug": "f5-sales-demo/xcsh",
|
|
31
|
-
"commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/
|
|
32
|
-
"releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v20.22.
|
|
31
|
+
"commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/ed93a01366838afc5ccd503a0bc678af72c92fe4",
|
|
32
|
+
"releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v20.22.2"
|
|
33
33
|
};
|