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 +15 -0
- package/package.json +1 -1
- package/src/scaffold.ts +1 -1
- package/templates/react/package.json +1 -1
- package/templates/vue/package.json +1 -1
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
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 =
|
|
16
|
+
export const ZT_VERSION = "^1.6.2";
|
|
17
17
|
|
|
18
18
|
export interface ScaffoldOptions {
|
|
19
19
|
name: string;
|