expo-gl 14.0.3-canary-20240627-1402f4b → 14.0.3-canary-20240719-83ee47b

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 +1 -0
  2. package/package.json +6 -4
package/CHANGELOG.md CHANGED
@@ -9,6 +9,7 @@
9
9
  ### 🐛 Bug fixes
10
10
 
11
11
  - Add NULL check before releasing `textureRef` in `EXGLCameraObject`. ([#29092](https://github.com/expo/expo/pull/29092) by [@hakonk](https://github.com/hakonk))
12
+ - Add missing `react` and `react-native` peer dependencies for isolated modules. ([#30468](https://github.com/expo/expo/pull/30468) by [@byCedric](https://github.com/byCedric))
12
13
 
13
14
  ### 💡 Others
14
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-gl",
3
- "version": "14.0.3-canary-20240627-1402f4b",
3
+ "version": "14.0.3-canary-20240719-83ee47b",
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,13 @@
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": "3.6.0-canary-20240627-1402f4b",
46
+ "expo-module-scripts": "3.6.0-canary-20240719-83ee47b",
47
47
  "react-test-renderer": "18.2.0"
48
48
  },
49
49
  "peerDependencies": {
50
- "expo": "*"
50
+ "expo": "*",
51
+ "react": "*",
52
+ "react-native": "*"
51
53
  },
52
- "gitHead": "1402f4bcfdfcec328fc1e20cf1656bbefe7c3b7b"
54
+ "gitHead": "83ee47b5c89c7f1b1a5101189580eaf3555f5962"
53
55
  }