cabloy 5.1.81 → 5.1.84

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
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.1.84
4
+
5
+ ### Improvements
6
+
7
+ - Publish version 5.1.84.
8
+ - Bump `zova-core` to v5.1.69.
9
+ - Refresh the Vona `zova-core` patch for v5.1.68.
10
+
11
+ ## 5.1.83
12
+
13
+ ### Bug Fixes
14
+
15
+ - Automate refresh of the zova-core compensation graph.
16
+ - Harden zova-core compensation rollback handling.
17
+
3
18
  ## 5.1.81
4
19
 
5
20
  ### Improvements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cabloy",
3
- "version": "5.1.81",
3
+ "version": "5.1.84",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A Node.js fullstack framework",
6
6
  "keywords": [
@@ -1,6 +1,14 @@
1
1
  import minimist from 'minimist';
2
2
  import { execSync } from 'node:child_process';
3
- import { existsSync, mkdirSync, readFileSync, rmSync, writeFileSync } from 'node:fs';
3
+ import {
4
+ copyFileSync,
5
+ existsSync,
6
+ mkdirSync,
7
+ readFileSync,
8
+ readdirSync,
9
+ rmSync,
10
+ writeFileSync,
11
+ } from 'node:fs';
4
12
  import { dirname, resolve } from 'node:path';
5
13
  import { fileURLToPath } from 'node:url';
6
14
 
@@ -11,8 +19,16 @@ const COMMIT_CAP = 200;
11
19
  const RELEASE_SCRIPT_PATH = fileURLToPath(import.meta.url);
12
20
  const ROOT_DIR = resolve(dirname(RELEASE_SCRIPT_PATH), '..');
13
21
  const VONA_DIR = resolve(ROOT_DIR, 'vona');
22
+ const VONA_PACKAGE_JSON_PATH = resolve(VONA_DIR, 'package.json');
23
+ const VONA_PACKAGE_ORIGINAL_JSON_PATH = resolve(VONA_DIR, 'package.original.json');
14
24
  const VONA_WORKSPACE_PATH = resolve(VONA_DIR, 'pnpm-workspace.yaml');
25
+ const VONA_LOCKFILE_PATH = resolve(VONA_DIR, 'pnpm-lock.yaml');
15
26
  const VONA_PATCHES_DIR = resolve(VONA_DIR, 'patches');
27
+ const VONA_ZOVA_REST_DIR = resolve(VONA_DIR, '.zova-rest');
28
+ const ZOVA_DIR = resolve(ROOT_DIR, 'zova');
29
+ const ZOVA_PACKAGE_JSON_PATH = resolve(ZOVA_DIR, 'package.json');
30
+ const ZOVA_PACKAGE_ORIGINAL_JSON_PATH = resolve(ZOVA_DIR, 'package.original.json');
31
+ const ZOVA_LOCKFILE_PATH = resolve(ZOVA_DIR, 'pnpm-lock.yaml');
16
32
  const ZOVA_CORE_PACKAGE_JSON_PATH = resolve(
17
33
  ROOT_DIR,
18
34
  'zova',
@@ -22,12 +38,22 @@ const ZOVA_CORE_PACKAGE_JSON_PATH = resolve(
22
38
  );
23
39
  const PACKAGE_JSON_PATH = resolve(ROOT_DIR, 'package.json');
24
40
  const CHANGELOG_PATH = resolve(ROOT_DIR, 'CHANGELOG.md');
41
+ const ZOVA_CORE_PATCH_TARGETS = [
42
+ 'dist/bean/resource/error/errorGlobal.d.ts',
43
+ 'dist/types/utils/env.d.ts',
44
+ 'dist/types/interface/module.d.ts',
45
+ ] as const;
25
46
 
26
47
  interface ExecOptions {
27
48
  cwd?: string;
28
49
  env?: NodeJS.ProcessEnv;
29
50
  }
30
51
 
52
+ interface FileSnapshot {
53
+ filePath: string;
54
+ content: string | null;
55
+ }
56
+
31
57
  // --- Utility functions ---
32
58
  function exec(cmd: string, dryRun?: boolean, options?: ExecOptions): string {
33
59
  if (dryRun) {
@@ -187,9 +213,98 @@ function updateVonaPatchedDependency(version?: string): void {
187
213
  writeFileSync(VONA_WORKSPACE_PATH, `${newLines.join('\n').replace(/\n+$/, '\n')}\n`);
188
214
  }
189
215
 
190
- function ensureFileExists(filePath: string): void {
191
- if (!existsSync(filePath)) {
192
- writeFileSync(filePath, '');
216
+ function readFileIfExists(filePath: string): string | null {
217
+ return existsSync(filePath) ? readFileSync(filePath, 'utf-8') : null;
218
+ }
219
+
220
+ function restoreFileSnapshot(snapshot: FileSnapshot): void {
221
+ if (snapshot.content === null) {
222
+ rmSync(snapshot.filePath, { force: true });
223
+ return;
224
+ }
225
+ writeFileSync(snapshot.filePath, snapshot.content);
226
+ }
227
+
228
+ function createFileSnapshot(filePath: string): FileSnapshot {
229
+ return {
230
+ filePath,
231
+ content: readFileIfExists(filePath),
232
+ };
233
+ }
234
+
235
+ function seedVonaZovaRestWorkspaceDependencies(): void {
236
+ if (!existsSync(VONA_ZOVA_REST_DIR)) return;
237
+ const pkg = readJson(VONA_PACKAGE_JSON_PATH) as {
238
+ dependencies?: Record<string, string>;
239
+ };
240
+ pkg.dependencies ??= {};
241
+ let changed = false;
242
+ for (const entry of readdirSync(VONA_ZOVA_REST_DIR, { withFileTypes: true })) {
243
+ if (!entry.isDirectory()) continue;
244
+ const depName = `zova-rest-${entry.name}`;
245
+ const depValue = 'workspace:^';
246
+ if (pkg.dependencies[depName] === depValue) continue;
247
+ pkg.dependencies[depName] = depValue;
248
+ changed = true;
249
+ }
250
+ if (!changed) return;
251
+ writeFileSync(VONA_PACKAGE_JSON_PATH, `${JSON.stringify(pkg, null, 2)}\n`);
252
+ }
253
+
254
+ function refreshZovaDependencyGraph(): void {
255
+ copyFileSync(ZOVA_PACKAGE_ORIGINAL_JSON_PATH, ZOVA_PACKAGE_JSON_PATH);
256
+ execInherited('pnpm install', false, { cwd: ZOVA_DIR });
257
+ execInherited('npm run zova :tools:deps', false, { cwd: ZOVA_DIR });
258
+ execInherited('npm run build:zova:admin');
259
+ if (existsSync(resolve(ROOT_DIR, '__CABLOY_BASIC__'))) {
260
+ execInherited('npm run build:zova:web');
261
+ }
262
+ }
263
+
264
+ function prepareVonaBootstrapManifest(): void {
265
+ copyFileSync(VONA_PACKAGE_ORIGINAL_JSON_PATH, VONA_PACKAGE_JSON_PATH);
266
+ seedVonaZovaRestWorkspaceDependencies();
267
+ }
268
+
269
+ function refreshVonaDependencyGraph(): void {
270
+ prepareVonaBootstrapManifest();
271
+ execInherited('npm run deps:vona');
272
+ }
273
+
274
+ function validateGeneratedZovaCorePatch(version: string): void {
275
+ const patchFilePath = getPatchFilePath(version);
276
+ const patchContent = readFileIfExists(patchFilePath)?.trim();
277
+ if (!patchContent) {
278
+ throw new Error(`Generated zova-core patch is missing or empty: ${patchFilePath}`);
279
+ }
280
+ if (!patchContent.includes('diff --git')) {
281
+ throw new Error(`Generated zova-core patch does not contain any diff hunks: ${patchFilePath}`);
282
+ }
283
+ for (const patchTarget of ZOVA_CORE_PATCH_TARGETS) {
284
+ if (!patchContent.includes(`a/${patchTarget}`) || !patchContent.includes(`b/${patchTarget}`)) {
285
+ throw new Error(`Generated zova-core patch is missing the expected target: ${patchTarget}`);
286
+ }
287
+ }
288
+ if (!patchContent.includes(' export {};')) {
289
+ throw new Error('Generated zova-core patch is missing the expected errorGlobal export rewrite');
290
+ }
291
+ if (!patchContent.includes("-declare module '@cabloy/module-info'")) {
292
+ throw new Error(
293
+ 'Generated zova-core patch is missing the expected @cabloy/module-info removal',
294
+ );
295
+ }
296
+ if (
297
+ !patchContent.includes('-declare global {') ||
298
+ !patchContent.includes('- interface ProcessEnv {')
299
+ ) {
300
+ throw new Error('Generated zova-core patch is missing the expected ProcessEnv removal');
301
+ }
302
+ }
303
+
304
+ function ensurePatchedLockfileVersion(version: string): void {
305
+ const lockfileContent = readFileIfExists(VONA_LOCKFILE_PATH);
306
+ if (!lockfileContent?.includes(`zova-core@${version}:`)) {
307
+ throw new Error(`Vona lockfile is missing the patched zova-core@${version} entry`);
193
308
  }
194
309
  }
195
310
 
@@ -228,7 +343,7 @@ function applyKnownZovaCorePatchEdits(editDir: string): void {
228
343
  const envContent = readFileSync(envPath, 'utf-8');
229
344
  const envNext = replaceOrThrow(
230
345
  envContent,
231
- /declare global \{\n {4}namespace NodeJS \{\n {8}interface ProcessEnv \{[\s\S]*?\n \}\n \}\n\}\n?/,
346
+ /declare global \{\n {4}namespace NodeJS \{\n {8}interface ProcessEnv \{[\s\S]*?\n {8}\}\n {4}\}\n\}\n?/,
232
347
  '',
233
348
  'the NodeJS.ProcessEnv augmentation',
234
349
  );
@@ -281,56 +396,105 @@ function regenerateVonaZovaCorePatch(
281
396
  console.log(`\n🩹 Regenerating the Vona zova-core patch for ${targetVersion}...`);
282
397
 
283
398
  if (dryRun) {
399
+ // eslint-disable-next-line
400
+ console.log(' [dry-run] Refresh the Zova dependency graph from package.original.json');
401
+ // eslint-disable-next-line
402
+ console.log(' [dry-run] Run pnpm install in zova');
403
+ // eslint-disable-next-line
404
+ console.log(' [dry-run] Run npm run zova :tools:deps in zova');
405
+ // eslint-disable-next-line
406
+ console.log(' [dry-run] Run npm run build:zova:admin');
407
+ // eslint-disable-next-line
408
+ console.log(' [dry-run] Run npm run build:zova:web when the active edition requires it');
409
+ // eslint-disable-next-line
410
+ console.log(' [dry-run] Refresh the Vona dependency graph from package.original.json');
284
411
  // eslint-disable-next-line
285
412
  console.log(
286
413
  ' [dry-run] Temporarily remove the current zova-core patched dependency registration',
287
414
  );
288
- exec(`pnpm --dir "${VONA_DIR}" install`, true);
289
- exec(
290
- `pnpm --dir "${VONA_DIR}" patch zova-core@${targetVersion} --edit-dir "${editDir}" --ignore-existing`,
415
+ // eslint-disable-next-line
416
+ console.log(' [dry-run] Seed Vona .zova-rest workspace dependencies if needed');
417
+ // eslint-disable-next-line
418
+ console.log(' [dry-run] Run npm run deps:vona');
419
+ // eslint-disable-next-line
420
+ console.log(' [dry-run] Run pnpm install in vona without the old patch registration');
421
+ execInherited('pnpm install', true, { cwd: VONA_DIR });
422
+ execInherited(
423
+ `pnpm patch zova-core@${targetVersion} --edit-dir "${editDir}" --ignore-existing`,
291
424
  true,
425
+ { cwd: VONA_DIR },
292
426
  );
293
427
  // eslint-disable-next-line
294
428
  console.log(' [dry-run] Apply the known zova-core declaration-file patch edits');
429
+ execInherited(`pnpm patch-commit "${editDir}" --patches-dir patches`, true, {
430
+ cwd: VONA_DIR,
431
+ });
295
432
  // eslint-disable-next-line
296
- console.log(` [dry-run] Ensure ${newPatchFilePath} exists before patch-commit`);
297
- exec(
298
- `pnpm --dir "${VONA_DIR}" patch-commit "${editDir}" --patches-dir "${VONA_PATCHES_DIR}"`,
299
- true,
300
- );
433
+ console.log(` [dry-run] Validate ${newPatchFilePath}`);
301
434
  // eslint-disable-next-line
302
435
  console.log(` [dry-run] Restore ${VONA_WORKSPACE_PATH} to point at ${newPatchFilePath}`);
303
436
  // eslint-disable-next-line
304
437
  console.log(` [dry-run] Remove ${oldPatchFilePath} if it still exists`);
305
- exec(`pnpm --dir "${VONA_DIR}" install`, true);
438
+ execInherited('pnpm install', true, { cwd: VONA_DIR });
306
439
  return;
307
440
  }
308
441
 
442
+ const snapshots = [
443
+ createFileSnapshot(ZOVA_PACKAGE_JSON_PATH),
444
+ createFileSnapshot(ZOVA_LOCKFILE_PATH),
445
+ createFileSnapshot(VONA_PACKAGE_JSON_PATH),
446
+ createFileSnapshot(VONA_WORKSPACE_PATH),
447
+ createFileSnapshot(VONA_LOCKFILE_PATH),
448
+ createFileSnapshot(oldPatchFilePath),
449
+ createFileSnapshot(newPatchFilePath),
450
+ ];
451
+
309
452
  rmSync(editDir, { recursive: true, force: true });
310
453
  mkdirSync(dirname(editDir), { recursive: true });
311
454
 
312
455
  try {
456
+ refreshZovaDependencyGraph();
313
457
  updateVonaPatchedDependency();
314
- execInherited(`pnpm --dir "${VONA_DIR}" install`);
458
+ refreshVonaDependencyGraph();
459
+ execInherited('pnpm install', false, { cwd: VONA_DIR });
315
460
 
316
461
  execInherited(
317
- `pnpm --dir "${VONA_DIR}" patch zova-core@${targetVersion} --edit-dir "${editDir}" --ignore-existing`,
462
+ `pnpm patch zova-core@${targetVersion} --edit-dir "${editDir}" --ignore-existing`,
463
+ false,
464
+ {
465
+ cwd: VONA_DIR,
466
+ },
318
467
  );
319
468
  applyKnownZovaCorePatchEdits(editDir);
320
-
321
- ensureFileExists(newPatchFilePath);
322
- execInherited(
323
- `pnpm --dir "${VONA_DIR}" patch-commit "${editDir}" --patches-dir "${VONA_PATCHES_DIR}"`,
324
- );
469
+ execInherited(`pnpm patch-commit "${editDir}" --patches-dir patches`, false, {
470
+ cwd: VONA_DIR,
471
+ });
472
+ validateGeneratedZovaCorePatch(targetVersion);
325
473
 
326
474
  updateVonaPatchedDependency(targetVersion);
327
- if (!existsSync(newPatchFilePath)) {
328
- throw new Error(`Expected regenerated patch file is missing: ${newPatchFilePath}`);
329
- }
330
475
  if (currentPatchedVersion !== targetVersion && existsSync(oldPatchFilePath)) {
331
476
  rmSync(oldPatchFilePath);
332
477
  }
333
- execInherited(`pnpm --dir "${VONA_DIR}" install`);
478
+ execInherited('pnpm install', false, { cwd: VONA_DIR });
479
+ if (readCurrentPatchedZovaCoreVersion() !== targetVersion) {
480
+ throw new Error(
481
+ `Vona patchedDependencies entry was not updated to zova-core@${targetVersion}`,
482
+ );
483
+ }
484
+ ensurePatchedLockfileVersion(targetVersion);
485
+ } catch (error) {
486
+ for (const snapshot of snapshots) {
487
+ restoreFileSnapshot(snapshot);
488
+ }
489
+ try {
490
+ execInherited('pnpm install', false, { cwd: VONA_DIR });
491
+ } catch {
492
+ // eslint-disable-next-line
493
+ console.warn(
494
+ 'Warning: failed to restore the Vona install state after compensation rollback.',
495
+ );
496
+ }
497
+ throw error;
334
498
  } finally {
335
499
  rmSync(editDir, { recursive: true, force: true });
336
500
  }
@@ -352,10 +516,13 @@ function verifyCompensationPatch(dryRun?: boolean): void {
352
516
  function commitCompensationChanges(targetVersion: string, dryRun?: boolean): void {
353
517
  // eslint-disable-next-line
354
518
  console.log('\n📁 Committing compensation changes...');
355
- exec('git add vona/pnpm-workspace.yaml vona/pnpm-lock.yaml vona/patches', dryRun);
519
+ exec(
520
+ 'git add vona/package.json vona/pnpm-workspace.yaml vona/pnpm-lock.yaml vona/patches',
521
+ dryRun,
522
+ );
356
523
  if (!dryRun) {
357
524
  const staged = execSync(
358
- 'git diff --cached --name-only -- vona/pnpm-workspace.yaml vona/pnpm-lock.yaml vona/patches',
525
+ 'git diff --cached --name-only -- vona/package.json vona/pnpm-workspace.yaml vona/pnpm-lock.yaml vona/patches',
359
526
  { cwd: ROOT_DIR, encoding: 'utf-8' },
360
527
  ).trim();
361
528
  if (!staged) {
@@ -14,7 +14,7 @@ index 73cebe18f3e260c295bdf42a3d1ab9e86fa2de87..cb0ff5c3b541f646105198ee23ac0fc3
14
14
  -//# sourceMappingURL=errorGlobal.d.ts.map
15
15
 
16
16
  diff --git a/dist/types/interface/module.d.ts b/dist/types/interface/module.d.ts
17
- index 838e299407218b7bfac469d42a12d6ab59820380..314deb46c0c40670e9c0bc0c6146024e23b147d7 100644
17
+ index 838e299407218b7bfac469d42a12d6ab59820380..e8b61cc231e39ee3a270ee513ab43ff5a13fc290 100644
18
18
  --- a/dist/types/interface/module.d.ts
19
19
  +++ b/dist/types/interface/module.d.ts
20
20
  @@ -23,12 +23,6 @@ export interface IModuleResource {
@@ -30,8 +30,9 @@ index 838e299407218b7bfac469d42a12d6ab59820380..314deb46c0c40670e9c0bc0c6146024e
30
30
  export interface IModuleApp {
31
31
  }
32
32
  //# sourceMappingURL=module.d.ts.map
33
+
33
34
  diff --git a/dist/types/utils/env.d.ts b/dist/types/utils/env.d.ts
34
- index 708c0a584dfec65b8c7ad2d049156f900de49928..df2bfa254283a8dce5122d97e931244e9d86e41a 100644
35
+ index 708c0a584dfec65b8c7ad2d049156f900de49928..a8caacb276794e3ac70591b974f14d6eee3ac302 100644
35
36
  --- a/dist/types/utils/env.d.ts
36
37
  +++ b/dist/types/utils/env.d.ts
37
38
  @@ -34,19 +34,4 @@ export interface ZovaConfigEnv {
@@ -16,7 +16,7 @@ overrides:
16
16
  zod: npm:@cabloy/zod@4.3.8
17
17
 
18
18
  patchedDependencies:
19
- zova-core@5.1.66: 19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d
19
+ zova-core@5.1.68: 0f4164c4d2bbb16d671beb5c26759dff37769be0709df941bc7b90b94261ac54
20
20
 
21
21
  importers:
22
22
 
@@ -474,11 +474,11 @@ importers:
474
474
  specifier: npm:@cabloy/zod@4.3.8
475
475
  version: '@cabloy/zod@4.3.8'
476
476
  zova:
477
- specifier: ^5.1.122
478
- version: 5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
477
+ specifier: ^5.1.123
478
+ version: 5.1.123(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
479
479
  zova-jsx:
480
- specifier: ^1.1.70
481
- version: 1.1.70(typescript@5.9.3)
480
+ specifier: ^1.1.71
481
+ version: 1.1.71(typescript@5.9.3)
482
482
  zova-module-a-api:
483
483
  specifier: ^5.1.21
484
484
  version: 5.1.21
@@ -546,11 +546,11 @@ importers:
546
546
  specifier: npm:@cabloy/zod@4.3.8
547
547
  version: '@cabloy/zod@4.3.8'
548
548
  zova:
549
- specifier: ^5.1.122
550
- version: 5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
549
+ specifier: ^5.1.123
550
+ version: 5.1.123(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
551
551
  zova-jsx:
552
- specifier: ^1.1.70
553
- version: 1.1.70(typescript@5.9.3)
552
+ specifier: ^1.1.71
553
+ version: 1.1.71(typescript@5.9.3)
554
554
  zova-module-a-api:
555
555
  specifier: ^5.1.21
556
556
  version: 5.1.21
@@ -7535,11 +7535,11 @@ packages:
7535
7535
  peerDependencies:
7536
7536
  zod: ^3.25.28 || ^4
7537
7537
 
7538
- zova-core@5.1.66:
7539
- resolution: {integrity: sha512-1zADVAYTSOmqqHdF1/30qIXSbd6TVi2/UwkEK+Wmk00qAUZsEWpbTMF9cRm/TijOipJrzGwFMAgHAk3eqUCzLg==}
7538
+ zova-core@5.1.68:
7539
+ resolution: {integrity: sha512-Lg0uQtnbVfHTAPDXM4EWs7M11/ncqyv8R70RFp+OGJWgLxLRxh31ekkqAmvDbztjbFuRoUANuri3OIapN+UTvA==}
7540
7540
 
7541
- zova-jsx@1.1.70:
7542
- resolution: {integrity: sha512-UEBqyh9a6mNrT8k1v1FhfQoA4L5yX0afhwZj2sCwE38m3XHRMvC95kAEn0jNuKEXnJAUKKmG/5bp6bH3/mr+Gw==}
7541
+ zova-jsx@1.1.71:
7542
+ resolution: {integrity: sha512-Mp9DV+akSw6Sc0+MEjhcdVov6Kjix26bzwXeqYp/BAL08O/bZXuBdsaokEorckm7+F8yvo6F31WMJnGvP9vj9A==}
7543
7543
 
7544
7544
  zova-module-a-api@5.1.21:
7545
7545
  resolution: {integrity: sha512-qjm/hfjC4/+7Ap/uzJfBzV0PwRlp2idEmEKwCZYxquaXq6QtJBbTWTznw1iukT4lkJZip2KFkjOvXTzdvZA2UA==}
@@ -7613,17 +7613,17 @@ packages:
7613
7613
  zova-module-a-zod@5.1.35:
7614
7614
  resolution: {integrity: sha512-hCZG81WY5MPG5ozaYLMiNML4FtdCGNOJpi5drEKTP/xpsvzil66ZaOXkWj+XO/3MlkulmcBEThBx7amcHHWszg==}
7615
7615
 
7616
- zova-module-a-zova@5.1.85:
7617
- resolution: {integrity: sha512-L4s4oNLrWYJJzgdlwuK0NfLKQoV0clzTWwtSt5rqXKLNXi6URslYoZGiT14Hp6F3s1e6JmlCtc2NQugKQr8uVg==}
7616
+ zova-module-a-zova@5.1.86:
7617
+ resolution: {integrity: sha512-5PEJ63sWSCBmZwbBFAslnGmMgFUHG45COPIgwEugpvf4v9RF7yxRn36ZPbuoM84kCFlZcd6zY8bOWqt9TMSPuw==}
7618
7618
 
7619
7619
  zova-module-rest-resource@5.1.40:
7620
7620
  resolution: {integrity: sha512-rMqZaXSK6nJ4LW2O1yO/jZqxI7joCiWylzjutMTKpx7EfNmtK1t1nVoWFd+gCTxqgbbv9uXh0vfFaSFA7GKYFg==}
7621
7621
 
7622
- zova-suite-a-zova@5.1.121:
7623
- resolution: {integrity: sha512-9xeqe7lUCVkDVtLlOM1qjxqxDwCPWTf1NvkNCrBSQR+kyfLaxhUlD6ZapPHTlL8Jf0KSw3EqN/s95P78N41d4w==}
7622
+ zova-suite-a-zova@5.1.122:
7623
+ resolution: {integrity: sha512-HC8Sc7S/ucCQMUr3kV2gILa7ygpriPxCiXs7hK3C8VIZrw4Lcg/u1EDYroG+yvlvFxXByBJuGahJYRZ1Iu/9Zw==}
7624
7624
 
7625
- zova@5.1.122:
7626
- resolution: {integrity: sha512-hsXGeOXPsB5CwOlnMjQOiP/6e0/V3Doq/fi6HuwU7hyWwBKwkk3RtlS9rY9KR9KAA59SEf6Ms2u7SoCR6KL+Eg==}
7625
+ zova@5.1.123:
7626
+ resolution: {integrity: sha512-GQO0qbdqUNUo8HFCMN7nLjvA3bpWZGtYsBfnTSUHmxjal6Q2vkPbwZ79aArH31c0fP6mwNS0BOyNFoyDihc5Kw==}
7627
7627
 
7628
7628
  zwitch@1.0.5:
7629
7629
  resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
@@ -13092,7 +13092,7 @@ snapshots:
13092
13092
  dependencies:
13093
13093
  zod: '@cabloy/zod@4.3.8'
13094
13094
 
13095
- zova-core@5.1.66(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(typescript@5.9.3):
13095
+ zova-core@5.1.68(patch_hash=0f4164c4d2bbb16d671beb5c26759dff37769be0709df941bc7b90b94261ac54)(typescript@5.9.3):
13096
13096
  dependencies:
13097
13097
  '@cabloy/compose': link:packages-utils/compose
13098
13098
  '@cabloy/extend': link:packages-utils/extend
@@ -13121,14 +13121,14 @@ snapshots:
13121
13121
  transitivePeerDependencies:
13122
13122
  - typescript
13123
13123
 
13124
- zova-jsx@1.1.70(typescript@5.9.3):
13124
+ zova-jsx@1.1.71(typescript@5.9.3):
13125
13125
  dependencies:
13126
13126
  '@cabloy/compose': link:packages-utils/compose
13127
13127
  '@cabloy/utils': link:packages-utils/utils
13128
13128
  '@cabloy/word-utils': 2.1.14
13129
13129
  typestyle: 2.4.0
13130
13130
  vue: 3.5.39(typescript@5.9.3)
13131
- zova-core: 5.1.66(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(typescript@5.9.3)
13131
+ zova-core: 5.1.68(patch_hash=0f4164c4d2bbb16d671beb5c26759dff37769be0709df941bc7b90b94261ac54)(typescript@5.9.3)
13132
13132
  transitivePeerDependencies:
13133
13133
  - typescript
13134
13134
 
@@ -13229,7 +13229,7 @@ snapshots:
13229
13229
  '@cabloy/zod-query': link:packages-utils/zod-query
13230
13230
  zod: '@cabloy/zod@4.3.8'
13231
13231
 
13232
- zova-module-a-zova@5.1.85(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13232
+ zova-module-a-zova@5.1.86(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13233
13233
  dependencies:
13234
13234
  '@cabloy/compose': link:packages-utils/compose
13235
13235
  '@cabloy/deps': link:packages-utils/deps
@@ -13240,14 +13240,14 @@ snapshots:
13240
13240
  '@cabloy/word-utils': 2.1.14
13241
13241
  defu: 6.1.7
13242
13242
  luxon: 3.7.2
13243
- zova-jsx: 1.1.70(typescript@5.9.3)
13243
+ zova-jsx: 1.1.71(typescript@5.9.3)
13244
13244
  transitivePeerDependencies:
13245
13245
  - typescript
13246
13246
  - vue
13247
13247
 
13248
13248
  zova-module-rest-resource@5.1.40: {}
13249
13249
 
13250
- zova-suite-a-zova@5.1.121(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13250
+ zova-suite-a-zova@5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13251
13251
  dependencies:
13252
13252
  zova-module-a-api: 5.1.21
13253
13253
  zova-module-a-app: 5.1.24
@@ -13273,7 +13273,7 @@ snapshots:
13273
13273
  zova-module-a-style: 5.1.32
13274
13274
  zova-module-a-table: 5.1.37(vue@3.5.39(typescript@5.9.3))
13275
13275
  zova-module-a-zod: 5.1.35
13276
- zova-module-a-zova: 5.1.85(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
13276
+ zova-module-a-zova: 5.1.86(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
13277
13277
  transitivePeerDependencies:
13278
13278
  - '@vue/composition-api'
13279
13279
  - debug
@@ -13281,10 +13281,10 @@ snapshots:
13281
13281
  - typescript
13282
13282
  - vue
13283
13283
 
13284
- zova@5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13284
+ zova@5.1.123(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13285
13285
  dependencies:
13286
- zova-core: 5.1.66(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(typescript@5.9.3)
13287
- zova-suite-a-zova: 5.1.121(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
13286
+ zova-core: 5.1.68(patch_hash=0f4164c4d2bbb16d671beb5c26759dff37769be0709df941bc7b90b94261ac54)(typescript@5.9.3)
13287
+ zova-suite-a-zova: 5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
13288
13288
  transitivePeerDependencies:
13289
13289
  - '@vue/composition-api'
13290
13290
  - debug
@@ -52,4 +52,4 @@ allowBuilds:
52
52
  vue-demi: true
53
53
 
54
54
  patchedDependencies:
55
- zova-core@5.1.66: patches/zova-core@5.1.66.patch
55
+ zova-core@5.1.68: patches/zova-core@5.1.68.patch
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-jsx",
3
- "version": "1.1.70",
3
+ "version": "1.1.72",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "Zova JSX",
6
6
  "keywords": [
@@ -50,7 +50,7 @@
50
50
  "@cabloy/word-utils": "^2.1.14",
51
51
  "typestyle": "^2.4.0",
52
52
  "vue": "^3.5.38",
53
- "zova-core": "^5.1.66"
53
+ "zova-core": "^5.1.70"
54
54
  },
55
55
  "devDependencies": {
56
56
  "clean-package": "^2.2.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova",
3
- "version": "5.1.122",
3
+ "version": "5.1.124",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A vue3 framework with ioc",
6
6
  "keywords": [
@@ -45,8 +45,8 @@
45
45
  "postpack": "clean-package restore"
46
46
  },
47
47
  "dependencies": {
48
- "zova-core": "^5.1.66",
49
- "zova-suite-a-zova": "^5.1.121"
48
+ "zova-core": "^5.1.70",
49
+ "zova-suite-a-zova": "^5.1.123"
50
50
  },
51
51
  "devDependencies": {
52
52
  "clean-package": "^2.2.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-core",
3
- "version": "5.1.66",
3
+ "version": "5.1.70",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A vue3 framework with ioc",
6
6
  "keywords": [
@@ -74,7 +74,7 @@ importers:
74
74
  version: 10.5.1(postcss@8.5.15)
75
75
  axios:
76
76
  specifier: ^1.16.1
77
- version: 1.18.1(supports-color@10.2.2)
77
+ version: 1.18.1
78
78
  compression:
79
79
  specifier: ^1.8.1
80
80
  version: 1.8.1
@@ -133,7 +133,7 @@ importers:
133
133
  specifier: workspace:^
134
134
  version: link:packages-zova/zova
135
135
  zova-jsx:
136
- specifier: ^1.1.67
136
+ specifier: ^1.1.71
137
137
  version: link:packages-utils/zova-jsx
138
138
  zova-module-a-api:
139
139
  specifier: workspace:^
@@ -309,7 +309,7 @@ importers:
309
309
  devDependencies:
310
310
  '@cabloy/cli':
311
311
  specifier: ^3.1.27
312
- version: 3.1.27(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
312
+ version: 3.1.27(vue@3.5.38(typescript@5.9.3))
313
313
  '@cabloy/lint':
314
314
  specifier: ^5.1.27
315
315
  version: 5.1.30(@typescript-eslint/eslint-plugin@8.62.0(@typescript-eslint/parser@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.0(typescript@5.9.3))(@typescript-eslint/utils@8.62.0(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(oxfmt@0.45.0)(oxlint@1.71.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0)))
@@ -384,7 +384,7 @@ importers:
384
384
  dependencies:
385
385
  '@cabloy/cli':
386
386
  specifier: ^3.1.27
387
- version: 3.1.27(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
387
+ version: 3.1.27(vue@3.5.38(typescript@5.9.3))
388
388
  '@cabloy/process-helper':
389
389
  specifier: ^3.1.8
390
390
  version: 3.1.8
@@ -418,7 +418,7 @@ importers:
418
418
  version: 7.29.7(@babel/core@7.29.7)
419
419
  '@cabloy/cli':
420
420
  specifier: ^3.1.27
421
- version: 3.1.27(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
421
+ version: 3.1.27(vue@3.5.38(typescript@5.9.3))
422
422
  '@cabloy/extend':
423
423
  specifier: ^3.2.8
424
424
  version: 3.2.8
@@ -672,7 +672,7 @@ importers:
672
672
  specifier: ^3.5.38
673
673
  version: 3.5.38(typescript@5.9.3)
674
674
  zova-core:
675
- specifier: ^5.1.62
675
+ specifier: ^5.1.68
676
676
  version: link:../../packages-zova/zova-core
677
677
  devDependencies:
678
678
  clean-package:
@@ -813,10 +813,10 @@ importers:
813
813
  packages-zova/zova:
814
814
  dependencies:
815
815
  zova-core:
816
- specifier: ^5.1.62
816
+ specifier: ^5.1.68
817
817
  version: link:../zova-core
818
818
  zova-suite-a-zova:
819
- specifier: ^5.1.119
819
+ specifier: ^5.1.122
820
820
  version: link:../../src/suite-vendor/a-zova
821
821
  devDependencies:
822
822
  clean-package:
@@ -1001,7 +1001,7 @@ importers:
1001
1001
  specifier: ^5.1.35
1002
1002
  version: link:modules/a-zod
1003
1003
  zova-module-a-zova:
1004
- specifier: ^5.1.83
1004
+ specifier: ^5.1.86
1005
1005
  version: link:modules/a-zova
1006
1006
 
1007
1007
  src/suite-vendor/a-zova/modules/a-api:
@@ -1075,7 +1075,7 @@ importers:
1075
1075
  dependencies:
1076
1076
  axios:
1077
1077
  specifier: ^1.16.1
1078
- version: 1.18.1(supports-color@10.2.2)
1078
+ version: 1.18.1
1079
1079
  devDependencies:
1080
1080
  clean-package:
1081
1081
  specifier: ^2.2.0
@@ -1340,12 +1340,12 @@ importers:
1340
1340
  specifier: ^3.7.2
1341
1341
  version: 3.7.2
1342
1342
  zova-jsx:
1343
- specifier: ^1.1.68
1343
+ specifier: ^1.1.71
1344
1344
  version: link:../../../../../packages-utils/zova-jsx
1345
1345
  devDependencies:
1346
1346
  '@cabloy/cli':
1347
1347
  specifier: ^3.1.27
1348
- version: 3.1.27(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))
1348
+ version: 3.1.27(vue@3.5.38(typescript@5.9.3))
1349
1349
  '@types/luxon':
1350
1350
  specifier: ^3.7.1
1351
1351
  version: 3.7.2
@@ -8189,7 +8189,7 @@ snapshots:
8189
8189
 
8190
8190
  '@bufbuild/protobuf@2.12.1': {}
8191
8191
 
8192
- '@cabloy/cli@3.1.27(supports-color@10.2.2)(vue@3.5.38(typescript@5.9.3))':
8192
+ '@cabloy/cli@3.1.27(vue@3.5.38(typescript@5.9.3))':
8193
8193
  dependencies:
8194
8194
  '@babel/parser': 7.29.7
8195
8195
  '@cabloy/module-glob': 5.3.16
@@ -8198,7 +8198,7 @@ snapshots:
8198
8198
  '@cabloy/utils': 2.1.25
8199
8199
  '@cabloy/word-utils': link:packages-utils/word-utils
8200
8200
  '@npmcli/config': 10.11.0
8201
- '@zhennann/common-bin': 4.0.1(supports-color@10.2.2)
8201
+ '@zhennann/common-bin': 4.0.1
8202
8202
  '@zhennann/ejs': 3.0.1
8203
8203
  boxen: 4.2.0
8204
8204
  chalk: 3.0.0
@@ -10219,7 +10219,7 @@ snapshots:
10219
10219
 
10220
10220
  '@vue/shared@3.5.13': {}
10221
10221
 
10222
- '@zhennann/common-bin@4.0.1(supports-color@10.2.2)':
10222
+ '@zhennann/common-bin@4.0.1':
10223
10223
  dependencies:
10224
10224
  chalk: 4.1.2
10225
10225
  change-case: 4.1.2
@@ -10253,7 +10253,7 @@ snapshots:
10253
10253
 
10254
10254
  acorn@8.17.0: {}
10255
10255
 
10256
- agent-base@6.0.2(supports-color@10.2.2):
10256
+ agent-base@6.0.2:
10257
10257
  dependencies:
10258
10258
  debug: 4.4.3(supports-color@10.2.2)
10259
10259
  transitivePeerDependencies:
@@ -10365,11 +10365,11 @@ snapshots:
10365
10365
  dependencies:
10366
10366
  possible-typed-array-names: 1.1.0
10367
10367
 
10368
- axios@1.18.1(supports-color@10.2.2):
10368
+ axios@1.18.1:
10369
10369
  dependencies:
10370
10370
  follow-redirects: 1.16.0
10371
10371
  form-data: 4.0.6
10372
- https-proxy-agent: 5.0.1(supports-color@10.2.2)
10372
+ https-proxy-agent: 5.0.1
10373
10373
  proxy-from-env: 2.1.0
10374
10374
  transitivePeerDependencies:
10375
10375
  - debug
@@ -11785,9 +11785,9 @@ snapshots:
11785
11785
  statuses: 2.0.2
11786
11786
  toidentifier: 1.0.1
11787
11787
 
11788
- https-proxy-agent@5.0.1(supports-color@10.2.2):
11788
+ https-proxy-agent@5.0.1:
11789
11789
  dependencies:
11790
- agent-base: 6.0.2(supports-color@10.2.2)
11790
+ agent-base: 6.0.2
11791
11791
  debug: 4.4.3(supports-color@10.2.2)
11792
11792
  transitivePeerDependencies:
11793
11793
  - supports-color
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-module-a-zova",
3
- "version": "5.1.85",
3
+ "version": "5.1.87",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "zova",
6
6
  "keywords": [
@@ -43,7 +43,7 @@
43
43
  "@cabloy/word-utils": "^2.1.14",
44
44
  "defu": "^6.1.7",
45
45
  "luxon": "^3.7.2",
46
- "zova-jsx": "^1.1.70"
46
+ "zova-jsx": "^1.1.72"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@cabloy/cli": "^3.1.27",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-suite-a-zova",
3
- "version": "5.1.121",
3
+ "version": "5.1.123",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "zova",
6
6
  "license": "MIT",
@@ -32,7 +32,7 @@
32
32
  "zova-module-a-style": "^5.1.32",
33
33
  "zova-module-a-table": "^5.1.37",
34
34
  "zova-module-a-zod": "^5.1.35",
35
- "zova-module-a-zova": "^5.1.85"
35
+ "zova-module-a-zova": "^5.1.87"
36
36
  },
37
37
  "title": "a-zova"
38
38
  }