expo-gl 11.2.2 → 11.3.0

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,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 11.3.0 — 2022-04-27
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fix crash on android 11 by packaging worklet `jsi:Runtime*` inside ArrayBuffer. ([#17194](https://github.com/expo/expo/pull/17194) by [@wkozyra95](https://github.com/wkozyra95))
18
+
13
19
  ## 11.2.2 — 2022-04-21
14
20
 
15
21
  ### 🐛 Bug fixes
package/README.md CHANGED
@@ -35,6 +35,13 @@ To use version `11.2.0` or newer of `expo-gl` you will need to use at least vers
35
35
  | >=9.0.0 && <11.2.0 | >=0.63.1 && <0.65.0 |
36
36
  | >=11.2.0 | >=0.68.0 |
37
37
 
38
+ To use reanimated worklets you will need compatible version of `react-native-reanimated`.
39
+
40
+ | expo-gl | react-native-reanimated |
41
+ | ------------------ | ----------------------- |
42
+ | <11.3.0 | <=2.8.0 |
43
+ | >=11.3.0 | >2.8.0 |
44
+
38
45
  ### Configure for iOS
39
46
 
40
47
  Run `npx pod-install` after installing the npm package.
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '11.2.2'
6
+ version = '11.3.0'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -74,7 +74,7 @@ android {
74
74
  minSdkVersion safeExtGet("minSdkVersion", 21)
75
75
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
76
76
  versionCode 31
77
- versionName "11.2.2"
77
+ versionName "11.3.0"
78
78
  }
79
79
 
80
80
  sourceSets.main {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-gl",
3
- "version": "11.2.2",
3
+ "version": "11.3.0",
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",
@@ -37,7 +37,7 @@
37
37
  "preset": "expo-module-scripts"
38
38
  },
39
39
  "dependencies": {
40
- "expo-gl-cpp": "~11.2.0",
40
+ "expo-gl-cpp": "~11.3.0",
41
41
  "invariant": "^2.2.4"
42
42
  },
43
43
  "devDependencies": {
@@ -50,5 +50,5 @@
50
50
  "peerDependencies": {
51
51
  "expo": "*"
52
52
  },
53
- "gitHead": "0f796e10a2b2f258c40f9d56aa141c372cd63fc1"
53
+ "gitHead": "be6e0e7ea3f7fd1ab8368137260a7ad1b1bf12a8"
54
54
  }