@applitools/eyes-storybook 3.55.4 → 3.55.5

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,43 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.55.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.55.4...js/eyes-storybook@3.55.5) (2025-04-29)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * ios device version not populating correctly | FLD-2861 ([#2925](https://github.com/Applitools-Dev/sdk/issues/2925)) ([c614462](https://github.com/Applitools-Dev/sdk/commit/c61446274da75a97dcd0b53c8b40db9ba5a034c3))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/dom-snapshot bumped to 4.11.19
14
+
15
+ * @applitools/driver bumped to 1.21.2
16
+ #### Bug Fixes
17
+
18
+ * not properly detected platform if written with underscore | FLD-2892 ([#2934](https://github.com/Applitools-Dev/sdk/issues/2934)) ([5ca4eb9](https://github.com/Applitools-Dev/sdk/commit/5ca4eb9d952cb089b7b3678d0d6f242ac7f9dad5))
19
+ * @applitools/spec-driver-webdriver bumped to 1.2.3
20
+
21
+ * @applitools/spec-driver-selenium bumped to 1.5.99
22
+
23
+ * @applitools/spec-driver-puppeteer bumped to 1.4.28
24
+
25
+ * @applitools/screenshoter bumped to 3.11.2
26
+
27
+ * @applitools/nml-client bumped to 1.9.2
28
+
29
+ * @applitools/ec-client bumped to 1.10.10
30
+
31
+ * @applitools/core bumped to 4.37.1
32
+ #### Bug Fixes
33
+
34
+ * handle slashes in branch name extraction from GITHUB_REF ([#2937](https://github.com/Applitools-Dev/sdk/issues/2937)) ([aa8bfa3](https://github.com/Applitools-Dev/sdk/commit/aa8bfa3118f43c52485362f729556acceea40ac6))
35
+
36
+
37
+
38
+ * @applitools/eyes bumped to 1.34.1
39
+
40
+
3
41
  ## [3.55.4](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.55.3...js/eyes-storybook@3.55.4) (2025-04-17)
4
42
 
5
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-storybook",
3
- "version": "3.55.4",
3
+ "version": "3.55.5",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "applitools",
@@ -11,7 +11,7 @@
11
11
  "nodejs",
12
12
  "javascript"
13
13
  ],
14
- "homepage": "https://applitools.com/docs/api-ref/sdk-api/storybook/",
14
+ "homepage": "https://applitools.com/tutorials/sdks/storybook",
15
15
  "license": "SEE LICENSE IN LICENSE",
16
16
  "author": "Applitools Team <team@applitools.com>",
17
17
  "bin": "./bin/eyes-storybook.js",
@@ -53,13 +53,13 @@
53
53
  "up:framework": "cd test/fixtures/storybook-versions/${APPLITOOLS_FRAMEWORK_VERSION} && npm ci"
54
54
  },
55
55
  "dependencies": {
56
- "@applitools/core": "4.37.0",
57
- "@applitools/driver": "1.21.1",
58
- "@applitools/eyes": "1.34.0",
56
+ "@applitools/core": "4.37.1",
57
+ "@applitools/driver": "1.21.2",
58
+ "@applitools/eyes": "1.34.1",
59
59
  "@applitools/functional-commons": "1.6.0",
60
60
  "@applitools/logger": "2.1.2",
61
61
  "@applitools/monitoring-commons": "1.0.19",
62
- "@applitools/spec-driver-puppeteer": "1.4.27",
62
+ "@applitools/spec-driver-puppeteer": "1.4.28",
63
63
  "@applitools/ufg-client": "1.16.9",
64
64
  "@applitools/utils": "1.8.0",
65
65
  "boxen": "4.2.0",
@@ -95,11 +95,13 @@ function transformBrowser(result) {
95
95
  result.environments = result.browser.map(browser => {
96
96
  if (browser.deviceName) {
97
97
  return {chromeEmulationInfo: browser};
98
+ } else if (utils.types.has(browser, 'iosDeviceInfo')) {
99
+ const {iosVersion, ...iosDeviceInfo} = browser.iosDeviceInfo;
100
+ return {iosDeviceInfo: {...iosDeviceInfo, version: iosVersion ?? iosDeviceInfo.version}};
98
101
  } else if (!browser.name) {
99
102
  return {...browser, name: 'chrome'};
100
- } else {
101
- return browser;
102
103
  }
104
+ return browser;
103
105
  });
104
106
  }
105
107
  delete result.browser;