@capacitor/cli 4.2.1-nightly-20220921T150520.0 → 4.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 CHANGED
@@ -3,6 +3,25 @@
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.3.0](https://github.com/ionic-team/capacitor/compare/4.2.0...4.3.0) (2022-09-21)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cli:** Find the Info.plist when using scheme ([#5914](https://github.com/ionic-team/capacitor/issues/5914)) ([f7029ac](https://github.com/ionic-team/capacitor/commit/f7029acb885ec60f85a434b6f71e4f2a633c7651))
12
+ * **cli:** Make migrator update gradle wrapper files ([#5910](https://github.com/ionic-team/capacitor/issues/5910)) ([b8b9b1f](https://github.com/ionic-team/capacitor/commit/b8b9b1f96249908435017eea6c427221f1971836))
13
+ * **cli:** Make update from windows use proper paths on Podfile ([#5906](https://github.com/ionic-team/capacitor/issues/5906)) ([c41d28f](https://github.com/ionic-team/capacitor/commit/c41d28f8cc829c6bf69d776280c9f1fdba9f866f))
14
+ * **cli:** show error if npm install on migration failed ([#5904](https://github.com/ionic-team/capacitor/issues/5904)) ([aa60a75](https://github.com/ionic-team/capacitor/commit/aa60a75d9c2c784e127a4d89e4079b412fbe7262))
15
+
16
+
17
+ ### Features
18
+
19
+ * Capacitor Cookies & Capacitor Http core plugins ([d4047cf](https://github.com/ionic-team/capacitor/commit/d4047cfa947676777f400389a8d65defae140b45))
20
+
21
+
22
+
23
+
24
+
6
25
  # [4.2.0](https://github.com/ionic-team/capacitor/compare/4.1.0...4.2.0) (2022-09-08)
7
26
 
8
27
 
Binary file
Binary file
@@ -509,4 +509,30 @@ export interface PluginsConfig {
509
509
  * @since 4.2.0
510
510
  */
511
511
  LiveUpdates?: LiveUpdateConfig;
512
+ /**
513
+ * Capacitor Cookies plugin configuration
514
+ *
515
+ * @since 4.3.0
516
+ */
517
+ CapacitorCookies?: {
518
+ /**
519
+ * Enable CapacitorCookies to override the global `document.cookie` on native.
520
+ *
521
+ * @default false
522
+ */
523
+ enabled?: boolean;
524
+ };
525
+ /**
526
+ * Capacitor Http plugin configuration
527
+ *
528
+ * @since 4.3.0
529
+ */
530
+ CapacitorHttp?: {
531
+ /**
532
+ * Enable CapacitorHttp to override the global `fetch` and `XMLHttpRequest` on native.
533
+ *
534
+ * @default false
535
+ */
536
+ enabled?: boolean;
537
+ };
512
538
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "4.2.1-nightly-20220921T150520.0",
3
+ "version": "4.3.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)",
@@ -83,5 +83,5 @@
83
83
  "publishConfig": {
84
84
  "access": "public"
85
85
  },
86
- "gitHead": "4706f8325864d6c32bc0ad7ff9c07848bcf32ccd"
86
+ "gitHead": "3d4433b505252d263784ec0fafc72a9b7cd8591e"
87
87
  }