@wdio/sauce-service 8.40.2 → 8.40.5

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/build/launcher.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { performance, PerformanceObserver } from 'node:perf_hooks';
2
- import ip from 'ip';
2
+ import { ip } from 'address';
3
3
  import { default as SauceLabs } from 'saucelabs';
4
4
  import logger from '@wdio/logger';
5
5
  import { makeCapabilityFactory } from './utils.js';
@@ -32,7 +32,7 @@ export default class SauceLauncher {
32
32
  noAutodetect: true,
33
33
  tunnelIdentifier: sauceConnectTunnelIdentifier,
34
34
  ...this._options.sauceConnectOpts,
35
- noSslBumpDomains: `127.0.0.1,localhost,${ip.address()}` + (this._options.sauceConnectOpts?.noSslBumpDomains
35
+ noSslBumpDomains: `127.0.0.1,localhost,${ip()}` + (this._options.sauceConnectOpts?.noSslBumpDomains
36
36
  ? `,${this._options.sauceConnectOpts.noSslBumpDomains}`
37
37
  : ''),
38
38
  logger: this._options.sauceConnectOpts?.logger || ((output) => log.debug(`Sauce Connect Log: ${output}`)),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/sauce-service",
3
- "version": "8.40.2",
3
+ "version": "8.40.5",
4
4
  "description": "WebdriverIO service that provides a better integration into Sauce Labs",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-sauce-service",
@@ -31,18 +31,18 @@
31
31
  "typeScriptVersion": "3.8.3",
32
32
  "dependencies": {
33
33
  "@wdio/logger": "8.38.0",
34
- "@wdio/types": "8.39.0",
35
- "@wdio/utils": "8.40.2",
36
- "ip": "^2.0.1",
37
- "saucelabs": "7.5.0",
38
- "webdriverio": "8.40.2"
34
+ "@wdio/types": "8.40.3",
35
+ "@wdio/utils": "8.40.3",
36
+ "address": "^2.0.3",
37
+ "saucelabs": "8.0.0",
38
+ "webdriverio": "8.40.5"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/ip": "^1.1.0",
42
- "@wdio/globals": "8.40.2"
42
+ "@wdio/globals": "8.40.5"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "4cade71f6be0b8c53c48918b9a6da37a6ad21835"
47
+ "gitHead": "c94fcc0cffccc8cf3a217bc7b77794f988df8e11"
48
48
  }