@applitools/core 2.4.1 → 2.4.2

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.4.2 - 2023/3/17
6
+
7
+ ### Features
8
+ ### Bug fixes
9
+ - Fixed issue with concurrency of the renders in ufg mode
10
+
5
11
  ## 2.4.1 - 2023/3/17
6
12
 
7
13
  ### Features
@@ -36,8 +36,8 @@ function makeMakeManager({ spec, concurrency: defaultConcurrency = utils.general
36
36
  concurrency !== null && concurrency !== void 0 ? concurrency : (concurrency = utils.types.isInteger(legacyConcurrency) ? legacyConcurrency * 5 : 5);
37
37
  batch !== null && batch !== void 0 ? batch : (batch = {});
38
38
  (_a = batch.id) !== null && _a !== void 0 ? _a : (batch.id = (_b = utils.general.getEnvValue('BATCH_ID')) !== null && _b !== void 0 ? _b : `generated-${utils.general.guid()}`);
39
- base !== null && base !== void 0 ? base : (base = (0, core_base_1.makeCore)({ agentId, cwd, logger }));
40
- const cores = { ufg: (0, core_2.makeCore)({ spec, base, concurrency, logger }), classic: (0, core_1.makeCore)({ spec, base, logger }) };
39
+ base !== null && base !== void 0 ? base : (base = (0, core_base_1.makeCore)({ agentId, concurrency, cwd, logger }));
40
+ const cores = { ufg: (0, core_2.makeCore)({ spec, base, logger }), classic: (0, core_1.makeCore)({ spec, base, logger }) };
41
41
  const storage = [];
42
42
  return {
43
43
  openEyes: utils.general.wrap((0, open_eyes_1.makeOpenEyes)({ type, batch, spec, core, cores, logger }), async (openEyes, options) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "2.4.1",
3
+ "version": "2.4.2",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"