@rootnative/inertia-svg 0.0.10 → 0.0.11

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 (3) hide show
  1. package/CHANGELOG.md +10 -1
  2. package/README.md +1 -1
  3. package/package.json +15 -13
package/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ This package ships in lockstep with `@rootnative/inertia` — version numbers tr
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.0.11] - 2026-09-09
10
+
11
+ ### Changed
12
+
13
+ - **Breaking: the peer ranges are narrowed to the Expo SDK 57 band.** `react` is now `>=19.2.3 <20.0.0`, `react-native` is `>=0.83.0 <0.87.0`, and `react-native-reanimated` is `>=4.5.0 <4.6.0`. This adapter tracks the band that `@rootnative/inertia` declares, so the two cannot disagree and no consumer can install a pair that resolves to different runtimes. The reason the band is this narrow is in the core changelog: each peer range resolves on its own, so a range wide enough for both SDK 54 and SDK 57 also admits `react-native 0.81` with Reanimated `4.6`, which cannot install.
14
+
15
+ Migration: move the app to Expo SDK 57 (React `19.2.3`, React Native `0.86.3`, Reanimated `4.5.1`, Worklets `0.10.1`). A project on SDK 54 stays on `0.0.10`. `react-native-svg` keeps its own floor, because its version relationship is with the Expo SDK and not with this adapter.
16
+
9
17
  ## [0.0.10] - 2026-09-06
10
18
 
11
19
  ### Changed
@@ -81,7 +89,8 @@ _No git tag was cut for this release; the published artifact is on npm as [`@roo
81
89
 
82
90
  - `MotionPath` over `react-native-svg`. Animatable: `d` (element-wise scalar interpolation on structurally-compatible paths), `fill`, `stroke`, `strokeWidth`, opacities, `strokeDashoffset`. Source and target paths must share the same command sequence after implicit-repeat expansion; remount with `key` to switch shape.
83
91
 
84
- [unreleased]: https://github.com/rootnative/inertia/compare/core+gestures+gradients+svg@0.0.10...HEAD
92
+ [unreleased]: https://github.com/rootnative/inertia/compare/core+gestures+gradients+svg@0.0.11...HEAD
93
+ [0.0.11]: https://github.com/rootnative/inertia/releases/tag/core+gestures+gradients+svg@0.0.11
85
94
  [0.0.10]: https://github.com/rootnative/inertia/releases/tag/core+gestures+gradients+svg@0.0.10
86
95
  [0.0.9]: https://github.com/rootnative/inertia/releases/tag/core+gestures+gradients+svg@0.0.9
87
96
  [0.0.8]: https://github.com/rootnative/inertia/releases/tag/core+gestures+gradients+svg@0.0.8
package/README.md CHANGED
@@ -18,7 +18,7 @@ pnpm add @rootnative/inertia-svg react-native-svg
18
18
 
19
19
  `react-native-svg` works in bare React Native projects as well as Expo.
20
20
 
21
- **Peer dependencies:** `@rootnative/inertia` (workspace or installed), `react >=19.0.0`, `react-native >=0.81.0`, `react-native-reanimated >=4.0.0`, `react-native-svg >=15.0.0`.
21
+ **Peer dependencies:** `@rootnative/inertia` (workspace or installed), `react >=19.2.3`, `react-native >=0.83.0 <0.87.0`, `react-native-reanimated >=4.5.0 <4.6.0`, `react-native-svg >=15.0.0`.
22
22
 
23
23
  ## Usage
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rootnative/inertia-svg",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Animatable SVG primitives (path morphing, fill/stroke) for @rootnative/inertia, built on react-native-svg.",
5
5
  "license": "MIT",
6
6
  "author": "RootNative",
@@ -50,26 +50,28 @@
50
50
  "!**/*.test.*"
51
51
  ],
52
52
  "peerDependencies": {
53
- "@rootnative/inertia": ">=0.0.10 <0.1.0",
54
- "react": ">=19.0.0",
55
- "react-native": ">=0.81.0",
56
- "react-native-reanimated": ">=4.0.0",
53
+ "@rootnative/inertia": ">=0.0.11 <0.1.0",
54
+ "react": ">=19.2.3 <20.0.0",
55
+ "react-native": ">=0.83.0 <0.87.0",
56
+ "react-native-reanimated": ">=4.5.0 <4.6.0",
57
57
  "react-native-svg": ">=15.0.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@react-native/babel-preset": "^0.81.5",
60
+ "@react-native/babel-preset": "^0.86.3",
61
+ "@react-native/jest-preset": "^0.86.3",
61
62
  "@testing-library/react-native": "^13.3.3",
62
63
  "@types/jest": "^29.5.14",
63
- "@types/react": "^19.1.0",
64
+ "@types/react": "^19.2.0",
64
65
  "jest": "^29.7.0",
65
- "react": "19.1.0",
66
- "react-native": "0.81.5",
67
- "react-native-reanimated": "~4.1.1",
68
- "react-native-svg": "15.12.1",
69
- "react-test-renderer": "19.1.0",
66
+ "react": "19.2.3",
67
+ "react-native": "0.86.3",
68
+ "react-native-reanimated": "4.5.1",
69
+ "react-native-svg": "15.15.4",
70
+ "react-native-worklets": "0.10.1",
71
+ "react-test-renderer": "19.2.3",
70
72
  "tsup": "^8.3.5",
71
73
  "typescript": "^5.7.3",
72
- "@rootnative/inertia": "0.0.10"
74
+ "@rootnative/inertia": "0.0.11"
73
75
  },
74
76
  "publishConfig": {
75
77
  "access": "public"