@f5xc-salesdemos/xcsh 19.30.2 → 19.30.4

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@f5xc-salesdemos/xcsh",
4
- "version": "19.30.2",
4
+ "version": "19.30.4",
5
5
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
6
6
  "homepage": "https://github.com/f5xc-salesdemos/xcsh",
7
7
  "author": "Can Boluk",
@@ -50,13 +50,13 @@
50
50
  "dependencies": {
51
51
  "@agentclientprotocol/sdk": "0.16.1",
52
52
  "@mozilla/readability": "^0.6",
53
- "@f5xc-salesdemos/xcsh-stats": "19.30.2",
54
- "@f5xc-salesdemos/pi-agent-core": "19.30.2",
55
- "@f5xc-salesdemos/pi-ai": "19.30.2",
56
- "@f5xc-salesdemos/pi-natives": "19.30.2",
57
- "@f5xc-salesdemos/pi-resource-management": "19.30.2",
58
- "@f5xc-salesdemos/pi-tui": "19.30.2",
59
- "@f5xc-salesdemos/pi-utils": "19.30.2",
53
+ "@f5xc-salesdemos/xcsh-stats": "19.30.4",
54
+ "@f5xc-salesdemos/pi-agent-core": "19.30.4",
55
+ "@f5xc-salesdemos/pi-ai": "19.30.4",
56
+ "@f5xc-salesdemos/pi-natives": "19.30.4",
57
+ "@f5xc-salesdemos/pi-resource-management": "19.30.4",
58
+ "@f5xc-salesdemos/pi-tui": "19.30.4",
59
+ "@f5xc-salesdemos/pi-utils": "19.30.4",
60
60
  "@sinclair/typebox": "^0.34",
61
61
  "@xterm/headless": "^6.0",
62
62
  "ajv": "^8.20",
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "19.30.2",
21
- "commit": "7d5d9de262ad75f175f4c9249187470a3bf6dd72",
22
- "shortCommit": "7d5d9de",
20
+ "version": "19.30.4",
21
+ "commit": "4a5bc4f09ff018233f64855d9db988cb328ee146",
22
+ "shortCommit": "4a5bc4f",
23
23
  "branch": "main",
24
- "tag": "v19.30.2",
25
- "commitDate": "2026-06-15T00:45:53Z",
26
- "buildDate": "2026-06-15T01:10:01.223Z",
24
+ "tag": "v19.30.4",
25
+ "commitDate": "2026-06-15T02:13:30Z",
26
+ "buildDate": "2026-06-15T02:43:45.871Z",
27
27
  "dirty": true,
28
28
  "prNumber": "",
29
29
  "repoUrl": "https://github.com/f5xc-salesdemos/xcsh",
30
30
  "repoSlug": "f5xc-salesdemos/xcsh",
31
- "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/7d5d9de262ad75f175f4c9249187470a3bf6dd72",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.30.2"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/4a5bc4f09ff018233f64855d9db988cb328ee146",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.30.4"
33
33
  };
@@ -121,14 +121,6 @@ export async function handleResourceCommand(
121
121
  }
122
122
  if (!resolved) continue;
123
123
 
124
- if (parsed.dryRun === "client") {
125
- results.push({ status: "dry-run" as const, action: "create" as const });
126
- ctx.showStatus(
127
- formatOperationResult({ status: "dry-run", action: "create" }, manifest, parsed.outputFormat),
128
- );
129
- continue;
130
- }
131
-
132
124
  const opResult =
133
125
  commandName === "apply"
134
126
  ? await client.apply(manifest, resolved, ns, parsed.dryRun)
@@ -206,9 +198,9 @@ export async function handleResourceCommand(
206
198
  const manifests = parseManifests(allObjects, fileResults[0]?.sourcePath ?? "input");
207
199
 
208
200
  for (const manifest of manifests) {
209
- const { resolved } = validateManifest(manifest, kindResolver, ns);
210
- if (!resolved) {
211
- ctx.showStatus(`Unknown kind: "${manifest.kind}"`);
201
+ const { result: valResult, resolved } = validateManifest(manifest, kindResolver, ns);
202
+ if (!valResult.valid || !resolved) {
203
+ ctx.showStatus(formatValidationErrors(manifest, valResult));
212
204
  continue;
213
205
  }
214
206
  const diffResult = await client.diff(manifest, resolved, ns);