@applitools/eyes-images 4.31.43 → 4.31.44
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 +34 -0
- package/package.json +2 -2
- package/types/index.d.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.31.44](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.43...js/eyes-images@4.31.44) (2026-06-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/nml-client bumped to 1.11.29
|
|
9
|
+
|
|
10
|
+
* @applitools/core-base bumped to 1.35.0
|
|
11
|
+
#### Features
|
|
12
|
+
|
|
13
|
+
* auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
|
|
14
|
+
* @applitools/core bumped to 4.64.0
|
|
15
|
+
#### Features
|
|
16
|
+
|
|
17
|
+
* auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
|
|
18
|
+
* support default match level from renderinfo | AD-13499 ([#3799](https://github.com/Applitools-Dev/sdk/issues/3799)) ([c7e8aeb](https://github.com/Applitools-Dev/sdk/commit/c7e8aeb3f231d9b4e6e368d7ae5f87115c5cad09))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* source hideCaret from settings.hideCaret in NML classic capture | AD-14053 ([#3878](https://github.com/Applitools-Dev/sdk/issues/3878)) ([f07b4f5](https://github.com/Applitools-Dev/sdk/commit/f07b4f5c90bb9b7de0300cef93f23dc833268a7c))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
* @applitools/ec-client bumped to 1.12.31
|
|
28
|
+
|
|
29
|
+
* @applitools/eyes bumped to 1.43.0
|
|
30
|
+
#### Features
|
|
31
|
+
|
|
32
|
+
* auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
3
37
|
## [4.31.43](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.42...js/eyes-images@4.31.43) (2026-05-26)
|
|
4
38
|
|
|
5
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-images",
|
|
3
|
-
"version": "4.31.
|
|
3
|
+
"version": "4.31.44",
|
|
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,ts}' --parallel --jobs ${MOCHA_JOBS:-15}"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@applitools/eyes": "1.
|
|
43
|
+
"@applitools/eyes": "1.43.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@applitools/api-extractor": "^1.2.22",
|
package/types/index.d.ts
CHANGED
|
@@ -1791,6 +1791,7 @@ export type TestResultsPlain = {
|
|
|
1791
1791
|
readonly url?: undefined | string;
|
|
1792
1792
|
readonly server?: undefined | { eyesServerUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; };
|
|
1793
1793
|
readonly keepIfDuplicate?: undefined | boolean;
|
|
1794
|
+
readonly isAutoAcceptedInfraUpdate?: undefined | boolean;
|
|
1794
1795
|
};
|
|
1795
1796
|
export class TestResults implements Required<TestResultsPlain> {
|
|
1796
1797
|
get id(): string;
|
|
@@ -1892,6 +1893,8 @@ export class TestResults implements Required<TestResultsPlain> {
|
|
|
1892
1893
|
useDnsCache?: undefined | boolean;
|
|
1893
1894
|
};
|
|
1894
1895
|
get keepIfDuplicate(): boolean;
|
|
1896
|
+
get isAutoAcceptedInfraUpdate(): boolean;
|
|
1897
|
+
getIsAutoAcceptedInfraUpdate(): boolean;
|
|
1895
1898
|
isPassed(): boolean;
|
|
1896
1899
|
delete(): Promise<void>;
|
|
1897
1900
|
deleteSession(): Promise<void>;
|