@applitools/eyes 1.36.9 → 1.36.11

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,5 +1,76 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.36.11](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.10...js/eyes@1.36.11) (2025-10-16)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/dom-snapshot bumped to 4.13.10
9
+ #### Bug Fixes
10
+
11
+ * sandboxing | FLD-3482 ([#3274](https://github.com/Applitools-Dev/sdk/issues/3274)) ([b452cbf](https://github.com/Applitools-Dev/sdk/commit/b452cbf831907b04cd70624c0af655246ce580f1))
12
+
13
+
14
+
15
+ * @applitools/driver bumped to 1.24.0
16
+ #### Features
17
+
18
+ * use performActions (W3C) instead of touchPerform (MJSONWP) ([#3223](https://github.com/Applitools-Dev/sdk/issues/3223)) ([d4e5da8](https://github.com/Applitools-Dev/sdk/commit/d4e5da8dc19ad3c3f76de8e762be867970df3dd2))
19
+ * @applitools/spec-driver-webdriver bumped to 1.5.0
20
+ #### Features
21
+
22
+ * use performActions (W3C) instead of touchPerform (MJSONWP) ([#3223](https://github.com/Applitools-Dev/sdk/issues/3223)) ([d4e5da8](https://github.com/Applitools-Dev/sdk/commit/d4e5da8dc19ad3c3f76de8e762be867970df3dd2))
23
+
24
+
25
+
26
+ * @applitools/spec-driver-selenium bumped to 1.7.6
27
+
28
+ * @applitools/spec-driver-puppeteer bumped to 1.6.6
29
+
30
+ * @applitools/screenshoter bumped to 3.12.7
31
+
32
+ * @applitools/nml-client bumped to 1.11.9
33
+
34
+ * @applitools/ec-client bumped to 1.12.11
35
+
36
+ * @applitools/core bumped to 4.50.2
37
+ #### Bug Fixes
38
+
39
+ * missed verifying environments | AD-11225 ([#3256](https://github.com/Applitools-Dev/sdk/issues/3256)) ([e8a5d78](https://github.com/Applitools-Dev/sdk/commit/e8a5d78426422614fc776b3d32ff2c375b95be18))
40
+
41
+
42
+
43
+
44
+ ## [1.36.10](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.9...js/eyes@1.36.10) (2025-10-09)
45
+
46
+
47
+ ### Bug Fixes
48
+
49
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
50
+
51
+
52
+ ### Dependencies
53
+
54
+ * @applitools/dom-snapshot bumped to 4.13.9
55
+ #### Bug Fixes
56
+
57
+ * 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))
58
+ * @applitools/core-base bumped to 1.28.2
59
+ #### Bug Fixes
60
+
61
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
62
+ * @applitools/nml-client bumped to 1.11.8
63
+
64
+ * @applitools/ec-client bumped to 1.12.10
65
+
66
+ * @applitools/core bumped to 4.50.1
67
+ #### Bug Fixes
68
+
69
+ * various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
70
+
71
+
72
+
73
+
3
74
  ## [1.36.9](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.8...js/eyes@1.36.9) (2025-10-01)
4
75
 
5
76
 
@@ -2,5 +2,11 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.EyesError = void 0;
4
4
  class EyesError extends Error {
5
+ constructor(message, reason) {
6
+ super();
7
+ this.name = this.constructor.name;
8
+ this.message = message;
9
+ this.reason = reason || 'internal';
10
+ }
5
11
  }
6
12
  exports.EyesError = EyesError;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.36.9",
3
+ "version": "1.36.11",
4
4
  "keywords": [
5
5
  "applitools",
6
6
  "eyes",
@@ -46,7 +46,7 @@
46
46
  "test": "run --top-level mocha './test/**/*.spec.ts'"
47
47
  },
48
48
  "dependencies": {
49
- "@applitools/core": "4.49.0",
49
+ "@applitools/core": "4.50.2",
50
50
  "@applitools/logger": "2.2.4",
51
51
  "@applitools/utils": "1.12.0",
52
52
  "chalk": "4.1.2",
@@ -1,2 +1,4 @@
1
1
  export declare class EyesError extends Error {
2
+ readonly reason: string;
3
+ constructor(message: string, reason?: string);
2
4
  }