@ankhorage/zora 3.0.0 → 3.0.1
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 +6 -0
- package/package.json +4 -4
- package/src/expo57Migration.test.ts +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7e0ae67: Support the React Native 0.86 patch line as a peer, consume the released Surface peer fix, and align ZORA's validation and Expo 57 examples with React Native 0.86.3.
|
|
8
|
+
|
|
3
9
|
## 3.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ankhorage/zora",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"description": "Opinionated React Native and React Native Web UI kit built on @ankhorage/surface.",
|
|
6
6
|
"homepage": "https://github.com/ankhorage/zora#readme",
|
|
7
7
|
"bugs": {
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"@react-native-vector-icons/fontawesome6": "^13.1.3",
|
|
32
32
|
"@react-native-vector-icons/ionicons": "^13.1.3",
|
|
33
33
|
"react": "19.2.3",
|
|
34
|
-
"react-native": "0.86.
|
|
34
|
+
"react-native": "0.86.x",
|
|
35
35
|
"react-native-safe-area-context": "~5.7.0",
|
|
36
36
|
"react-native-web": "~0.21.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@ankhorage/color-theory": "^0.0.8",
|
|
40
40
|
"@ankhorage/contracts": "^8.0.0",
|
|
41
|
-
"@ankhorage/surface": "^3.0.
|
|
41
|
+
"@ankhorage/surface": "^3.0.1"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
44
|
"dist",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"happy-dom": "^20.11.6",
|
|
103
103
|
"react": "19.2.3",
|
|
104
104
|
"react-dom": "19.2.3",
|
|
105
|
-
"react-native": "0.86.
|
|
105
|
+
"react-native": "0.86.3",
|
|
106
106
|
"react-native-safe-area-context": "~5.7.0",
|
|
107
107
|
"react-native-web": "~0.21.0",
|
|
108
108
|
"typescript": "~6.0.3"
|
|
@@ -52,10 +52,10 @@ describe('portable ZORA package boundary', () => {
|
|
|
52
52
|
const peers = readRecord(packageJson, 'peerDependencies');
|
|
53
53
|
const development = readRecord(packageJson, 'devDependencies');
|
|
54
54
|
|
|
55
|
-
expect(readValue(dependencies, '@ankhorage/surface')).toBe('^3.0.
|
|
55
|
+
expect(readValue(dependencies, '@ankhorage/surface')).toBe('^3.0.1');
|
|
56
56
|
expect(readValue(dependencies, '@ankhorage/contracts')).toBe('^8.0.0');
|
|
57
57
|
expect(peers.react).toBe('19.2.3');
|
|
58
|
-
expect(readValue(peers, 'react-native')).toBe('0.86.
|
|
58
|
+
expect(readValue(peers, 'react-native')).toBe('0.86.x');
|
|
59
59
|
expect(readValue(peers, 'react-native-web')).toBe('~0.21.0');
|
|
60
60
|
expect(development.typescript).toBe('~6.0.3');
|
|
61
61
|
|
|
@@ -88,9 +88,10 @@ describe('Expo 57 example boundary', () => {
|
|
|
88
88
|
const dependencies = readRecord(packageJson, 'dependencies');
|
|
89
89
|
const development = readRecord(packageJson, 'devDependencies');
|
|
90
90
|
|
|
91
|
-
expect(dependencies
|
|
91
|
+
expect(readValue(dependencies, '@ankhorage/zora')).toBe('^3.0.0');
|
|
92
|
+
expect(dependencies.expo).toBe('57.0.17');
|
|
92
93
|
expect(dependencies.react).toBe('19.2.3');
|
|
93
|
-
expect(readValue(dependencies, 'react-native')).toBe('0.86.
|
|
94
|
+
expect(readValue(dependencies, 'react-native')).toBe('0.86.3');
|
|
94
95
|
expect(readValue(dependencies, 'react-native-web')).toBe('~0.21.0');
|
|
95
96
|
expect(development.typescript).toBe('~6.0.3');
|
|
96
97
|
expect(readValue(dependencies, '@expo/vector-icons')).toBeUndefined();
|