@applitools/eyes-storybook 3.58.3 → 3.59.0
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/generateConfig.js +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.59.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.58.3...js/eyes-storybook@3.59.0) (2025-09-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update default concurrency ([#3230](https://github.com/Applitools-Dev/sdk/issues/3230)) ([f548cda](https://github.com/Applitools-Dev/sdk/commit/f548cda77d74b68890abc7c53f566b145e6484ba))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/core bumped to 4.47.0
|
|
14
|
+
#### Features
|
|
15
|
+
|
|
16
|
+
* update default concurrency ([#3230](https://github.com/Applitools-Dev/sdk/issues/3230)) ([f548cda](https://github.com/Applitools-Dev/sdk/commit/f548cda77d74b68890abc7c53f566b145e6484ba))
|
|
17
|
+
* @applitools/eyes bumped to 1.36.6
|
|
18
|
+
|
|
19
|
+
|
|
3
20
|
## [3.58.3](https://github.com/Applitools-Dev/sdk/compare/js/eyes-storybook@3.58.2...js/eyes-storybook@3.58.3) (2025-09-09)
|
|
4
21
|
|
|
5
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-storybook",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.59.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"up:framework": "cd test/fixtures/storybook-versions/${APPLITOOLS_FRAMEWORK_VERSION} && npm ci"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@applitools/core": "4.
|
|
61
|
+
"@applitools/core": "4.47.0",
|
|
62
62
|
"@applitools/driver": "1.23.4",
|
|
63
|
-
"@applitools/eyes": "1.36.
|
|
63
|
+
"@applitools/eyes": "1.36.6",
|
|
64
64
|
"@applitools/functional-commons": "1.6.0",
|
|
65
65
|
"@applitools/logger": "2.2.3",
|
|
66
66
|
"@applitools/monitoring-commons": "1.0.19",
|
package/src/generateConfig.js
CHANGED
|
@@ -4,7 +4,8 @@ const utils = require('@applitools/utils');
|
|
|
4
4
|
const {resolve} = require('path');
|
|
5
5
|
const {deprecationWarning} = require('./errMessages');
|
|
6
6
|
const uniq = require('./uniq');
|
|
7
|
-
const
|
|
7
|
+
const {DEFAULT_CONCURRENCY} = require('@applitools/core');
|
|
8
|
+
const MAX_DATA_GAP = DEFAULT_CONCURRENCY * 2;
|
|
8
9
|
|
|
9
10
|
function generateConfig({argv = {}, defaultConfig = {}, externalConfigParams = []}) {
|
|
10
11
|
const defaultConfigParams = Object.keys(defaultConfig);
|
|
@@ -48,7 +49,7 @@ function generateConfig({argv = {}, defaultConfig = {}, externalConfigParams = [
|
|
|
48
49
|
? result.testConcurrency
|
|
49
50
|
: utils.types.isInteger(result.concurrency)
|
|
50
51
|
? result.concurrency * 5
|
|
51
|
-
:
|
|
52
|
+
: DEFAULT_CONCURRENCY;
|
|
52
53
|
|
|
53
54
|
result.eyesServerUrl = result.serverUrl;
|
|
54
55
|
|