expo-manifests 0.8.0 → 0.8.1

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
+ ## 0.8.1 — 2023-08-02
14
+
15
+ ### 🛠 Breaking changes
16
+
17
+ - Drop support for `logUrl` which sent console logs to the legacy `expo-cli`. ([#18596](https://github.com/expo/expo/pull/18596) by [@EvanBacon](https://github.com/EvanBacon))
18
+
13
19
  ## 0.8.0 — 2023-07-28
14
20
 
15
21
  ### 🎉 New features
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '0.8.0'
6
+ version = '0.8.1'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -67,7 +67,7 @@ android {
67
67
  minSdkVersion safeExtGet("minSdkVersion", 21)
68
68
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
69
69
  versionCode 31
70
- versionName '0.8.0'
70
+ versionName '0.8.1'
71
71
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
72
72
  }
73
73
  lintOptions {
@@ -105,7 +105,6 @@ abstract class Manifest(protected val json: JSONObject) {
105
105
 
106
106
  fun getDebuggerHost(): String = getExpoGoConfigRootObject()!!.require("debuggerHost")
107
107
  fun getMainModuleName(): String = getExpoGoConfigRootObject()!!.require("mainModuleName")
108
- fun getLogUrl(): String? = getExpoGoConfigRootObject()?.getNullable("logUrl")
109
108
  fun getHostUri(): String? = getExpoClientConfigRootObject()?.getNullable("hostUri")
110
109
 
111
110
  fun isVerified(): Boolean = json.getNullable("isVerified") ?: false
@@ -200,10 +200,6 @@ public class Manifest: NSObject {
200
200
  return expoGoConfigRootObject()?.optionalValue(forKey: "developer")
201
201
  }
202
202
 
203
- public func logUrl() -> String? {
204
- return expoGoConfigRootObject()?.optionalValue(forKey: "logUrl")
205
- }
206
-
207
203
  public func facebookAppId() -> String? {
208
204
  return expoClientConfigRootObject()?.optionalValue(forKey: "facebookAppId")
209
205
  }
@@ -48,7 +48,6 @@ class BareManifestSpec : ExpoSpec {
48
48
  expect(manifest.orientation()).to(beNil())
49
49
  expect(manifest.experiments()).to(beNil())
50
50
  expect(manifest.developer()).to(beNil())
51
- expect(manifest.logUrl()).to(beNil())
52
51
  expect(manifest.facebookAppId()).to(beNil())
53
52
  expect(manifest.facebookApplicationName()).to(beNil())
54
53
  expect(manifest.facebookAutoInitEnabled()) == false
@@ -48,7 +48,6 @@ class LegacyManifestSpec : ExpoSpec {
48
48
  expect(manifest.orientation()).to(beNil())
49
49
  expect(manifest.experiments()).to(beNil())
50
50
  expect(manifest.developer()).to(beNil())
51
- expect(manifest.logUrl()).to(beNil())
52
51
  expect(manifest.facebookAppId()).to(beNil())
53
52
  expect(manifest.facebookApplicationName()).to(beNil())
54
53
  expect(manifest.facebookAutoInitEnabled()) == false
@@ -43,7 +43,6 @@ class NewManifestSpec : ExpoSpec {
43
43
  expect(manifest.orientation()).to(beNil())
44
44
  expect(manifest.experiments()).to(beNil())
45
45
  expect(manifest.developer()).to(beNil())
46
- expect(manifest.logUrl()).to(beNil())
47
46
  expect(manifest.facebookAppId()).to(beNil())
48
47
  expect(manifest.facebookApplicationName()).to(beNil())
49
48
  expect(manifest.facebookAutoInitEnabled()) == false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-manifests",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Code to parse and use Expo and Expo Updates manifests.",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -22,5 +22,5 @@
22
22
  "dependencies": {
23
23
  "expo-json-utils": "~0.8.0"
24
24
  },
25
- "gitHead": "663654577a7068c641b5e9474efbc502e3f334ea"
25
+ "gitHead": "2240630a92eb79a4e4bf73e1439916c394876478"
26
26
  }