@applitools/eyes-cypress 3.60.8 → 3.60.9

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 CHANGED
@@ -1,5 +1,35 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.60.9](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.60.8...js/eyes-cypress@3.60.9) (2026-07-08)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/core-base bumped to 1.36.1
9
+ #### Bug Fixes
10
+
11
+ * forward Exact match-level tuning to the server across JS + Java | FLD-4685 ([#3974](https://github.com/Applitools-Dev/sdk/issues/3974)) ([fea351c](https://github.com/Applitools-Dev/sdk/commit/fea351c76c80f63bf658d9573b3d34e0537e0cce))
12
+ * @applitools/eyes bumped to 1.43.6
13
+ #### Bug Fixes
14
+
15
+ * forward Exact match-level tuning to the server across JS + Java | FLD-4685 ([#3974](https://github.com/Applitools-Dev/sdk/issues/3974)) ([fea351c](https://github.com/Applitools-Dev/sdk/commit/fea351c76c80f63bf658d9573b3d34e0537e0cce))
16
+
17
+
18
+
19
+ * @applitools/nml-client bumped to 1.11.35
20
+
21
+ * @applitools/ec-client bumped to 1.12.37
22
+
23
+ * @applitools/core bumped to 4.66.1
24
+ #### Bug Fixes
25
+
26
+ * stop UFG old-infra retry after a retry fails | AD-14675 ([#3970](https://github.com/Applitools-Dev/sdk/issues/3970)) ([1531893](https://github.com/Applitools-Dev/sdk/commit/1531893cc9c098f3ade329ceae7164600c184fa5))
27
+
28
+
29
+
30
+ * @applitools/core-universal bumped to 1.0.23
31
+
32
+
3
33
  ## [3.60.8](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.60.7...js/eyes-cypress@3.60.8) (2026-06-28)
4
34
 
5
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-cypress",
3
- "version": "3.60.8",
3
+ "version": "3.60.9",
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.66.0",
56
- "@applitools/core-universal": "1.0.22",
57
- "@applitools/eyes": "1.43.5",
55
+ "@applitools/core": "4.66.1",
56
+ "@applitools/core-universal": "1.0.23",
57
+ "@applitools/eyes": "1.43.6",
58
58
  "@applitools/functional-commons": "1.6.0",
59
59
  "@applitools/logger": "2.3.0",
60
60
  "@applitools/utils": "1.15.1",
package/types/expose.d.ts CHANGED
@@ -123,6 +123,7 @@ export type CypressCheckSettings = {
123
123
  name?: string;
124
124
  region?: LegacyRegion;
125
125
  matchLevel?: "None" | "Layout1" | "Layout" | "Layout2" | "Content" | "IgnoreColors" | "Strict" | "Dynamic" | "Exact";
126
+ exact?: { minDiffIntensity?: number; minDiffWidth?: number; minDiffHeight?: number; matchThreshold?: number; };
126
127
  useDom?: boolean;
127
128
  sendDom?: boolean;
128
129
  enablePatterns?: boolean;
@@ -296,7 +297,7 @@ export type CypressEyesConfig = {
296
297
  cut?: { top: number; right: number; bottom: number; left: number; } | { x: number; y: number; width: number; height: number; };
297
298
  debugScreenshots?: { save: boolean; path?: string; prefix?: string; };
298
299
  defaultMatchSettings?: {
299
- exact?: { minDiffIntensity: number; minDiffWidth: number; minDiffHeight: number; matchThreshold: number; };
300
+ exact?: { minDiffIntensity?: number; minDiffWidth?: number; minDiffHeight?: number; matchThreshold?: number; };
300
301
  matchLevel?: "None" | "Layout1" | "Layout" | "Layout2" | "Content" | "IgnoreColors" | "Strict" | "Dynamic" | "Exact";
301
302
  ignoreCaret?: boolean;
302
303
  useDom?: boolean;
@@ -447,7 +448,7 @@ export type appliConfFile = {
447
448
  cut?: { top: number; right: number; bottom: number; left: number; } | { x: number; y: number; width: number; height: number; };
448
449
  debugScreenshots?: { save: boolean; path?: string; prefix?: string; };
449
450
  defaultMatchSettings?: {
450
- exact?: { minDiffIntensity: number; minDiffWidth: number; minDiffHeight: number; matchThreshold: number; };
451
+ exact?: { minDiffIntensity?: number; minDiffWidth?: number; minDiffHeight?: number; matchThreshold?: number; };
451
452
  matchLevel?: "None" | "Layout1" | "Layout" | "Layout2" | "Content" | "IgnoreColors" | "Strict" | "Dynamic" | "Exact";
452
453
  ignoreCaret?: boolean;
453
454
  useDom?: boolean;