@applitools/eyes-storybook 3.64.12 → 3.64.13

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,49 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.64.13](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.64.12...js/eyes-storybook@3.64.13) (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/eyes bumped to 1.39.0
20
+ #### Features
21
+
22
+ * 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))
23
+
24
+
25
+
26
+ * @applitools/nml-client bumped to 1.11.25
27
+
28
+ * @applitools/tunnel-client bumped to 1.11.11
29
+
30
+ * @applitools/ufg-client bumped to 1.21.0
31
+ #### Features
32
+
33
+ * 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))
34
+
35
+
36
+
37
+ * @applitools/ec-client bumped to 1.12.26
38
+
39
+ * @applitools/core bumped to 4.60.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
+
3
47
  ## [3.64.12](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.64.11...js/eyes-storybook@3.64.12) (2026-04-16)
4
48
 
5
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-storybook",
3
- "version": "3.64.12",
3
+ "version": "3.64.13",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "applitools",
@@ -59,14 +59,14 @@
59
59
  "up:framework": "cd test/fixtures/storybook-versions/${APPLITOOLS_FRAMEWORK_VERSION} && npm ci"
60
60
  },
61
61
  "dependencies": {
62
- "@applitools/core": "4.59.3",
62
+ "@applitools/core": "4.60.0",
63
63
  "@applitools/driver": "1.25.5",
64
- "@applitools/eyes": "1.38.15",
64
+ "@applitools/eyes": "1.39.0",
65
65
  "@applitools/functional-commons": "1.6.0",
66
66
  "@applitools/logger": "2.2.11",
67
67
  "@applitools/monitoring-commons": "1.0.19",
68
68
  "@applitools/spec-driver-puppeteer": "1.7.5",
69
- "@applitools/ufg-client": "1.20.3",
69
+ "@applitools/ufg-client": "1.21.0",
70
70
  "@applitools/utils": "1.14.4",
71
71
  "@inquirer/prompts": "7.0.1",
72
72
  "boxen": "4.2.0",
@@ -143,8 +143,10 @@ function transformLayoutBreakpoints(result) {
143
143
  utils.types.isBoolean(result.layoutBreakpoints) ||
144
144
  utils.types.isArray(result.layoutBreakpoints)
145
145
  ) {
146
+ // Normalize shorthand forms to canonical object shape
146
147
  result.layoutBreakpoints = {breakpoints: result.layoutBreakpoints};
147
148
  }
149
+ // Object forms ({breakpoints, reload?, heightBreakpoints?}) are already canonical and pass through as-is
148
150
  }
149
151
 
150
152
  module.exports = {generateConfig, transformConfig};