@capacitor/cli 3.5.0 → 3.7.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,36 @@
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
+ # [3.7.0](https://github.com/ionic-team/capacitor/compare/3.6.0...3.7.0) (2022-08-01)
7
+
8
+ **Note:** Version bump only for package @capacitor/cli
9
+
10
+
11
+
12
+
13
+
14
+ # [3.6.0](https://github.com/ionic-team/capacitor/compare/3.5.1...3.6.0) (2022-06-17)
15
+
16
+
17
+ ### Features
18
+
19
+ * **android:** update support for Portals for Capacitor to include Live Updates ([#5660](https://github.com/ionic-team/capacitor/issues/5660)) ([62f0a5e](https://github.com/ionic-team/capacitor/commit/62f0a5eaa40776aad79dbf8f8c0900037d3cc97e))
20
+
21
+
22
+
23
+
24
+
25
+ ## [3.5.1](https://github.com/ionic-team/capacitor/compare/3.5.0...3.5.1) (2022-05-04)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **android:** move initialFocus on webview into config ([#5579](https://github.com/ionic-team/capacitor/issues/5579)) ([8b4e861](https://github.com/ionic-team/capacitor/commit/8b4e861514b0fbe08e9296f49c280234f54742e1))
31
+
32
+
33
+
34
+
35
+
6
36
  # [3.5.0](https://github.com/ionic-team/capacitor/compare/3.4.3...3.5.0) (2022-04-22)
7
37
 
8
38
 
Binary file
Binary file
@@ -184,6 +184,13 @@ export interface CapacitorConfig {
184
184
  * @since 3.1.0
185
185
  */
186
186
  flavor?: string;
187
+ /**
188
+ * Whether to give the webview initial focus.
189
+ *
190
+ * @since 3.5.1
191
+ * @default true
192
+ */
193
+ initialFocus?: boolean;
187
194
  };
188
195
  ios?: {
189
196
  /**
@@ -435,8 +442,15 @@ export interface CapacitorConfig {
435
442
  export interface Portal {
436
443
  name: string;
437
444
  webDir: string;
438
- appId?: string;
445
+ liveUpdateConfig?: LiveUpdateConfig;
446
+ }
447
+ export interface LiveUpdateConfig {
448
+ appId: string;
449
+ channel: string;
450
+ autoUpdateMethod: AutoUpdateMethod;
451
+ maxVersions?: number;
439
452
  }
453
+ export declare type AutoUpdateMethod = 'none' | 'background';
440
454
  export interface PluginsConfig {
441
455
  /**
442
456
  * Plugin configuration by class name.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "3.5.0",
3
+ "version": "3.7.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)",
@@ -85,5 +85,5 @@
85
85
  "publishConfig": {
86
86
  "access": "public"
87
87
  },
88
- "gitHead": "f03e1a67140c8af25288456f9e99dd6234b50f25"
88
+ "gitHead": "84ec6619623510e345b2637e33febe94b10cc736"
89
89
  }