@applitools/eyes-storybook 3.50.6 → 3.50.7

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,53 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.50.7](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.50.6...js/eyes-storybook@3.50.7) (2024-07-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * support reloadPagePerStory ([#2438](https://github.com/Applitools-Dev/sdk/issues/2438)) ([df457af](https://github.com/Applitools-Dev/sdk/commit/df457afcaf60bf272eec5b868401a1a84c98fdd4))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/driver bumped to 1.18.0
14
+ #### Features
15
+
16
+ * disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
17
+
18
+
19
+ #### Bug Fixes
20
+
21
+ * executing web script on mobile environment ([#2380](https://github.com/Applitools-Dev/sdk/issues/2380)) ([da2e551](https://github.com/Applitools-Dev/sdk/commit/da2e551e01082d3cc21b9da5b43e6680233c080d))
22
+ * @applitools/spec-driver-webdriver bumped to 1.1.11
23
+
24
+ * @applitools/spec-driver-selenium bumped to 1.5.82
25
+
26
+ * @applitools/screenshoter bumped to 3.8.35
27
+
28
+ * @applitools/ufg-client bumped to 1.12.3
29
+ #### Bug Fixes
30
+
31
+ * update makeUploadResource to include apiKey in the cache key ([#2411](https://github.com/Applitools-Dev/sdk/issues/2411)) ([4114c58](https://github.com/Applitools-Dev/sdk/commit/4114c58ec16fa855374b23810cef1e36d4bb53a7))
32
+
33
+
34
+ #### Performance Improvements
35
+
36
+ * trim file content when logging it ([#2437](https://github.com/Applitools-Dev/sdk/issues/2437)) ([02ec1f7](https://github.com/Applitools-Dev/sdk/commit/02ec1f79a323af2e89a7428b75212707c761d1ca))
37
+ * @applitools/spec-driver-puppeteer bumped to 1.4.11
38
+
39
+ * @applitools/nml-client bumped to 1.8.9
40
+
41
+ * @applitools/ec-client bumped to 1.9.3
42
+
43
+ * @applitools/core bumped to 4.18.0
44
+ #### Features
45
+
46
+ * disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
47
+
48
+
49
+
50
+
3
51
  ## [3.50.6](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.50.5...js/eyes-storybook@3.50.6) (2024-06-26)
4
52
 
5
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-storybook",
3
- "version": "3.50.6",
3
+ "version": "3.50.7",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "applitools",
@@ -54,13 +54,13 @@
54
54
  "up:framework": "cd test/fixtures/storybook-versions/${APPLITOOLS_FRAMEWORK_VERSION} && npm ci"
55
55
  },
56
56
  "dependencies": {
57
- "@applitools/core": "4.17.0",
58
- "@applitools/driver": "1.17.5",
57
+ "@applitools/core": "4.18.0",
58
+ "@applitools/driver": "1.18.0",
59
59
  "@applitools/functional-commons": "1.6.0",
60
60
  "@applitools/logger": "2.0.18",
61
61
  "@applitools/monitoring-commons": "1.0.19",
62
- "@applitools/spec-driver-puppeteer": "1.4.10",
63
- "@applitools/ufg-client": "1.12.2",
62
+ "@applitools/spec-driver-puppeteer": "1.4.11",
63
+ "@applitools/ufg-client": "1.12.3",
64
64
  "@applitools/utils": "1.7.4",
65
65
  "boxen": "4.2.0",
66
66
  "chalk": "3.0.0",
@@ -173,13 +173,13 @@ async function eyesStorybook({
173
173
  const getStoryData = makeGetStoryData({
174
174
  logger,
175
175
  takeDomSnapshots: doTakeDomSnapshots,
176
+ reloadPagePerStory,
176
177
  });
177
178
  const renderStory = makeRenderStory({
178
179
  logger: logger.extend({label: 'renderStory'}),
179
180
  openEyes: manager.openEyes,
180
181
  performance,
181
182
  timeItAsync,
182
- reloadPagePerStory,
183
183
  storyDataGap: config.storyDataGap,
184
184
  concurrency: config.testConcurrency,
185
185
  appName: config.appName,