cabloy 5.1.80 → 5.1.83

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,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.1.83
4
+
5
+ ### Bug Fixes
6
+
7
+ - Automate refresh of the zova-core compensation graph.
8
+ - Harden zova-core compensation rollback handling.
9
+
10
+ ## 5.1.81
11
+
12
+ ### Improvements
13
+
14
+ - Refresh the `vona` `zova-core` patch for v5.1.66.
15
+
3
16
  ## 5.1.80
4
17
 
5
18
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cabloy",
3
- "version": "5.1.80",
3
+ "version": "5.1.83",
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 "${VONA_PATCHES_DIR}"`, 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 "${VONA_PATCHES_DIR}"`, 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 --dir "${VONA_DIR}" install`);
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) {
@@ -0,0 +1,56 @@
1
+ diff --git a/dist/bean/resource/error/errorGlobal.d.ts b/dist/bean/resource/error/errorGlobal.d.ts
2
+ index 73cebe18f3e260c295bdf42a3d1ab9e86fa2de87..cb0ff5c3b541f646105198ee23ac0fc3d805023e 100644
3
+ --- a/dist/bean/resource/error/errorGlobal.d.ts
4
+ +++ b/dist/bean/resource/error/errorGlobal.d.ts
5
+ @@ -1,9 +1 @@
6
+ -import type { TypeScopesErrorCodes } from '../../type.ts';
7
+ -declare global {
8
+ - export interface Error {
9
+ - code?: TypeScopesErrorCodes | number | undefined;
10
+ - status?: number | string | undefined;
11
+ - }
12
+ -}
13
+ export {};
14
+ -//# sourceMappingURL=errorGlobal.d.ts.map
15
+
16
+ diff --git a/dist/types/interface/module.d.ts b/dist/types/interface/module.d.ts
17
+ index 838e299407218b7bfac469d42a12d6ab59820380..314deb46c0c40670e9c0bc0c6146024e23b147d7 100644
18
+ --- a/dist/types/interface/module.d.ts
19
+ +++ b/dist/types/interface/module.d.ts
20
+ @@ -23,12 +23,6 @@ export interface IModuleResource {
21
+ components: TypeModuleResourceComponents;
22
+ }
23
+ export declare const SymbolInstalled: unique symbol;
24
+ -declare module '@cabloy/module-info' {
25
+ - interface IModule {
26
+ - resource: IModuleResource;
27
+ - info: IModuleInfo;
28
+ - }
29
+ -}
30
+ export interface IModuleApp {
31
+ }
32
+ //# sourceMappingURL=module.d.ts.map
33
+ diff --git a/dist/types/utils/env.d.ts b/dist/types/utils/env.d.ts
34
+ index 708c0a584dfec65b8c7ad2d049156f900de49928..df2bfa254283a8dce5122d97e931244e9d86e41a 100644
35
+ --- a/dist/types/utils/env.d.ts
36
+ +++ b/dist/types/utils/env.d.ts
37
+ @@ -34,19 +34,4 @@ export interface ZovaConfigEnv {
38
+ MOCK_BUILD: string | undefined;
39
+ MOCK_BUILD_PORT: string | undefined;
40
+ }
41
+ -declare global {
42
+ - namespace NodeJS {
43
+ - interface ProcessEnv {
44
+ - NODE_ENV: ZovaMetaMode;
45
+ - META_FLAVOR: ZovaMetaFlavor;
46
+ - META_MODE: ZovaMetaMode;
47
+ - META_APP_MODE: ZovaMetaAppMode;
48
+ - SSR: boolean;
49
+ - DEV: boolean;
50
+ - PROD: boolean;
51
+ - CLIENT: boolean;
52
+ - SERVER: boolean;
53
+ - }
54
+ - }
55
+ -}
56
+ //# sourceMappingURL=env.d.ts.map
@@ -16,7 +16,7 @@ overrides:
16
16
  zod: npm:@cabloy/zod@4.3.8
17
17
 
18
18
  patchedDependencies:
19
- zova-core@5.1.64: 19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d
19
+ zova-core@5.1.66: 19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d
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.121
478
- version: 5.1.121(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
477
+ specifier: ^5.1.122
478
+ version: 5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
479
479
  zova-jsx:
480
- specifier: ^1.1.69
481
- version: 1.1.69(typescript@5.9.3)
480
+ specifier: ^1.1.70
481
+ version: 1.1.70(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.121
550
- version: 5.1.121(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
549
+ specifier: ^5.1.122
550
+ version: 5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
551
551
  zova-jsx:
552
- specifier: ^1.1.69
553
- version: 1.1.69(typescript@5.9.3)
552
+ specifier: ^1.1.70
553
+ version: 1.1.70(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.64:
7539
- resolution: {integrity: sha512-reskEHAs8G42RTXJJjFlalyNglpE3x1rkBILLpcEnZHG+3pUOz2ajUScZavvumHVZ4pT7Qo6cfWMqEdcUqRZOA==}
7538
+ zova-core@5.1.66:
7539
+ resolution: {integrity: sha512-1zADVAYTSOmqqHdF1/30qIXSbd6TVi2/UwkEK+Wmk00qAUZsEWpbTMF9cRm/TijOipJrzGwFMAgHAk3eqUCzLg==}
7540
7540
 
7541
- zova-jsx@1.1.69:
7542
- resolution: {integrity: sha512-DD0NCtOF9iXO9pUstqvp9snFhJkXKdxaOHT4bH41K5Gwwap5AFgnNfURZwJ77S5hFecSlb6gqC7vRXeu9W13oA==}
7541
+ zova-jsx@1.1.70:
7542
+ resolution: {integrity: sha512-UEBqyh9a6mNrT8k1v1FhfQoA4L5yX0afhwZj2sCwE38m3XHRMvC95kAEn0jNuKEXnJAUKKmG/5bp6bH3/mr+Gw==}
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.84:
7617
- resolution: {integrity: sha512-ZdjUMHImKZ1bnui84hkzUgFP8dvG5h/en7W1hPu97b1VlcN7a7eHP8uSDLDtEbDIGyoEjJ/EgXuph0XE98fTpw==}
7616
+ zova-module-a-zova@5.1.85:
7617
+ resolution: {integrity: sha512-L4s4oNLrWYJJzgdlwuK0NfLKQoV0clzTWwtSt5rqXKLNXi6URslYoZGiT14Hp6F3s1e6JmlCtc2NQugKQr8uVg==}
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.120:
7623
- resolution: {integrity: sha512-blLGBOhUXZGsJcB6xEdkVrT2sjCQ3757gly3+DoTaUvfCU7BoaEohHj/AahXOcpuxDWkbJod19MP7thBRBWl+Q==}
7622
+ zova-suite-a-zova@5.1.121:
7623
+ resolution: {integrity: sha512-9xeqe7lUCVkDVtLlOM1qjxqxDwCPWTf1NvkNCrBSQR+kyfLaxhUlD6ZapPHTlL8Jf0KSw3EqN/s95P78N41d4w==}
7624
7624
 
7625
- zova@5.1.121:
7626
- resolution: {integrity: sha512-KExyNjd8HlwZtYzIS9mMD/TGrkMIsUaSHS6XENm5pcdG1j1O/8zuae2Df4VbJsqzaZRJZV9Ul2iaqDj4T6Mg4w==}
7625
+ zova@5.1.122:
7626
+ resolution: {integrity: sha512-hsXGeOXPsB5CwOlnMjQOiP/6e0/V3Doq/fi6HuwU7hyWwBKwkk3RtlS9rY9KR9KAA59SEf6Ms2u7SoCR6KL+Eg==}
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.64(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(typescript@5.9.3):
13095
+ zova-core@5.1.66(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(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.69(typescript@5.9.3):
13124
+ zova-jsx@1.1.70(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.64(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(typescript@5.9.3)
13131
+ zova-core: 5.1.66(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(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.84(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13232
+ zova-module-a-zova@5.1.85(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.69(typescript@5.9.3)
13243
+ zova-jsx: 1.1.70(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.120(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13250
+ zova-suite-a-zova@5.1.121(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.84(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
13276
+ zova-module-a-zova: 5.1.85(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.121(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13284
+ zova@5.1.122(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3)):
13285
13285
  dependencies:
13286
- zova-core: 5.1.64(patch_hash=19f064dcd545b69ae05dff4e470afe2152fc27b7970b4c7ffa9a501e1b241a7d)(typescript@5.9.3)
13287
- zova-suite-a-zova: 5.1.120(typescript@5.9.3)(vue@3.5.39(typescript@5.9.3))
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))
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.64: patches/zova-core@5.1.64.patch
55
+ zova-core@5.1.66: patches/zova-core@5.1.66.patch
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-jsx",
3
- "version": "1.1.70",
3
+ "version": "1.1.71",
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.68"
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.123",
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.68",
49
+ "zova-suite-a-zova": "^5.1.122"
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.68",
4
4
  "gitHead": "2c5c19284bab738e492856189acb6fad74b8a7b7",
5
5
  "description": "A vue3 framework with ioc",
6
6
  "keywords": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zova-module-a-zova",
3
- "version": "5.1.85",
3
+ "version": "5.1.86",
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.71"
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.122",
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.86"
36
36
  },
37
37
  "title": "a-zova"
38
38
  }