appium-chromedriver 5.4.1 → 5.4.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [5.4.3](https://github.com/appium/appium-chromedriver/compare/v5.4.2...v5.4.3) (2023-06-02)
2
+
3
+
4
+ ### Miscellaneous Chores
5
+
6
+ * ChromeDriver Bump to v114.0.5735.90 ([#316](https://github.com/appium/appium-chromedriver/issues/316)) ([4c900f5](https://github.com/appium/appium-chromedriver/commit/4c900f5b9889d535cc12aed28c202da2b2120d28))
7
+
8
+ ## [5.4.2](https://github.com/appium/appium-chromedriver/compare/v5.4.1...v5.4.2) (2023-05-18)
9
+
10
+
11
+ ### Miscellaneous Chores
12
+
13
+ * **deps:** bump @appium/support from 3.1.11 to 4.0.0 ([#311](https://github.com/appium/appium-chromedriver/issues/311)) ([c12156b](https://github.com/appium/appium-chromedriver/commit/c12156b3ec45027edca554593cc3a5d96f22b274))
14
+
1
15
  ## [5.4.1](https://github.com/appium/appium-chromedriver/compare/v5.4.0...v5.4.1) (2023-05-04)
2
16
 
3
17
 
@@ -99,13 +99,13 @@ export class Chromedriver extends events {
99
99
  hasWorkingWebview(): Promise<boolean>;
100
100
  }
101
101
  export namespace Chromedriver {
102
- const EVENT_ERROR: string;
103
- const EVENT_CHANGED: string;
104
- const STATE_STOPPED: string;
105
- const STATE_STARTING: string;
106
- const STATE_ONLINE: string;
107
- const STATE_STOPPING: string;
108
- const STATE_RESTARTING: string;
102
+ let EVENT_ERROR: string;
103
+ let EVENT_CHANGED: string;
104
+ let STATE_STOPPED: string;
105
+ let STATE_STARTING: string;
106
+ let STATE_ONLINE: string;
107
+ let STATE_STOPPING: string;
108
+ let STATE_RESTARTING: string;
109
109
  }
110
110
  import events from 'events';
111
111
  import { SubProcess } from 'teen_process';
@@ -33,9 +33,9 @@ export function getMostRecentChromedriver(mapping?: import('./types').Chromedriv
33
33
  export function retrieveData(url: string, headers: import('axios').AxiosRequestConfig['headers'], opts?: Pick<import('axios').AxiosRequestConfig, 'timeout' | 'responseType'>): Promise<any>;
34
34
  export const getOsInfo: (() => Promise<import('./types').OSInfo>) & _.MemoizedFunction;
35
35
  export namespace OS {
36
- const linux: string;
37
- const windows: string;
38
- const mac: string;
36
+ let linux: string;
37
+ let windows: string;
38
+ let mac: string;
39
39
  }
40
40
  export const X64: "64";
41
41
  export const X86: "32";
@@ -1,4 +1,5 @@
1
1
  {
2
+ "114.0.5735.90": "114.0.5735.90",
2
3
  "113.0.5672.63": "113.0.5672.63",
3
4
  "112.0.5615.49": "112.0.5615.49",
4
5
  "111.0.5563.64": "111.0.5563.64",
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "chrome",
7
7
  "android"
8
8
  ],
9
- "version": "5.4.1",
9
+ "version": "5.4.3",
10
10
  "author": "Appium Contributors",
11
11
  "license": "Apache-2.0",
12
12
  "repository": {
@@ -50,7 +50,7 @@
50
50
  "types": "./build/index.d.ts",
51
51
  "dependencies": {
52
52
  "@appium/base-driver": "^9.1.0",
53
- "@appium/support": "^3.0.0",
53
+ "@appium/support": "^4.0.0",
54
54
  "@babel/runtime": "^7.0.0",
55
55
  "@xmldom/xmldom": "^0.x",
56
56
  "asyncbox": "^2.0.2",