expo-manifests 0.14.4-canary-20240719-83ee47b → 1.0.0-canary-20240904-69100c1

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
@@ -4,6 +4,8 @@
4
4
 
5
5
  ### 🛠 Breaking changes
6
6
 
7
+ - Bumped iOS and tvOS deployment target to 15.1. ([#30840](https://github.com/expo/expo/pull/30840) by [@tsapeta](https://github.com/tsapeta))
8
+
7
9
  ### 🎉 New features
8
10
 
9
11
  ### 🐛 Bug fixes
@@ -222,7 +222,7 @@ abstract class Manifest(protected val json: JSONObject) {
222
222
  @Throws(JSONException::class, IllegalArgumentException::class)
223
223
  fun getPluginProperties(packageName: String): Map<String, Any>? {
224
224
  val pluginsRawValue = getExpoClientConfigRootObject()?.getNullable<JSONArray>("plugins") ?: return null
225
- val plugins = PluginType.fromRawArrayValue(pluginsRawValue) ?: return null
225
+ val plugins = PluginType.fromRawArrayValue(pluginsRawValue)
226
226
  return plugins.filterIsInstance<PluginType.WithProps>()
227
227
  .firstOrNull { it.plugin.first == packageName }
228
228
  ?.plugin?.second
@@ -10,7 +10,10 @@ Pod::Spec.new do |s|
10
10
  s.license = package['license']
11
11
  s.author = package['author']
12
12
  s.homepage = package['homepage']
13
- s.platforms = { :ios => '13.4', :tvos => '13.4' }
13
+ s.platforms = {
14
+ :ios => '15.1',
15
+ :tvos => '15.1'
16
+ }
14
17
  s.swift_version = '5.4'
15
18
  s.source = { git: 'https://github.com/expo/expo.git' }
16
19
  s.static_framework = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-manifests",
3
- "version": "0.14.4-canary-20240719-83ee47b",
3
+ "version": "1.0.0-canary-20240904-69100c1",
4
4
  "description": "Code to parse and use Expo and Expo Updates manifests.",
5
5
  "main": "build/Manifests.js",
6
6
  "types": "build/Manifests.d.ts",
@@ -34,14 +34,14 @@
34
34
  "preset": "expo-module-scripts"
35
35
  },
36
36
  "dependencies": {
37
- "@expo/config": "9.1.0-canary-20240719-83ee47b",
38
- "expo-json-utils": "0.13.2-canary-20240719-83ee47b"
37
+ "@expo/config": "10.0.0-canary-20240904-69100c1",
38
+ "expo-json-utils": "1.0.0-canary-20240904-69100c1"
39
39
  },
40
40
  "devDependencies": {
41
- "expo-module-scripts": "3.6.0-canary-20240719-83ee47b"
41
+ "expo-module-scripts": "3.6.0-canary-20240904-69100c1"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "expo": "*"
45
45
  },
46
- "gitHead": "83ee47b5c89c7f1b1a5101189580eaf3555f5962"
46
+ "gitHead": "69100c1b099b707057c052ed8096e06cb208aca1"
47
47
  }
package/tsconfig.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "outDir": "./build"
6
6
  },
7
7
  "include": ["./src"],
8
- "exclude": ["**/__mocks__/*", "**/__tests__/*"]
8
+ "exclude": ["**/__mocks__/*", "**/__tests__/*", "**/__rsc_tests__/*"]
9
9
  }