expo-gl 15.0.5-canary-20250221-ef26fed → 16.0.0-canary-20250303-4dba60e
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 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
### 🛠 Breaking changes
|
|
6
6
|
|
|
7
|
+
- upgrade RN to 0.78 ([#35050](https://github.com/expo/expo/pull/35050) by [@vonovak](https://github.com/vonovak))
|
|
8
|
+
|
|
7
9
|
### 🎉 New features
|
|
8
10
|
|
|
9
11
|
### 🐛 Bug fixes
|
|
@@ -13,6 +15,14 @@
|
|
|
13
15
|
- [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
|
|
14
16
|
- [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
|
|
15
17
|
|
|
18
|
+
## 15.0.4 - 2025-01-19
|
|
19
|
+
|
|
20
|
+
_This version does not introduce any user-facing changes._
|
|
21
|
+
|
|
22
|
+
## 15.0.3 - 2025-01-10
|
|
23
|
+
|
|
24
|
+
_This version does not introduce any user-facing changes._
|
|
25
|
+
|
|
16
26
|
## 15.0.2 — 2024-11-14
|
|
17
27
|
|
|
18
28
|
_This version does not introduce any user-facing changes._
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-gl",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "16.0.0-canary-20250303-4dba60e",
|
|
4
4
|
"description": "Provides GLView that acts as OpenGL ES render target and gives GL context object implementing WebGL 2.0 specification.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"@types/invariant": "^2.2.33",
|
|
44
44
|
"@types/offscreencanvas": "2019.6.4",
|
|
45
45
|
"@types/webgl2": "^0.0.6",
|
|
46
|
-
"expo-module-scripts": "4.0.5-canary-
|
|
47
|
-
"react-test-renderer": "
|
|
46
|
+
"expo-module-scripts": "4.0.5-canary-20250303-4dba60e",
|
|
47
|
+
"react-test-renderer": "19.0.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"expo": "53.0.0-canary-
|
|
50
|
+
"expo": "53.0.0-canary-20250303-4dba60e",
|
|
51
51
|
"react": "*",
|
|
52
52
|
"react-native": "*",
|
|
53
53
|
"react-native-web": "*"
|
|
@@ -56,5 +56,6 @@
|
|
|
56
56
|
"react-native-web": {
|
|
57
57
|
"optional": true
|
|
58
58
|
}
|
|
59
|
-
}
|
|
59
|
+
},
|
|
60
|
+
"gitHead": "4dba60e10b5d44b453073aa4968e9dbf312dea6c"
|
|
60
61
|
}
|