expo-dev-launcher 56.0.13 → 56.0.15

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,18 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 56.0.15 — 2026-05-23
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Fix xcode build phase ordering. ([#46125](https://github.com/expo/expo/pull/46125) by [@alanjhughes](https://github.com/alanjhughes))
18
+
19
+ ## 56.0.14 — 2026-05-21
20
+
21
+ ### 🐛 Bug fixes
22
+
23
+ - Fix an ES module import error in the typed config plugin. ([#46089](https://github.com/expo/expo/pull/46089) by [@zoontek](https://github.com/zoontek))
24
+
13
25
  ## 56.0.13 — 2026-05-20
14
26
 
15
27
  ### 🐛 Bug fixes
@@ -26,13 +26,13 @@ expoModule {
26
26
  }
27
27
 
28
28
  group = "host.exp.exponent"
29
- version = "56.0.13"
29
+ version = "56.0.15"
30
30
 
31
31
  android {
32
32
  namespace "expo.modules.devlauncher"
33
33
  defaultConfig {
34
34
  versionCode 9
35
- versionName "56.0.13"
35
+ versionName "56.0.15"
36
36
  }
37
37
 
38
38
  buildTypes {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "56.0.13",
4
+ "version": "56.0.15",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -16,7 +16,7 @@
16
16
  "homepage": "https://docs.expo.dev",
17
17
  "dependencies": {
18
18
  "@expo/schema-utils": "^56.0.0",
19
- "expo-dev-menu": "~56.0.12",
19
+ "expo-dev-menu": "~56.0.14",
20
20
  "expo-manifests": "~56.0.4"
21
21
  },
22
22
  "peerDependencies": {
@@ -25,9 +25,9 @@
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^22.14.0",
28
- "expo": "56.0.0"
28
+ "expo": "56.0.4"
29
29
  },
30
- "gitHead": "c4c9867a0bcbb188e55ecaec4998e38d33108a5d",
30
+ "gitHead": "6dfb0e4c958a1ea1d66d3f7952494ac58430ad45",
31
31
  "scripts": {
32
32
  "build:plugin": "expo-module build plugin",
33
33
  "expo-module": "expo-module"
@@ -31,6 +31,7 @@ const withStripLocalNetworkKeysForRelease = (config) => {
31
31
  }
32
32
  project.addBuildPhase([], 'PBXShellScriptBuildPhase', buildPhaseName, nativeTargetId, {
33
33
  shellPath: '/bin/sh',
34
+ inputPaths: ['"$(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)"'],
34
35
  shellScript: `# Strip dev-launcher-specific local network permission keys from non-Debug builds
35
36
  # This only removes _expo._tcp Bonjour services and the dev-launcher usage description.
36
37
  # Other Bonjour services and custom descriptions are preserved for production use.
@@ -0,0 +1 @@
1
+ export { default } from './build';
package/plugin/index.js CHANGED
@@ -1 +1 @@
1
- export { default } from './build';
1
+ module.exports = require('./build');
@@ -46,6 +46,7 @@ const withStripLocalNetworkKeysForRelease: ConfigPlugin = (config) => {
46
46
 
47
47
  project.addBuildPhase([], 'PBXShellScriptBuildPhase', buildPhaseName, nativeTargetId, {
48
48
  shellPath: '/bin/sh',
49
+ inputPaths: ['"$(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)"'],
49
50
  shellScript: `# Strip dev-launcher-specific local network permission keys from non-Debug builds
50
51
  # This only removes _expo._tcp Bonjour services and the dev-launcher usage description.
51
52
  # Other Bonjour services and custom descriptions are preserved for production use.
@@ -1 +1 @@
1
- {"root":["./src/index.ts","./src/pluginconfig.ts","./src/withdevlauncher.ts"],"version":"6.0.2"}
1
+ {"root":["./src/pluginconfig.ts","./src/withdevlauncher.ts"],"version":"5.9.3"}