create-zerotal 1.6.0 → 1.6.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
@@ -8,6 +8,21 @@ follows the Zerotal monorepo's unified versioning.
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [1.6.1] — 2026-08-15
12
+
13
+ ### Changed
14
+
15
+ - **The React and Vue templates scaffold Inertia 3.** The DevTools browser extension reads
16
+ client-side hooks — visit options, prefetch-cache entries, and the grouping that tells a
17
+ poll apart from a navigation — that exist only in the version 3 adapters. On 2.x the panel
18
+ fills with requests from the server recorder and then reports the app is not in dev mode,
19
+ which is true and unfixable without the bump.
20
+
21
+ Nothing in either template changed: both typecheck and build against 3.6.1 unmodified, and
22
+ the peer requirements were already met — the React template has always pinned React 19,
23
+ and Vue 3.5 satisfies the Vue adapter. Existing apps are unaffected; they pin their own
24
+ versions, and `bun add @inertiajs/react@^3` is the whole upgrade.
25
+
11
26
  ## [1.5.0] — 2026-08-15
12
27
 
13
28
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zerotal",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "description": "Create a new Zerotal application",
5
5
  "license": "MIT",
6
6
  "maturity": "stable",
package/src/scaffold.ts CHANGED
@@ -13,7 +13,7 @@ export type Template = 'minimal' | 'api' | 'admin' | 'flow' | 'react' | 'vue';
13
13
  // "^1.1.0" found for specifier "zerotal"` — the first thing anyone trying the
14
14
  // framework saw. `scaffold.test.ts` now asserts the two agree, so CI fails rather
15
15
  // than the user's install.
16
- export const ZT_VERSION = '^1.6.0';
16
+ export const ZT_VERSION = "^1.6.2";
17
17
 
18
18
  export interface ScaffoldOptions {
19
19
  name: string;
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "@zerotal/devtools": "{{zerotal_version}}",
16
- "@inertiajs/react": "^2.0.0",
16
+ "@inertiajs/react": "^3.0.0",
17
17
  "@zerotal/inertia": "{{zerotal_version}}",
18
18
  "react": "^19.0.0",
19
19
  "react-dom": "^19.0.0",
@@ -12,7 +12,7 @@
12
12
  "typecheck": "tsc --noEmit"
13
13
  },
14
14
  "dependencies": {
15
- "@inertiajs/vue3": "^2.0.0",
15
+ "@inertiajs/vue3": "^3.0.0",
16
16
  "@zerotal/inertia": "{{zerotal_version}}",
17
17
  "vue": "^3.5.0",
18
18
  "zerotal": "{{zerotal_version}}"