@applitools/eyes-images 4.31.9 → 4.31.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 +32 -0
- package/package.json +2 -2
- package/types/index.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.31.10](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.9...js/eyes-images@4.31.10) (2025-10-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/dom-snapshot bumped to 4.13.9
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* 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))
|
|
12
|
+
* @applitools/nml-client bumped to 1.11.8
|
|
13
|
+
|
|
14
|
+
* @applitools/core-base bumped to 1.28.2
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
|
|
18
|
+
* @applitools/core bumped to 4.50.1
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* various config fixes for storybook-addon ([#3257](https://github.com/Applitools-Dev/sdk/issues/3257)) ([86fd4d1](https://github.com/Applitools-Dev/sdk/commit/86fd4d114122bbaf675b5fa361b0e967595ca296))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
* @applitools/ec-client bumped to 1.12.10
|
|
26
|
+
|
|
27
|
+
* @applitools/eyes bumped to 1.36.10
|
|
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
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
3
35
|
## [4.31.9](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.8...js/eyes-images@4.31.9) (2025-10-01)
|
|
4
36
|
|
|
5
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-images",
|
|
3
|
-
"version": "4.31.
|
|
3
|
+
"version": "4.31.10",
|
|
4
4
|
"description": "The simplest implementation of Applitools Eyes SDK, uploads images for validation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-images",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"test:coverage": "APPLITOOLS_SHOW_LOGS=true APPLITOOLS_LOG_FILE=\"./logs/$(uuidgen).log\" APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-images' APPLITOOLS_BATCH_ID=$(uuidgen) MOCHA_GROUP=coverage run --top-level mocha './test/generated-coverage/*.spec.js' --parallel --jobs ${MOCHA_JOBS:-15}"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@applitools/eyes": "1.36.
|
|
43
|
+
"@applitools/eyes": "1.36.10"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@applitools/api-extractor": "^1.2.22",
|
package/types/index.d.ts
CHANGED
|
@@ -1190,6 +1190,8 @@ export enum DynamicTextType {
|
|
|
1190
1190
|
Currency = 'Currency'
|
|
1191
1191
|
}
|
|
1192
1192
|
export class EyesError extends Error {
|
|
1193
|
+
constructor(message: string, reason?: undefined | string);
|
|
1194
|
+
readonly reason: string;
|
|
1193
1195
|
}
|
|
1194
1196
|
export class TestFailedError extends EyesError {
|
|
1195
1197
|
constructor(message: string, results: TestResultsPlain);
|