appium-chromedriver 5.6.68 → 5.6.70

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,15 @@
1
+ ## [5.6.70](https://github.com/appium/appium-chromedriver/compare/v5.6.69...v5.6.70) (2024-08-07)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * ChromeDriver Bump to v127.0.6533.99 ([#420](https://github.com/appium/appium-chromedriver/issues/420)) ([9ac63d6](https://github.com/appium/appium-chromedriver/commit/9ac63d6eb8dc7dcee5d6c9065aa15d794cec9fa6))
6
+
7
+ ## [5.6.69](https://github.com/appium/appium-chromedriver/compare/v5.6.68...v5.6.69) (2024-08-02)
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * Replace fancy-log dependency with appium logger ([#419](https://github.com/appium/appium-chromedriver/issues/419)) ([7faf923](https://github.com/appium/appium-chromedriver/commit/7faf923fed5ca28f34ead0bac9cc98c48fc09208))
12
+
1
13
  ## [5.6.68](https://github.com/appium/appium-chromedriver/compare/v5.6.67...v5.6.68) (2024-07-31)
2
14
 
3
15
  ### Miscellaneous Chores
@@ -1,4 +1,5 @@
1
1
  {
2
+ "127.0.6533.99": "127.0.6533.99",
2
3
  "127.0.6533.88": "127.0.6533.88",
3
4
  "127.0.6533.72": "127.0.6533.72",
4
5
  "126.0.6478.182": "126.0.6478.182",
package/install-npm.js CHANGED
@@ -20,10 +20,11 @@ B.config({
20
20
 
21
21
  const fs = require('fs/promises');
22
22
  const path = require('path');
23
- const log = require('fancy-log');
24
23
  const _ = require('lodash');
25
24
  const {exec} = require('teen_process');
25
+ const {logger} = require('@appium/support');
26
26
 
27
+ const log = logger.getLogger('CDInstaller');
27
28
  const BUILD_PATH = path.join(__dirname, 'build', 'lib', 'install.js');
28
29
 
29
30
  async function main() {
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "chrome",
7
7
  "android"
8
8
  ],
9
- "version": "5.6.68",
9
+ "version": "5.6.70",
10
10
  "author": "Appium Contributors",
11
11
  "license": "Apache-2.0",
12
12
  "repository": {
@@ -50,7 +50,6 @@
50
50
  "axios": "^1.6.5",
51
51
  "bluebird": "^3.5.1",
52
52
  "compare-versions": "^6.0.0",
53
- "fancy-log": "^2.0.0",
54
53
  "lodash": "^4.17.4",
55
54
  "semver": "^7.0.0",
56
55
  "source-map-support": "^0.x",