expo-dev-client 3.2.0 → 3.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 +6 -0
- package/android/build.gradle +4 -4
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 3.3.0 — 2023-11-14
|
|
14
|
+
|
|
15
|
+
### 🛠 Breaking changes
|
|
16
|
+
|
|
17
|
+
- On `Android` bump `compileSdkVersion` and `targetSdkVersion` to `34`. ([#24708](https://github.com/expo/expo/pull/24708) by [@alanjhughes](https://github.com/alanjhughes))
|
|
18
|
+
|
|
13
19
|
## 3.2.0 — 2023-10-17
|
|
14
20
|
|
|
15
21
|
### 🛠 Breaking changes
|
package/android/build.gradle
CHANGED
|
@@ -35,11 +35,11 @@ buildscript {
|
|
|
35
35
|
android {
|
|
36
36
|
// Remove this if and it's contents, when support for SDK49 is dropped
|
|
37
37
|
if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
38
|
-
compileSdkVersion safeExtGet("compileSdkVersion",
|
|
38
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 34)
|
|
39
39
|
|
|
40
40
|
defaultConfig {
|
|
41
41
|
minSdkVersion safeExtGet("minSdkVersion", 23)
|
|
42
|
-
targetSdkVersion safeExtGet("targetSdkVersion",
|
|
42
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 34)
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
lintOptions {
|
|
@@ -49,9 +49,9 @@ android {
|
|
|
49
49
|
namespace "expo.modules.devclient"
|
|
50
50
|
defaultConfig {
|
|
51
51
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
52
|
-
targetSdkVersion safeExtGet("targetSdkVersion",
|
|
52
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 34)
|
|
53
53
|
versionCode 1
|
|
54
|
-
versionName "3.
|
|
54
|
+
versionName "3.3.0"
|
|
55
55
|
|
|
56
56
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
57
57
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-dev-client",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Expo Development Client",
|
|
5
5
|
"main": "build/DevClient.js",
|
|
6
6
|
"types": "build/DevClient.d.ts",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"homepage": "https://docs.expo.dev/clients/introduction/",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"expo-dev-launcher": "3.
|
|
36
|
-
"expo-dev-menu": "4.
|
|
37
|
-
"expo-dev-menu-interface": "1.
|
|
38
|
-
"expo-manifests": "~0.
|
|
39
|
-
"expo-updates-interface": "~0.
|
|
35
|
+
"expo-dev-launcher": "3.4.0",
|
|
36
|
+
"expo-dev-menu": "4.4.0",
|
|
37
|
+
"expo-dev-menu-interface": "1.6.0",
|
|
38
|
+
"expo-manifests": "~0.12.0",
|
|
39
|
+
"expo-updates-interface": "~0.15.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"expo-module-scripts": "^3.0.0",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"jest": {
|
|
49
49
|
"preset": "expo-module-scripts"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
|
|
52
52
|
}
|