@applitools/eyes 1.36.8 → 1.36.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 +60 -0
- package/dist/errors/EyesError.js +6 -0
- package/package.json +2 -2
- package/types/errors/EyesError.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,65 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.36.10](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.9...js/eyes@1.36.10) (2025-10-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/dom-snapshot bumped to 4.13.9
|
|
14
|
+
#### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* 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))
|
|
17
|
+
* @applitools/core-base bumped to 1.28.2
|
|
18
|
+
#### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
|
|
21
|
+
* @applitools/nml-client bumped to 1.11.8
|
|
22
|
+
|
|
23
|
+
* @applitools/ec-client bumped to 1.12.10
|
|
24
|
+
|
|
25
|
+
* @applitools/core bumped to 4.50.1
|
|
26
|
+
#### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [1.36.9](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.8...js/eyes@1.36.9) (2025-10-01)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Dependencies
|
|
37
|
+
|
|
38
|
+
* @applitools/screenshoter bumped to 3.12.6
|
|
39
|
+
#### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* wait after scroll | FLD-3594 ([#3252](https://github.com/Applitools-Dev/sdk/issues/3252)) ([e452422](https://github.com/Applitools-Dev/sdk/commit/e4524229b64e40d9b9596a92bfa94daf5824286a))
|
|
42
|
+
* @applitools/core-base bumped to 1.28.1
|
|
43
|
+
#### Bug Fixes
|
|
44
|
+
|
|
45
|
+
* unexpected concurrency values from server | AD-11465 ([#3248](https://github.com/Applitools-Dev/sdk/issues/3248)) ([0dd28c7](https://github.com/Applitools-Dev/sdk/commit/0dd28c7b297d5ad3aabc6b87e427e3e09a993825))
|
|
46
|
+
* @applitools/nml-client bumped to 1.11.7
|
|
47
|
+
|
|
48
|
+
* @applitools/ec-client bumped to 1.12.9
|
|
49
|
+
|
|
50
|
+
* @applitools/core bumped to 4.49.0
|
|
51
|
+
#### Features
|
|
52
|
+
|
|
53
|
+
* storybook addon ([#3104](https://github.com/Applitools-Dev/sdk/issues/3104)) ([16e09cb](https://github.com/Applitools-Dev/sdk/commit/16e09cba8928c3a24b9e0d9d41e0936fbaec2773))
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
#### Bug Fixes
|
|
57
|
+
|
|
58
|
+
* duplicate concurrency warnings ([#3255](https://github.com/Applitools-Dev/sdk/issues/3255)) ([ef2f94a](https://github.com/Applitools-Dev/sdk/commit/ef2f94ab4137c78396583f166344285beeb49be7))
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
3
63
|
## [1.36.8](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.7...js/eyes@1.36.8) (2025-09-22)
|
|
4
64
|
|
|
5
65
|
|
package/dist/errors/EyesError.js
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "1.36.10",
|
|
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
|
+
"@applitools/core": "4.50.1",
|
|
50
50
|
"@applitools/logger": "2.2.4",
|
|
51
51
|
"@applitools/utils": "1.12.0",
|
|
52
52
|
"chalk": "4.1.2",
|