@applitools/eyes-testcafe 6.3.9 → 6.3.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
@@ -13,6 +13,38 @@
13
13
 
14
14
 
15
15
 
16
+ ## [6.3.10](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.9...js/eyes-testcafe@6.3.10) (2025-10-09)
17
+
18
+
19
+ ### Dependencies
20
+
21
+ * @applitools/dom-snapshot bumped to 4.13.9
22
+ #### Bug Fixes
23
+
24
+ * verbose Unknown CSS object model logging | AD-11542 | FLD-3687 ([#3261](https://github.com/Applitools-Dev/sdk/issues/3261)) ([ba85d32](https://github.com/Applitools-Dev/sdk/commit/ba85d3287a81af109db1a7b407e5ead20f395d9f))
25
+ * @applitools/nml-client bumped to 1.11.8
26
+
27
+ * @applitools/core-base bumped to 1.28.2
28
+ #### Bug Fixes
29
+
30
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
31
+ * @applitools/core bumped to 4.50.1
32
+ #### Bug Fixes
33
+
34
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
35
+
36
+
37
+
38
+ * @applitools/ec-client bumped to 1.12.10
39
+
40
+ * @applitools/eyes bumped to 1.36.10
41
+ #### Bug Fixes
42
+
43
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
44
+
45
+
46
+
47
+
16
48
  ## [6.3.9](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.8...js/eyes-testcafe@6.3.9) (2025-10-01)
17
49
 
18
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-testcafe",
3
- "version": "6.3.9",
3
+ "version": "6.3.10",
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.23.5",
72
- "@applitools/eyes": "1.36.9",
72
+ "@applitools/eyes": "1.36.10",
73
73
  "@applitools/utils": "1.12.0"
74
74
  },
75
75
  "devDependencies": {
package/types/index.d.ts CHANGED
@@ -1068,6 +1068,8 @@ export enum DynamicTextType {
1068
1068
  Currency = 'Currency'
1069
1069
  }
1070
1070
  export class EyesError extends Error {
1071
+ constructor(message: string, reason?: undefined | string);
1072
+ readonly reason: string;
1071
1073
  }
1072
1074
  export class TestFailedError extends EyesError {
1073
1075
  constructor(message: string, results: TestResultsPlain);