expo-gl 16.0.0-canary-20250402-161f57b → 16.0.0-canary-20250404-42b6263

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 CHANGED
@@ -10,7 +10,6 @@
10
10
 
11
11
  ### 🐛 Bug fixes
12
12
 
13
- - [ios] Fixed build errors in XCode 16.3 ([#35811](https://github.com/expo/expo/pull/35811) by [@chrfalch](https://github.com/chrfalch))
14
13
  - stb_image PNG: Checks for invalid DEFLATE codes. ([#35184](https://github.com/expo/expo/pull/35184) by [@manoj23](https://github.com/manoj23))
15
14
 
16
15
  ### 💡 Others
@@ -18,6 +17,12 @@
18
17
  - [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
19
18
  - [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))
20
19
 
20
+ ## 15.0.5 - 2025-04-01
21
+
22
+ ### 🐛 Bug fixes
23
+
24
+ - [ios] Fixed build errors in XCode 16.3 ([#35811](https://github.com/expo/expo/pull/35811) by [@chrfalch](https://github.com/chrfalch))
25
+
21
26
  ## 15.0.4 - 2025-01-19
22
27
 
23
28
  _This version does not introduce any user-facing changes._
@@ -9,7 +9,7 @@ def reactNativeArchitectures() {
9
9
  }
10
10
 
11
11
  group = 'host.exp.exponent'
12
- version = '16.0.0-canary-20250402-161f57b'
12
+ version = '15.0.2'
13
13
 
14
14
  android {
15
15
  if (rootProject.hasProperty("ndkPath")) {
@@ -22,7 +22,7 @@ android {
22
22
  namespace "expo.modules.gl"
23
23
  defaultConfig {
24
24
  versionCode 31
25
- versionName "16.0.0-canary-20250402-161f57b"
25
+ versionName "15.0.2"
26
26
 
27
27
  externalNativeBuild {
28
28
  cmake {
@@ -5,12 +5,6 @@
5
5
  "modules": ["GLViewModule"]
6
6
  },
7
7
  "android": {
8
- "modules": ["expo.modules.gl.GLViewModule", "expo.modules.gl.GLObjectManagerModule"],
9
- "publication": {
10
- "groupId": "host.exp.exponent",
11
- "artifactId": "expo.modules.gl",
12
- "version": "16.0.0-canary-20250402-161f57b",
13
- "repository": "https://maven.pkg.github.com/expo/expo"
14
- }
8
+ "modules": ["expo.modules.gl.GLViewModule", "expo.modules.gl.GLObjectManagerModule"]
15
9
  }
16
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-gl",
3
- "version": "16.0.0-canary-20250402-161f57b",
3
+ "version": "16.0.0-canary-20250404-42b6263",
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-20250402-161f57b",
46
+ "expo-module-scripts": "4.0.6-canary-20250404-42b6263",
47
47
  "react-test-renderer": "19.0.0"
48
48
  },
49
49
  "peerDependencies": {
50
- "expo": "53.0.0-canary-20250402-161f57b",
50
+ "expo": "53.0.0-canary-20250404-42b6263",
51
51
  "react": "*",
52
52
  "react-native": "*",
53
53
  "react-native-web": "*"
@@ -56,6 +56,5 @@
56
56
  "react-native-web": {
57
57
  "optional": true
58
58
  }
59
- },
60
- "gitHead": "161f57bb5f579c84f8fa0337ec596034e21760f6"
59
+ }
61
60
  }