appium-chromedriver 5.2.10 → 5.2.11

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,11 @@
1
+ ## [5.2.11](https://github.com/appium/appium-chromedriver/compare/v5.2.10...v5.2.11) (2022-12-14)
2
+
3
+
4
+ ### Miscellaneous Chores
5
+
6
+ * **deps-dev:** bump @appium/test-support from 2.0.2 to 3.0.0 ([#281](https://github.com/appium/appium-chromedriver/issues/281)) ([bb99b36](https://github.com/appium/appium-chromedriver/commit/bb99b367309b2522dfb2908ada05c3fa91b3d9bd))
7
+ * **deps:** bump @appium/support from 2.61.1 to 3.0.0 ([#280](https://github.com/appium/appium-chromedriver/issues/280)) ([4d1fda9](https://github.com/appium/appium-chromedriver/commit/4d1fda9a9f257ca50bd6e3cadef75505a120351e))
8
+
1
9
  ## [5.2.10](https://github.com/appium/appium-chromedriver/compare/v5.2.9...v5.2.10) (2022-12-01)
2
10
 
3
11
 
package/README.md CHANGED
@@ -41,7 +41,7 @@ CHROMEDRIVER_VERSION=107.0.5304.62 npm install appium-chromedriver
41
41
  ## Custom binaries url
42
42
 
43
43
  If you want Chromedriver to be downloaded from another CDN, which differs from the
44
- default one http://chromedriver.storage.googleapis.com, then either set the npm config property `chromedriver_cdnurl`:
44
+ default one https://chromedriver.storage.googleapis.com, then either set the npm config property `chromedriver_cdnurl`:
45
45
 
46
46
  ```bash
47
47
  npm install appium-chromedriver --chromedriver_cdnurl=http://npm.taobao.org/mirrors/chromedriver
@@ -59,6 +59,11 @@ Or set the new URL to `CHROMEDRIVER_CDNURL` environment variable:
59
59
  CHROMEDRIVER_CDNURL=http://npm.taobao.org/mirrors/chromedriver npm install appium-chromedriver
60
60
  ```
61
61
 
62
+ If you want automatic chromedrivers download feature to work with a custom CDN URL then make sure
63
+ the server returns a proper list of stored drivers in response to requests having
64
+ `Accept: application/xml` header. An example XML could be retrieved from the original URL using
65
+ `curl -H 'Accept: application/xml' https://chromedriver.storage.googleapis.com` command.
66
+
62
67
  ## Usage
63
68
 
64
69
  ```js
@@ -120,6 +125,6 @@ npm run lint
120
125
  ### Run Tests
121
126
 
122
127
  ```bash
123
- npm test
124
- npm e2e-test
128
+ npm run test
129
+ npm run e2e-test
125
130
  ```
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "chrome",
7
7
  "android"
8
8
  ],
9
- "version": "5.2.10",
9
+ "version": "5.2.11",
10
10
  "author": "Appium Contributors",
11
11
  "license": "Apache-2.0",
12
12
  "repository": {
@@ -46,7 +46,7 @@
46
46
  ],
47
47
  "dependencies": {
48
48
  "@appium/base-driver": "^8.7.3",
49
- "@appium/support": "^2.61.0",
49
+ "@appium/support": "^3.0.0",
50
50
  "@babel/runtime": "^7.0.0",
51
51
  "@xmldom/xmldom": "^0.x",
52
52
  "asyncbox": "^2.0.2",
@@ -78,7 +78,7 @@
78
78
  },
79
79
  "devDependencies": {
80
80
  "@appium/eslint-config-appium": "^6.0.0",
81
- "@appium/test-support": "^2.0.0",
81
+ "@appium/test-support": "^3.0.0",
82
82
  "@babel/cli": "^7.18.10",
83
83
  "@babel/core": "^7.18.10",
84
84
  "@babel/eslint-parser": "^7.18.9",