@applitools/eyes-cypress 3.60.2 → 3.60.3
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 +36 -0
- package/package.json +4 -4
- package/types/expose.d.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.60.3](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.60.2...js/eyes-cypress@3.60.3) (2026-06-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/core-base bumped to 1.35.0
|
|
9
|
+
#### Features
|
|
10
|
+
|
|
11
|
+
* 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))
|
|
12
|
+
* @applitools/eyes bumped to 1.43.0
|
|
13
|
+
#### Features
|
|
14
|
+
|
|
15
|
+
* 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))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
* @applitools/nml-client bumped to 1.11.29
|
|
20
|
+
|
|
21
|
+
* @applitools/ec-client bumped to 1.12.31
|
|
22
|
+
|
|
23
|
+
* @applitools/core bumped to 4.64.0
|
|
24
|
+
#### Features
|
|
25
|
+
|
|
26
|
+
* 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))
|
|
27
|
+
* 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))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
#### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* 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))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
* @applitools/core-universal bumped to 1.0.17
|
|
37
|
+
|
|
38
|
+
|
|
3
39
|
## [3.60.2](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.60.1...js/eyes-cypress@3.60.2) (2026-05-26)
|
|
4
40
|
|
|
5
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-cypress",
|
|
3
|
-
"version": "3.60.
|
|
3
|
+
"version": "3.60.3",
|
|
4
4
|
"homepage": "https://applitools.com/tutorials/sdks/cypress",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"setup": "run --top-level xvfb:setup"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@applitools/core": "4.
|
|
56
|
-
"@applitools/core-universal": "1.0.
|
|
57
|
-
"@applitools/eyes": "1.
|
|
55
|
+
"@applitools/core": "4.64.0",
|
|
56
|
+
"@applitools/core-universal": "1.0.17",
|
|
57
|
+
"@applitools/eyes": "1.43.0",
|
|
58
58
|
"@applitools/functional-commons": "1.6.0",
|
|
59
59
|
"@applitools/logger": "2.2.12",
|
|
60
60
|
"@applitools/utils": "1.14.5",
|
package/types/expose.d.ts
CHANGED
|
@@ -680,6 +680,7 @@ export type CypressTestResultsSummary = { getAllResults(): Array<{ getTestResult
|
|
|
680
680
|
setNoneMatches(_noneMatches: number): void;
|
|
681
681
|
getUrl(): string;
|
|
682
682
|
setUrl(_url: string): void;
|
|
683
|
+
getIsAutoAcceptedInfraUpdate(): boolean;
|
|
683
684
|
isPassed(): boolean;
|
|
684
685
|
delete(): Promise<void>;
|
|
685
686
|
deleteSession(): Promise<void>;
|
|
@@ -793,6 +794,7 @@ export type CypressTestResultsSummary = { getAllResults(): Array<{ getTestResult
|
|
|
793
794
|
setNoneMatches(_noneMatches: number): void;
|
|
794
795
|
getUrl(): string;
|
|
795
796
|
setUrl(_url: string): void;
|
|
797
|
+
getIsAutoAcceptedInfraUpdate(): boolean;
|
|
796
798
|
isPassed(): boolean;
|
|
797
799
|
delete(): Promise<void>;
|
|
798
800
|
deleteSession(): Promise<void>;
|
|
@@ -907,6 +909,7 @@ export type CypressTestResults = Array<{
|
|
|
907
909
|
setNoneMatches(_noneMatches: number): void;
|
|
908
910
|
getUrl(): string;
|
|
909
911
|
setUrl(_url: string): void;
|
|
912
|
+
getIsAutoAcceptedInfraUpdate(): boolean;
|
|
910
913
|
isPassed(): boolean;
|
|
911
914
|
delete(): Promise<void>;
|
|
912
915
|
deleteSession(): Promise<void>;
|