expo-dev-launcher 2.1.4 → 2.1.6

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
+ ## 2.1.6 — 2023-03-20
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Change arg in gradle `.execute()` call to null to inherit env variables from user's env ([#21712](https://github.com/expo/expo/pull/21712) by [@phoenixiguess](https://github.com/phoenixiguess))
18
+
19
+ ## 2.1.5 — 2023-03-03
20
+
21
+ ### 💡 Others
22
+
23
+ - Update JS bundle to fix dev client not showing logged user and initial data. ([#21510](https://github.com/expo/expo/pull/21510) by [@gabrieldonadel](https://github.com/gabrieldonadel))
24
+
13
25
  ## 2.1.4 — 2023-02-28
14
26
 
15
27
  ### 🐛 Bug fixes
@@ -40,7 +40,7 @@ android {
40
40
  minSdkVersion safeExtGet('minSdkVersion', 21)
41
41
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
42
42
  versionCode 9
43
- versionName "2.1.4"
43
+ versionName "2.1.6"
44
44
  }
45
45
 
46
46
  lintOptions {
@@ -180,7 +180,7 @@ def versionToNumber(major, minor, patch) {
180
180
  }
181
181
 
182
182
  def getNodeModulesPackageVersion(packageName, overridePropName) {
183
- def nodeModulesVersion = ["node", "-e", "console.log(require('$packageName/package.json').version);"].execute([], projectDir).text.trim()
183
+ def nodeModulesVersion = ["node", "-e", "console.log(require('$packageName/package.json').version);"].execute(null, projectDir).text.trim()
184
184
  def version = safeExtGet(overridePropName, nodeModulesVersion)
185
185
 
186
186
  def coreVersion = version.split("-")[0]