expo-modules-core 3.0.17 → 3.0.18

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
+ ## 3.0.18 — 2025-09-22
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Return EXJavaScriptValue from null/undefined in arrays. ([#39872](https://github.com/expo/expo/pull/39872) by [@jakex7](https://github.com/jakex7))
18
+
13
19
  ## 3.0.17 — 2025-09-18
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -29,7 +29,7 @@ if (shouldIncludeCompose) {
29
29
  }
30
30
 
31
31
  group = 'host.exp.exponent'
32
- version = '3.0.17'
32
+ version = '3.0.18'
33
33
 
34
34
  def isExpoModulesCoreTests = {
35
35
  Gradle gradle = getGradle()
@@ -79,7 +79,7 @@ android {
79
79
  defaultConfig {
80
80
  consumerProguardFiles 'proguard-rules.pro'
81
81
  versionCode 1
82
- versionName "3.0.17"
82
+ versionName "3.0.18"
83
83
  buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
84
84
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled.toString()
85
85
 
@@ -123,12 +123,7 @@
123
123
 
124
124
  for (size_t i = 0; i < arraySize; i++) {
125
125
  jsi::Value item = jsiArray.getValueAtIndex(*runtime, i);
126
-
127
- if (item.isUndefined() || item.isNull()) {
128
- [result addObject:(id)kCFNull];
129
- } else {
130
- [result addObject:[[EXJavaScriptValue alloc] initWithRuntime:_runtime value:std::move(item)]];
131
- }
126
+ [result addObject:[[EXJavaScriptValue alloc] initWithRuntime:_runtime value:std::move(item)]];
132
127
  }
133
128
  return result;
134
129
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-core",
3
- "version": "3.0.17",
3
+ "version": "3.0.18",
4
4
  "description": "The core of Expo Modules architecture",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -65,5 +65,5 @@
65
65
  "@testing-library/react-native": "^13.2.0",
66
66
  "expo-module-scripts": "^5.0.7"
67
67
  },
68
- "gitHead": "0d9ae61f3dea2e2b854576859e5b50fca5503fc1"
68
+ "gitHead": "6523053d0d997d2a21f580d2752b2f873c122038"
69
69
  }