@applitools/eyes-storybook 3.53.3 → 3.53.4
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 +17 -0
- package/package.json +3 -3
- package/src/eyesStorybook.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.53.4](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.53.3...js/eyes-storybook@3.53.4) (2025-01-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* increase number of retries to get stories ([8fb7d2a](https://github.com/Applitools-Dev/sdk/commit/8fb7d2acafdc75fec72fbe161cda5e9e839942eb))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/core bumped to 4.30.0
|
|
14
|
+
#### Features
|
|
15
|
+
|
|
16
|
+
* regions and coded regions with android NML ([#2735](https://github.com/Applitools-Dev/sdk/issues/2735)) ([be0f670](https://github.com/Applitools-Dev/sdk/commit/be0f6707336e1308423079f4895e6df044c9ebcd))
|
|
17
|
+
* @applitools/eyes bumped to 1.31.2
|
|
18
|
+
|
|
19
|
+
|
|
3
20
|
## [3.53.3](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.53.2...js/eyes-storybook@3.53.3) (2025-01-19)
|
|
4
21
|
|
|
5
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-storybook",
|
|
3
|
-
"version": "3.53.
|
|
3
|
+
"version": "3.53.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"up:framework": "cd test/fixtures/storybook-versions/${APPLITOOLS_FRAMEWORK_VERSION} && npm ci"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@applitools/core": "4.
|
|
57
|
+
"@applitools/core": "4.30.0",
|
|
58
58
|
"@applitools/driver": "1.20.3",
|
|
59
|
-
"@applitools/eyes": "1.31.
|
|
59
|
+
"@applitools/eyes": "1.31.2",
|
|
60
60
|
"@applitools/functional-commons": "1.6.0",
|
|
61
61
|
"@applitools/logger": "2.1.0",
|
|
62
62
|
"@applitools/monitoring-commons": "1.0.19",
|
package/src/eyesStorybook.js
CHANGED
|
@@ -23,7 +23,7 @@ const {extractEnvironment} = require('./extractEnvironment');
|
|
|
23
23
|
const {makeCore} = require('@applitools/core');
|
|
24
24
|
const makeGetStoriesWithConfig = require('./getStoriesWithConfig');
|
|
25
25
|
|
|
26
|
-
const MAX_RETRIES =
|
|
26
|
+
const MAX_RETRIES = 50;
|
|
27
27
|
const RETRY_INTERVAL = 1000;
|
|
28
28
|
|
|
29
29
|
async function eyesStorybook({
|