@applitools/core 3.6.0 → 3.6.2

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
@@ -2,6 +2,83 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## [3.6.2](https://github.com/applitools/eyes.sdk.javascript1/compare/js/core@3.6.1...js/core@3.6.2) (2023-07-18)
6
+
7
+
8
+ ### Dependencies
9
+
10
+ * @applitools/req bumped from 1.4.0 to 1.5.0
11
+ #### Features
12
+
13
+ * support retries on stuck requests ([be673bb](https://github.com/applitools/eyes.sdk.javascript1/commit/be673bb505c9b21d6aea37d86e88513e95e3cb02))
14
+ * @applitools/ufg-client bumped from 1.4.1 to 1.5.0
15
+ #### Features
16
+
17
+ * support retries on stuck requests ([be673bb](https://github.com/applitools/eyes.sdk.javascript1/commit/be673bb505c9b21d6aea37d86e88513e95e3cb02))
18
+
19
+
20
+
21
+ * @applitools/core-base bumped from 1.4.0 to 1.4.1
22
+
23
+ * @applitools/ec-client bumped from 1.7.0 to 1.7.1
24
+
25
+ * @applitools/tunnel-client bumped from 1.1.0 to 1.1.1
26
+
27
+ * @applitools/nml-client bumped from 1.5.2 to 1.5.3
28
+
29
+
30
+ ## [3.6.1](https://github.com/applitools/eyes.sdk.javascript1/compare/js/core@3.6.0...js/core@3.6.1) (2023-07-13)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * replaced NML prefixed appium env vars with APPLITOOLS prefixed ([8905b90](https://github.com/applitools/eyes.sdk.javascript1/commit/8905b90e7c4ec6e310f6e52c03bbcc7acf1ff2ab))
36
+
37
+
38
+ ### Dependencies
39
+
40
+ * @applitools/driver bumped from 1.13.0 to 1.13.1
41
+ #### Bug Fixes
42
+
43
+ * replaced NML prefixed appium env vars with APPLITOOLS prefixed ([8905b90](https://github.com/applitools/eyes.sdk.javascript1/commit/8905b90e7c4ec6e310f6e52c03bbcc7acf1ff2ab))
44
+ * @applitools/ec-client bumped from 1.6.2 to 1.7.0
45
+ #### Features
46
+
47
+ * added internal function to prepare environment before running tunnels ([3d19ec3](https://github.com/applitools/eyes.sdk.javascript1/commit/3d19ec3b274702ffdf26b766b7351ec1f4b66a6d))
48
+
49
+
50
+
51
+ * @applitools/tunnel-client bumped from 1.0.2 to 1.1.0
52
+ #### Features
53
+
54
+ * added internal function to prepare environment before running tunnels ([3d19ec3](https://github.com/applitools/eyes.sdk.javascript1/commit/3d19ec3b274702ffdf26b766b7351ec1f4b66a6d))
55
+
56
+
57
+ #### Bug Fixes
58
+
59
+ * prevent tunnel binaries from overriding itself ([5609a36](https://github.com/applitools/eyes.sdk.javascript1/commit/5609a36c93622c9b8eeb4b4ab25f95907df8baa4))
60
+
61
+
62
+
63
+ * @applitools/nml-client bumped from 1.5.1 to 1.5.2
64
+ #### Bug Fixes
65
+
66
+ * replaced NML prefixed appium env vars with APPLITOOLS prefixed ([8905b90](https://github.com/applitools/eyes.sdk.javascript1/commit/8905b90e7c4ec6e310f6e52c03bbcc7acf1ff2ab))
67
+
68
+
69
+
70
+ * @applitools/ufg-client bumped from 1.4.0 to 1.4.1
71
+ #### Bug Fixes
72
+
73
+ * fixed an issue when an inability to freeze a gif image caused sdk crush ([dca9ead](https://github.com/applitools/eyes.sdk.javascript1/commit/dca9eadd2bab39d1fc20b99d997879075691f0ee))
74
+ * fixed issue when sdk crushed due to invalid resource url in ufg mode ([8b44958](https://github.com/applitools/eyes.sdk.javascript1/commit/8b449580a930753dd2735befdcdb4c46e184b2a9))
75
+ * @applitools/spec-driver-webdriver bumped from 1.0.37 to 1.0.38
76
+
77
+ * @applitools/execution-grid-tunnel bumped to 2.1.8
78
+
79
+ * @applitools/screenshoter bumped from 3.8.3 to 3.8.4
80
+
81
+
5
82
  ## [3.6.0](https://github.com/applitools/eyes.sdk.javascript1/compare/js/core@3.5.1...js/core@3.6.0) (2023-07-10)
6
83
 
7
84
 
@@ -70,7 +70,7 @@ async function takeDomCapture({ driver, settings, logger, }) {
70
70
  logger.log(`Request to download css will be sent to the address "[GET]${url}"`);
71
71
  try {
72
72
  const response = await (0, req_1.req)(url, {
73
- timeout: (_a = settings === null || settings === void 0 ? void 0 : settings.fetchTimeout) !== null && _a !== void 0 ? _a : 60000,
73
+ connectionTimeout: (_a = settings === null || settings === void 0 ? void 0 : settings.fetchTimeout) !== null && _a !== void 0 ? _a : 60000,
74
74
  retry: {
75
75
  limit: 1,
76
76
  validate: ({ response, error }) => !!error || !response.ok,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "3.6.0",
3
+ "version": "3.6.2",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -68,19 +68,19 @@
68
68
  ]
69
69
  },
70
70
  "dependencies": {
71
- "@applitools/core-base": "1.4.0",
71
+ "@applitools/core-base": "1.4.1",
72
72
  "@applitools/dom-capture": "11.2.2",
73
73
  "@applitools/dom-snapshot": "4.7.9",
74
- "@applitools/driver": "1.13.0",
75
- "@applitools/ec-client": "1.6.2",
74
+ "@applitools/driver": "1.13.1",
75
+ "@applitools/ec-client": "1.7.1",
76
76
  "@applitools/logger": "2.0.5",
77
- "@applitools/nml-client": "1.5.1",
78
- "@applitools/req": "1.4.0",
79
- "@applitools/screenshoter": "3.8.3",
77
+ "@applitools/nml-client": "1.5.3",
78
+ "@applitools/req": "1.5.0",
79
+ "@applitools/screenshoter": "3.8.4",
80
80
  "@applitools/snippets": "2.4.21",
81
81
  "@applitools/socket": "1.1.5",
82
- "@applitools/spec-driver-webdriver": "1.0.37",
83
- "@applitools/ufg-client": "1.4.0",
82
+ "@applitools/spec-driver-webdriver": "1.0.38",
83
+ "@applitools/ufg-client": "1.5.0",
84
84
  "@applitools/utils": "1.5.0",
85
85
  "@types/ws": "8.5.5",
86
86
  "abort-controller": "3.0.0",
@@ -91,14 +91,14 @@
91
91
  "yargs": "^17.7.2"
92
92
  },
93
93
  "devDependencies": {
94
- "@applitools/bongo": "^4.0.0",
95
- "@applitools/sdk-coverage-tests": "^3.0.2",
96
- "@applitools/spec-driver-puppeteer": "^1.1.68",
97
- "@applitools/spec-driver-selenium": "^1.5.51",
98
- "@applitools/spec-driver-webdriverio": "^1.5.6",
94
+ "@applitools/bongo": "^5.0.4",
95
+ "@applitools/sdk-coverage-tests": "^3.1.0",
96
+ "@applitools/spec-driver-puppeteer": "^1.1.69",
97
+ "@applitools/spec-driver-selenium": "^1.5.52",
98
+ "@applitools/spec-driver-webdriverio": "^1.5.7",
99
99
  "@applitools/test-server": "^1.2.2",
100
100
  "@applitools/test-utils": "^1.5.17",
101
- "@applitools/tunnel-client": "^1.0.2",
101
+ "@applitools/tunnel-client": "^1.1.1",
102
102
  "@types/node": "^12.20.55",
103
103
  "@types/selenium-webdriver": "^4.1.2",
104
104
  "@types/yargs": "^17.0.22",