appium-xcuitest-driver 7.24.9 → 7.24.10

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,9 @@
1
+ ## [7.24.10](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.9...v7.24.10) (2024-08-02)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * Replace fancy-log dependency with appium logger ([#2442](https://github.com/appium/appium-xcuitest-driver/issues/2442)) ([9911b4e](https://github.com/appium/appium-xcuitest-driver/commit/9911b4e315a13ca27d9f1831bec7e2012bfde8b4))
6
+
1
7
  ## [7.24.9](https://github.com/appium/appium-xcuitest-driver/compare/v7.24.8...v7.24.9) (2024-08-01)
2
8
 
3
9
  ### Bug Fixes
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "appium-xcuitest-driver",
3
- "version": "7.24.9",
3
+ "version": "7.24.10",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-xcuitest-driver",
9
- "version": "7.24.9",
9
+ "version": "7.24.10",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@colors/colors": "^1.6.0",
@@ -20,7 +20,6 @@
20
20
  "asyncbox": "^3.0.0",
21
21
  "bluebird": "^3.7.2",
22
22
  "css-selector-parser": "^3.0.0",
23
- "fancy-log": "^2.0.0",
24
23
  "js2xmlparser2": "^0.x",
25
24
  "lodash": "^4.17.21",
26
25
  "lru-cache": "^10.0.0",
@@ -833,9 +832,9 @@
833
832
  }
834
833
  },
835
834
  "node_modules/@types/node": {
836
- "version": "22.0.2",
837
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.0.2.tgz",
838
- "integrity": "sha512-yPL6DyFwY5PiMVEwymNeqUTKsDczQBJ/5T7W/46RwLU/VH+AA8aT5TZkvBviLKLbbm0hlfftEkGrNzfRk/fofQ==",
835
+ "version": "22.0.3",
836
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.0.3.tgz",
837
+ "integrity": "sha512-/e0NZtK2gs6Vk2DoyrXSZZ4AlamqTkx0CcKx1Aq8/P4ITlRgU9OtVf5fl+LXkWWJce1M89pkSlH6lJJEnK7bQA==",
839
838
  "license": "MIT",
840
839
  "dependencies": {
841
840
  "undici-types": "~6.11.1"
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "xcuitest",
9
9
  "xctest"
10
10
  ],
11
- "version": "7.24.9",
11
+ "version": "7.24.10",
12
12
  "author": "Appium Contributors",
13
13
  "license": "Apache-2.0",
14
14
  "repository": {
@@ -87,7 +87,6 @@
87
87
  "asyncbox": "^3.0.0",
88
88
  "bluebird": "^3.7.2",
89
89
  "css-selector-parser": "^3.0.0",
90
- "fancy-log": "^2.0.0",
91
90
  "js2xmlparser2": "^0.x",
92
91
  "lodash": "^4.17.21",
93
92
  "lru-cache": "^10.0.0",
@@ -3,7 +3,9 @@ const xcode = require('appium-xcode');
3
3
  const B = require('bluebird');
4
4
  const {Simctl} = require('node-simctl');
5
5
  const {getSimulator} = require('appium-ios-simulator');
6
- const log = require('fancy-log');
6
+ const {logger} = require('appium/support');
7
+
8
+ const log = logger.getLogger('WDA');
7
9
 
8
10
  // TODO: allow passing in all the various build params as CLI args
9
11
  async function build() {
@@ -1,6 +1,8 @@
1
1
  const path = require('path');
2
2
  const {exec} = require('teen_process');
3
- const log = require('fancy-log');
3
+ const {logger} = require('appium/support');
4
+
5
+ const log = logger.getLogger('WDA');
4
6
  const {BOOTSTRAP_PATH} = require('appium-webdriveragent');
5
7
  const XCODEPROJ_NAME = 'WebDriverAgent.xcodeproj';
6
8