@capacitor/ios 5.0.0-beta.2 → 5.0.0-beta.3

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.
@@ -75,7 +75,7 @@ NS_SWIFT_NAME(InstanceDescriptor)
75
75
  @property (nonatomic, retain, nonnull) NSDictionary *pluginConfigurations;
76
76
  /**
77
77
  @brief The build configurations under which logging should be enabled.
78
- @discussion Defaults to @c debug. Set by @c loggingBehavior in the configuration file but will inherit the deprecated @c hideLogs flag if @c loggingBehavior is absent.
78
+ @discussion Defaults to @c debug. Set by @c loggingBehavior in the configuration file.
79
79
  */
80
80
  @property (nonatomic, assign) CAPInstanceLoggingBehavior loggingBehavior;
81
81
  /**
@@ -117,13 +117,10 @@ internal extension InstanceDescriptor {
117
117
  if let pluginConfig = config[keyPath: "plugins"] as? JSObject {
118
118
  pluginConfigurations = pluginConfig
119
119
  }
120
- // `hideLogs` is deprecated so it's used as a fallback option
121
120
  if let value = (config[keyPath: "ios.loggingBehavior"] as? String) ?? (config[keyPath: "loggingBehavior"] as? String) {
122
121
  if let behavior = InstanceLoggingBehavior.behavior(from: value) {
123
122
  loggingBehavior = behavior
124
123
  }
125
- } else if let hideLogs = (config[keyPath: "ios.hideLogs"] as? Bool) ?? (config[keyPath: "hideLogs"] as? Bool), hideLogs {
126
- loggingBehavior = .none
127
124
  }
128
125
  if let limitsNavigations = config[keyPath: "ios.limitsNavigationsToAppBoundDomains"] as? Bool {
129
126
  limitsNavigationsToAppBoundDomains = limitsNavigations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/ios",
3
- "version": "5.0.0-beta.2",
3
+ "version": "5.0.0-beta.3",
4
4
  "description": "Capacitor: Cross-platform apps with JavaScript and the web",
5
5
  "homepage": "https://capacitorjs.com",
6
6
  "author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -25,10 +25,10 @@
25
25
  "xc:build:CapacitorCordova": "cd CapacitorCordova && xcodebuild && cd .."
26
26
  },
27
27
  "peerDependencies": {
28
- "@capacitor/core": "^5.0.0-beta.1"
28
+ "@capacitor/core": "^5.0.0-beta.2"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
- "gitHead": "80b59984c0bf07e0c2d2a6310f7a7ff2679606ab"
33
+ "gitHead": "60ffcc36bc4948876b94f1f7a0470c68b6a7e50f"
34
34
  }