@applitools/eyes 1.42.1 → 1.43.0
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/dist/output/TestResults.js +6 -0
- package/package.json +2 -2
- package/types/output/TestResults.d.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.43.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.42.1...js/eyes@1.43.0) (2026-06-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* 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))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/core-base bumped to 1.35.0
|
|
14
|
+
#### Features
|
|
15
|
+
|
|
16
|
+
* 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))
|
|
17
|
+
* @applitools/nml-client bumped to 1.11.29
|
|
18
|
+
|
|
19
|
+
* @applitools/ec-client bumped to 1.12.31
|
|
20
|
+
|
|
21
|
+
* @applitools/core bumped to 4.64.0
|
|
22
|
+
#### Features
|
|
23
|
+
|
|
24
|
+
* 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))
|
|
25
|
+
* 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))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
#### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* 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))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
3
35
|
## [1.42.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.42.0...js/eyes@1.42.1) (2026-05-26)
|
|
4
36
|
|
|
5
37
|
|
|
@@ -342,6 +342,12 @@ class TestResultsData {
|
|
|
342
342
|
get keepIfDuplicate() {
|
|
343
343
|
return this._result.keepIfDuplicate;
|
|
344
344
|
}
|
|
345
|
+
get isAutoAcceptedInfraUpdate() {
|
|
346
|
+
return Boolean(this._result.isAutoAcceptedInfraUpdate);
|
|
347
|
+
}
|
|
348
|
+
getIsAutoAcceptedInfraUpdate() {
|
|
349
|
+
return this.isAutoAcceptedInfraUpdate;
|
|
350
|
+
}
|
|
345
351
|
isPassed() {
|
|
346
352
|
return this._result.status === TestResultsStatus_1.TestResultsStatusEnum.Passed;
|
|
347
353
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.43.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"applitools",
|
|
6
6
|
"eyes",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"test": "run --top-level mocha './test/**/*.spec.ts'"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@applitools/core": "4.
|
|
53
|
+
"@applitools/core": "4.64.0",
|
|
54
54
|
"@applitools/logger": "2.2.12",
|
|
55
55
|
"@applitools/utils": "1.14.5",
|
|
56
56
|
"chalk": "4.1.2",
|
|
@@ -42,6 +42,7 @@ export type TestResults = {
|
|
|
42
42
|
proxy?: ProxySettings;
|
|
43
43
|
};
|
|
44
44
|
readonly keepIfDuplicate?: boolean;
|
|
45
|
+
readonly isAutoAcceptedInfraUpdate?: boolean;
|
|
45
46
|
};
|
|
46
47
|
export declare class TestResultsData implements Required<TestResults> {
|
|
47
48
|
private _core?;
|
|
@@ -173,6 +174,8 @@ export declare class TestResultsData implements Required<TestResults> {
|
|
|
173
174
|
setUrl(_url: string): void;
|
|
174
175
|
get server(): Core.EyesServerSettings;
|
|
175
176
|
get keepIfDuplicate(): boolean;
|
|
177
|
+
get isAutoAcceptedInfraUpdate(): boolean;
|
|
178
|
+
getIsAutoAcceptedInfraUpdate(): boolean;
|
|
176
179
|
isPassed(): boolean;
|
|
177
180
|
delete(): Promise<void>;
|
|
178
181
|
/** @deprecated */
|