@applitools/eyes-cypress 3.58.15 → 3.58.16

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,51 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.58.16](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.58.15...js/eyes-cypress@3.58.16) (2026-04-23)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/req bumped to 1.10.0
9
+ #### Features
10
+
11
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
12
+ * @applitools/core-base bumped to 1.33.0
13
+ #### Features
14
+
15
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
16
+
17
+
18
+
19
+ * @applitools/nml-client bumped to 1.11.25
20
+
21
+ * @applitools/tunnel-client bumped to 1.11.11
22
+
23
+ * @applitools/ufg-client bumped to 1.21.0
24
+ #### Features
25
+
26
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
27
+
28
+
29
+
30
+ * @applitools/ec-client bumped to 1.12.26
31
+
32
+ * @applitools/core bumped to 4.60.0
33
+ #### Features
34
+
35
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
36
+
37
+
38
+
39
+ * @applitools/eyes bumped to 1.39.0
40
+ #### Features
41
+
42
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
43
+
44
+
45
+
46
+ * @applitools/core-universal bumped to 1.0.11
47
+
48
+
3
49
  ## [3.58.15](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.58.14...js/eyes-cypress@3.58.15) (2026-04-16)
4
50
 
5
51
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-cypress",
3
- "version": "3.58.15",
3
+ "version": "3.58.16",
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.59.3",
56
- "@applitools/core-universal": "1.0.10",
57
- "@applitools/eyes": "1.38.15",
55
+ "@applitools/core": "4.60.0",
56
+ "@applitools/core-universal": "1.0.11",
57
+ "@applitools/eyes": "1.39.0",
58
58
  "@applitools/functional-commons": "1.6.0",
59
59
  "@applitools/logger": "2.2.11",
60
60
  "@applitools/utils": "1.14.4",
package/types/expose.d.ts CHANGED
@@ -378,7 +378,7 @@ export type CypressEyesConfig = {
378
378
  ignoreDisplacements?: boolean;
379
379
  ignoreGitMergeBase?: boolean;
380
380
  isDisabled?: boolean;
381
- layoutBreakpoints?: boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: boolean; };
381
+ layoutBreakpoints?: boolean | Array<number> | { breakpoints: boolean | Array<number>; heightBreakpoints?: boolean; reload?: boolean; };
382
382
  matchLevel?: "None" | "Layout1" | "Layout" | "Layout2" | "Content" | "IgnoreColors" | "Strict" | "Dynamic" | "Exact";
383
383
  matchTimeout?: number;
384
384
  mobileOptions?: { keepNavigationBar?: boolean; };
@@ -527,7 +527,7 @@ export type appliConfFile = {
527
527
  ignoreDisplacements?: boolean;
528
528
  ignoreGitMergeBase?: boolean;
529
529
  isDisabled?: boolean;
530
- layoutBreakpoints?: boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: boolean; };
530
+ layoutBreakpoints?: boolean | Array<number> | { breakpoints: boolean | Array<number>; heightBreakpoints?: boolean; reload?: boolean; };
531
531
  matchLevel?: "None" | "Layout1" | "Layout" | "Layout2" | "Content" | "IgnoreColors" | "Strict" | "Dynamic" | "Exact";
532
532
  matchTimeout?: number;
533
533
  mobileOptions?: { keepNavigationBar?: boolean; };