expo-dev-client 5.1.8 → 5.2.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
+ ## 5.2.0 — 2025-06-04
14
+
15
+ ### 💡 Others
16
+
17
+ - Remove "Please" from warnings and errors ([#36862](https://github.com/expo/expo/pull/36862) by [@brentvatne](https://github.com/brentvatne))
18
+
13
19
  ## 5.1.8 — 2025-05-02
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -8,13 +8,13 @@ expoModule {
8
8
  }
9
9
 
10
10
  group = "host.exp.exponent"
11
- version = "5.1.8"
11
+ version = "5.2.0"
12
12
 
13
13
  android {
14
14
  namespace "expo.modules.devclient"
15
15
  defaultConfig {
16
16
  versionCode 1
17
- versionName "5.1.8"
17
+ versionName "5.2.0"
18
18
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19
19
  }
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-client",
3
- "version": "5.1.8",
3
+ "version": "5.2.0",
4
4
  "description": "Expo Development Client",
5
5
  "main": "build/DevClient.js",
6
6
  "types": "build/DevClient.d.ts",
@@ -32,14 +32,14 @@
32
32
  "license": "MIT",
33
33
  "homepage": "https://docs.expo.dev/versions/latest/sdk/dev-client/",
34
34
  "dependencies": {
35
- "expo-dev-launcher": "5.1.11",
36
- "expo-dev-menu": "6.1.10",
35
+ "expo-dev-launcher": "5.1.12",
36
+ "expo-dev-menu": "6.1.11",
37
37
  "expo-dev-menu-interface": "1.10.0",
38
- "expo-manifests": "~0.16.4",
38
+ "expo-manifests": "~0.16.5",
39
39
  "expo-updates-interface": "~1.1.0"
40
40
  },
41
41
  "devDependencies": {
42
- "expo-module-scripts": "^4.1.6",
42
+ "expo-module-scripts": "^4.1.7",
43
43
  "expo-test-runner": "0.2.5"
44
44
  },
45
45
  "peerDependencies": {
@@ -48,5 +48,5 @@
48
48
  "jest": {
49
49
  "preset": "expo-module-scripts"
50
50
  },
51
- "gitHead": "4afcc8dce27953549cd73fa27243dafd2332bd27"
51
+ "gitHead": "7638c800b57fe78f57cc7f129022f58e84a523c5"
52
52
  }
@@ -17,7 +17,7 @@ function getDefaultScheme(config) {
17
17
  let scheme = config.slug.replace(/[^A-Za-z0-9+\-.]/g, '');
18
18
  // Edge case: if the slug didn't include any allowed characters we may end up with an empty string.
19
19
  if (scheme.length === 0) {
20
- throw new Error('Could not autogenerate a scheme. Please make sure the "slug" property in app config consists of URL friendly characters.');
20
+ throw new Error(`Unable to generate a scheme based on the "slug" (${config.slug}), because it does not contain any URL-friendly characters.`);
21
21
  }
22
22
  // Lowercasing might not be strictly necessary, but let's do it for stylistic purposes.
23
23
  scheme = scheme.toLowerCase();
@@ -18,7 +18,7 @@ export default function getDefaultScheme(config: Pick<ExpoConfig, 'slug'>): stri
18
18
  // Edge case: if the slug didn't include any allowed characters we may end up with an empty string.
19
19
  if (scheme.length === 0) {
20
20
  throw new Error(
21
- 'Could not autogenerate a scheme. Please make sure the "slug" property in app config consists of URL friendly characters.'
21
+ `Unable to generate a scheme based on the "slug" (${config.slug}), because it does not contain any URL-friendly characters.`
22
22
  );
23
23
  }
24
24