@applitools/eyes-storybook 3.52.3 → 3.52.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,55 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.52.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.52.4...js/eyes-storybook@3.52.5) (2024-12-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * saveNewTests should be respected ([#2665](https://github.com/Applitools-Dev/sdk/issues/2665)) ([786ca54](https://github.com/Applitools-Dev/sdk/commit/786ca54d549a948b62fefc7bc0a80b3061dc130a))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/ufg-client bumped to 1.15.0
14
+ #### Features
15
+
16
+ * deterministic output for offline mode ([#2666](https://github.com/Applitools-Dev/sdk/issues/2666)) ([0e158c4](https://github.com/Applitools-Dev/sdk/commit/0e158c4ea62c4681513a952a9e2a681c4618a6bd))
17
+ * @applitools/core-base bumped to 1.20.0
18
+ #### Features
19
+
20
+ * deterministic output for offline mode ([#2666](https://github.com/Applitools-Dev/sdk/issues/2666)) ([0e158c4](https://github.com/Applitools-Dev/sdk/commit/0e158c4ea62c4681513a952a9e2a681c4618a6bd))
21
+ * @applitools/ec-client bumped to 1.9.16
22
+
23
+ * @applitools/core bumped to 4.26.0
24
+ #### Features
25
+
26
+ * deterministic output for offline mode ([#2666](https://github.com/Applitools-Dev/sdk/issues/2666)) ([0e158c4](https://github.com/Applitools-Dev/sdk/commit/0e158c4ea62c4681513a952a9e2a681c4618a6bd))
27
+
28
+
29
+ #### Bug Fixes
30
+
31
+ * coded regions dynamic regions with `By` locators ([#2660](https://github.com/Applitools-Dev/sdk/issues/2660)) ([e71b3ae](https://github.com/Applitools-Dev/sdk/commit/e71b3aec7241e61c9ba0d637e6242cedd8f4be7b))
32
+
33
+
34
+
35
+ * @applitools/eyes bumped to 1.29.2
36
+
37
+
38
+ ## [3.52.4](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.52.3...js/eyes-storybook@3.52.4) (2024-11-29)
39
+
40
+
41
+ ### Bug Fixes
42
+
43
+ * storybook dependency on eyes ([40670aa](https://github.com/Applitools-Dev/sdk/commit/40670aa8cd1ebf2a66bd2e68bef9be9855cada2e))
44
+
45
+
46
+ ### Dependencies
47
+
48
+ * @applitools/eyes bumped to 1.29.1
49
+ #### Bug Fixes
50
+
51
+ * offline cli chalk error ([c7c659a](https://github.com/Applitools-Dev/sdk/commit/c7c659aa889080f2fc7763152db2447211fe1487))
52
+
3
53
  ## [3.52.3](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.52.2...js/eyes-storybook@3.52.3) (2024-11-29)
4
54
 
5
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-storybook",
3
- "version": "3.52.3",
3
+ "version": "3.52.5",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "applitools",
@@ -54,14 +54,14 @@
54
54
  "up:framework": "cd test/fixtures/storybook-versions/${APPLITOOLS_FRAMEWORK_VERSION} && npm ci"
55
55
  },
56
56
  "dependencies": {
57
- "@applitools/core": "4.25.0",
58
- "@applitools/eyes": "workdpace:*",
57
+ "@applitools/core": "4.26.0",
59
58
  "@applitools/driver": "1.20.0",
59
+ "@applitools/eyes": "1.29.2",
60
60
  "@applitools/functional-commons": "1.6.0",
61
61
  "@applitools/logger": "2.0.19",
62
62
  "@applitools/monitoring-commons": "1.0.19",
63
63
  "@applitools/spec-driver-puppeteer": "1.4.20",
64
- "@applitools/ufg-client": "1.14.1",
64
+ "@applitools/ufg-client": "1.15.0",
65
65
  "@applitools/utils": "1.7.5",
66
66
  "boxen": "4.2.0",
67
67
  "chalk": "3.0.0",
@@ -159,10 +159,6 @@ async function eyesStorybook({
159
159
  storyDataGap: config.storyDataGap,
160
160
  concurrency: config.testConcurrency,
161
161
  appName: config.appName,
162
- closeSettings: {
163
- updateBaselineIfNew: config.saveNewTests,
164
- updateBaselineIfDifferent: config.saveFailedTests,
165
- },
166
162
  serverSettings: account.eyesServer,
167
163
  });
168
164
 
@@ -9,7 +9,6 @@ function makeRenderStory({
9
9
  timeItAsync,
10
10
  storyDataGap,
11
11
  appName,
12
- closeSettings,
13
12
  serverSettings,
14
13
  }) {
15
14
  const throttle = throat(storyDataGap);
@@ -30,7 +29,7 @@ function makeRenderStory({
30
29
  if (snapshots) {
31
30
  await eyes.checkAndClose({
32
31
  target: snapshots,
33
- settings: {...checkParams, ...closeSettings},
32
+ settings: checkParams,
34
33
  });
35
34
  const results = await eyes.getResults();
36
35
  resolve(results);
@@ -9,6 +9,8 @@ function mergeConfigs({config, settings}) {
9
9
  settings.disableBrowserFetching !== undefined
10
10
  ? settings.disableBrowserFetching
11
11
  : config.disableBrowserFetching,
12
+ updateBaselineIfNew: config.saveNewTests,
13
+ updateBaselineIfDifferent: config.saveFailedTests,
12
14
  };
13
15
  }
14
16