@zerotal/inertia 1.7.0 → 1.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -6,6 +6,19 @@ follows the Zerotal monorepo's unified versioning.
6
6
 
7
7
  **Maturity: `stable`**
8
8
 
9
+ ## [Unreleased]
10
+
11
+ ## [1.7.1] — 2026-08-16
12
+
13
+ ### Fixed
14
+
15
+ - **The `@inertiajs/*` peer range excluded v3.** This package advertises "full Inertia v3
16
+ protocol support" and `create-zerotal`'s React and Vue templates install `^3.0.0`, but the
17
+ peer range read `^1 || ^2` — so following our own documentation, with our own scaffolder,
18
+ produced a peer-dependency warning, and a stricter installer than Bun would have refused
19
+ outright. Widened to `^1 || ^2 || ^3`. Found while scaffolding the first Inertia cookbook
20
+ app, which resolved `@inertiajs/react@3.6.1`.
21
+
9
22
  ## [1.7.0] — 2026-08-16
10
23
 
11
24
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zerotal/inertia",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
4
4
  "license": "MIT",
5
5
  "maturity": "stable",
6
6
  "private": false,
@@ -33,14 +33,14 @@
33
33
  "typecheck": "tsc --noEmit"
34
34
  },
35
35
  "dependencies": {
36
- "@zerotal/core": "1.7.0"
36
+ "@zerotal/core": "1.7.2"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "react": "^18 || ^19",
40
40
  "react-dom": "^18 || ^19",
41
41
  "vue": "^3",
42
- "@inertiajs/react": "^1 || ^2",
43
- "@inertiajs/vue3": "^1 || ^2"
42
+ "@inertiajs/react": "^1 || ^2 || ^3",
43
+ "@inertiajs/vue3": "^1 || ^2 || ^3"
44
44
  },
45
45
  "peerDependenciesMeta": {
46
46
  "react": {