@capacitor/cli 4.7.3 → 4.8.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
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [4.8.0](https://github.com/ionic-team/capacitor/compare/4.7.3...4.8.0) (2023-04-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cli:** Pin [@ionic](https://github.com/ionic) dependencies for node 12 support ([#6527](https://github.com/ionic-team/capacitor/issues/6527)) ([dd2d617](https://github.com/ionic-team/capacitor/commit/dd2d6172e174963114d119b55cb0b0e43faf8b63))
12
+ * **cli:** Pin @ionic/utils-subprocess version for node 12 support ([#6524](https://github.com/ionic-team/capacitor/issues/6524)) ([c714408](https://github.com/ionic-team/capacitor/commit/c7144081532c486ef2d5fa42881ae2421b81e3eb))
13
+
14
+
15
+ ### Features
16
+
17
+ * **ios:** add webContentsDebuggingEnabled configuration ([#6500](https://github.com/ionic-team/capacitor/issues/6500)) ([b9e345a](https://github.com/ionic-team/capacitor/commit/b9e345a8f02229650eabc829d49c9d9e7227eb57))
18
+
19
+
20
+
21
+
22
+
6
23
  ## [4.7.3](https://github.com/ionic-team/capacitor/compare/4.7.2...4.7.3) (2023-03-31)
7
24
 
8
25
  **Note:** Version bump only for package @capacitor/cli
Binary file
Binary file
@@ -394,6 +394,15 @@ export interface CapacitorConfig {
394
394
  * @default true
395
395
  */
396
396
  handleApplicationNotifications?: boolean;
397
+ /**
398
+ * Using Xcode 14.3, on iOS 16.4 and greater, enable debuggable web content for release builds.
399
+ *
400
+ * If not set, it's `true` for development builds.
401
+ *
402
+ * @since 4.8.0
403
+ * @default false
404
+ */
405
+ webContentsDebuggingEnabled?: boolean;
397
406
  };
398
407
  server?: {
399
408
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "4.7.3",
3
+ "version": "4.8.0",
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)",
@@ -44,10 +44,10 @@
44
44
  "watch": "npm run assets && tsc -w"
45
45
  },
46
46
  "dependencies": {
47
- "@ionic/cli-framework-output": "^2.2.5",
48
- "@ionic/utils-fs": "^3.1.6",
49
- "@ionic/utils-subprocess": "^2.1.11",
50
- "@ionic/utils-terminal": "^2.3.3",
47
+ "@ionic/cli-framework-output": "2.2.5",
48
+ "@ionic/utils-fs": "3.1.6",
49
+ "@ionic/utils-subprocess": "2.1.11",
50
+ "@ionic/utils-terminal": "2.3.3",
51
51
  "commander": "^9.3.0",
52
52
  "debug": "^4.3.4",
53
53
  "env-paths": "^2.2.0",
@@ -60,7 +60,7 @@
60
60
  "semver": "^7.3.7",
61
61
  "tar": "^6.1.11",
62
62
  "tslib": "^2.4.0",
63
- "xml2js": "^0.4.23"
63
+ "xml2js": "^0.5.0"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@types/debug": "^4.1.7",
@@ -84,5 +84,5 @@
84
84
  "publishConfig": {
85
85
  "access": "public"
86
86
  },
87
- "gitHead": "aa522964a8521f65b95e4233993019e3fe2531a4"
87
+ "gitHead": "b43c69d9d6530fa1a0cc461d6db14859865ed995"
88
88
  }