@rootnative/inertia-gradients 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.
- package/CHANGELOG.md +10 -1
- package/README.md +1 -1
- 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`. `expo-linear-gradient` 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
|
|
@@ -74,7 +82,8 @@ _No git tag was cut for this release; the published artifact is on npm as [`@roo
|
|
|
74
82
|
|
|
75
83
|
- `MotionLinearGradient` over `expo-linear-gradient`. Accepts the same `initial` / `animate` / `transition` shape as the core `Motion.*` primitives, with animatable keys for `colors`, `start`, `end`, and `locations`.
|
|
76
84
|
|
|
77
|
-
[unreleased]: https://github.com/rootnative/inertia/compare/core+gestures+gradients+svg@0.0.
|
|
85
|
+
[unreleased]: https://github.com/rootnative/inertia/compare/core+gestures+gradients+svg@0.0.11...HEAD
|
|
86
|
+
[0.0.11]: https://github.com/rootnative/inertia/releases/tag/core+gestures+gradients+svg@0.0.11
|
|
78
87
|
[0.0.10]: https://github.com/rootnative/inertia/releases/tag/core+gestures+gradients+svg@0.0.10
|
|
79
88
|
[0.0.9]: https://github.com/rootnative/inertia/releases/tag/core+gestures+gradients+svg@0.0.9
|
|
80
89
|
[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-gradients expo-linear-gradient
|
|
|
18
18
|
|
|
19
19
|
`expo-linear-gradient` works in bare React Native projects as well as Expo, but it is an Expo Module. Bare projects need the Expo modules runtime installed. See [Installing Expo modules](https://docs.expo.dev/bare/installing-expo-modules/).
|
|
20
20
|
|
|
21
|
-
**Peer dependencies:** `@rootnative/inertia` (workspace or installed), `react >=19.
|
|
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`, `expo-linear-gradient >=14.0.0`.
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rootnative/inertia-gradients",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "Animated linear gradient primitive for @rootnative/inertia, built on expo-linear-gradient.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "RootNative",
|
|
@@ -50,28 +50,30 @@
|
|
|
50
50
|
"!**/*.test.*"
|
|
51
51
|
],
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@rootnative/inertia": ">=0.0.
|
|
53
|
+
"@rootnative/inertia": ">=0.0.11 <0.1.0",
|
|
54
54
|
"expo-linear-gradient": ">=14.0.0",
|
|
55
|
-
"react": ">=19.0.0",
|
|
56
|
-
"react-native": ">=0.
|
|
57
|
-
"react-native-reanimated": ">=4.0.0"
|
|
55
|
+
"react": ">=19.2.3 <20.0.0",
|
|
56
|
+
"react-native": ">=0.83.0 <0.87.0",
|
|
57
|
+
"react-native-reanimated": ">=4.5.0 <4.6.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@react-native/babel-preset": "^0.
|
|
60
|
+
"@react-native/babel-preset": "^0.86.3",
|
|
61
|
+
"@react-native/jest-preset": "^0.86.3",
|
|
61
62
|
"@size-limit/preset-small-lib": "^11.1.0",
|
|
62
63
|
"@testing-library/react-native": "^13.3.3",
|
|
63
64
|
"@types/jest": "^29.5.14",
|
|
64
|
-
"@types/react": "^19.
|
|
65
|
-
"expo-linear-gradient": "~
|
|
65
|
+
"@types/react": "^19.2.0",
|
|
66
|
+
"expo-linear-gradient": "~57.0.1",
|
|
66
67
|
"jest": "^29.7.0",
|
|
67
|
-
"react": "19.
|
|
68
|
-
"react-native": "0.
|
|
69
|
-
"react-native-reanimated": "
|
|
70
|
-
"react-
|
|
68
|
+
"react": "19.2.3",
|
|
69
|
+
"react-native": "0.86.3",
|
|
70
|
+
"react-native-reanimated": "4.5.1",
|
|
71
|
+
"react-native-worklets": "0.10.1",
|
|
72
|
+
"react-test-renderer": "19.2.3",
|
|
71
73
|
"size-limit": "^11.1.0",
|
|
72
74
|
"tsup": "^8.3.5",
|
|
73
75
|
"typescript": "^5.7.3",
|
|
74
|
-
"@rootnative/inertia": "0.0.
|
|
76
|
+
"@rootnative/inertia": "0.0.11"
|
|
75
77
|
},
|
|
76
78
|
"publishConfig": {
|
|
77
79
|
"access": "public"
|