@applitools/eyes-testcafe 4.1.5 → 4.1.6

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
@@ -13,6 +13,51 @@
13
13
 
14
14
 
15
15
 
16
+ ## [4.1.6](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-testcafe@4.1.5...js/eyes-testcafe@4.1.6) (2024-01-16)
17
+
18
+
19
+ ### Dependencies
20
+
21
+ * @applitools/dom-snapshot bumped to 4.7.16
22
+ #### Bug Fixes
23
+
24
+ * handle unparsable values of media attribute in dom snapshot ([a2afe2e](https://github.com/applitools/eyes.sdk.javascript1/commit/a2afe2e18508f44f9c046270da0c1e09fb9aea03))
25
+ * @applitools/nml-client bumped to 1.6.4
26
+ #### Bug Fixes
27
+
28
+ * remove local environment id ([#2152](https://github.com/applitools/eyes.sdk.javascript1/issues/2152)) ([59aaeae](https://github.com/applitools/eyes.sdk.javascript1/commit/59aaeaed474fbde78b76ae7ac803960e3ecd8166))
29
+ * @applitools/core bumped to 4.6.0
30
+ #### Features
31
+
32
+ * added possibility to provide `fallbackBaselineId` in environment objects ([#2146](https://github.com/applitools/eyes.sdk.javascript1/issues/2146)) ([f0782ea](https://github.com/applitools/eyes.sdk.javascript1/commit/f0782ea4c38935f97fc47248ed6a5b67f87b0634))
33
+
34
+
35
+ #### Bug Fixes
36
+
37
+ * add environment variable for setting ufg server ufg ([#2147](https://github.com/applitools/eyes.sdk.javascript1/issues/2147)) ([cfc701f](https://github.com/applitools/eyes.sdk.javascript1/commit/cfc701f7a43fed0fe252d4090b9c1dc490063c76))
38
+ * remove local environment id ([#2152](https://github.com/applitools/eyes.sdk.javascript1/issues/2152)) ([59aaeae](https://github.com/applitools/eyes.sdk.javascript1/commit/59aaeaed474fbde78b76ae7ac803960e3ecd8166))
39
+
40
+
41
+
42
+ * @applitools/ec-client bumped to 1.7.22
43
+
44
+ * @applitools/core-base bumped to 1.9.0
45
+ #### Features
46
+
47
+ * added possibility to provide `fallbackBaselineId` in environment objects ([#2146](https://github.com/applitools/eyes.sdk.javascript1/issues/2146)) ([f0782ea](https://github.com/applitools/eyes.sdk.javascript1/commit/f0782ea4c38935f97fc47248ed6a5b67f87b0634))
48
+
49
+
50
+ #### Bug Fixes
51
+
52
+ * add environment variable for setting ufg server ufg ([#2147](https://github.com/applitools/eyes.sdk.javascript1/issues/2147)) ([cfc701f](https://github.com/applitools/eyes.sdk.javascript1/commit/cfc701f7a43fed0fe252d4090b9c1dc490063c76))
53
+ * @applitools/eyes bumped to 1.13.5
54
+ #### Bug Fixes
55
+
56
+ * fixed default value in `useSystemScreenshot` method of check settings ([42a773c](https://github.com/applitools/eyes.sdk.javascript1/commit/42a773cc57e8e5de528a049b376159615892003b))
57
+
58
+
59
+
60
+
16
61
  ## [4.1.5](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-testcafe@4.1.4...js/eyes-testcafe@4.1.5) (2024-01-02)
17
62
 
18
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-testcafe",
3
- "version": "4.1.5",
3
+ "version": "4.1.6",
4
4
  "description": "Applitools Eyes SDK for TestCafe",
5
5
  "keywords": [
6
6
  "eyes-testcafe",
@@ -69,7 +69,7 @@
69
69
  },
70
70
  "dependencies": {
71
71
  "@applitools/driver": "1.16.1",
72
- "@applitools/eyes": "1.13.4",
72
+ "@applitools/eyes": "1.13.5",
73
73
  "@applitools/utils": "1.7.0"
74
74
  },
75
75
  "devDependencies": {
package/types/index.d.ts CHANGED
@@ -206,7 +206,7 @@ export class CheckSettingsAutomation {
206
206
  nmgOptions(options: { [key: string]: any; }): CheckSettingsAutomation;
207
207
  visualGridOption(key: string, value: any): CheckSettingsAutomation;
208
208
  visualGridOptions(options: { [key: string]: any; }): CheckSettingsAutomation;
209
- useSystemScreenshot(useSystemScreenshot: boolean): CheckSettingsAutomation;
209
+ useSystemScreenshot(useSystemScreenshot?: undefined | boolean): CheckSettingsAutomation;
210
210
  timeout(timeout: number): CheckSettingsAutomation;
211
211
  waitBeforeCapture(waitBeforeCapture: number): CheckSettingsAutomation;
212
212
  lazyLoad(options?: undefined | boolean | { scrollLength?: undefined | number; waitingTime?: undefined | number; maxAmountToScroll?: undefined | number; }): CheckSettingsAutomation;