@applitools/eyes-cypress 3.54.5 → 3.55.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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.55.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.54.5...js/eyes-cypress@3.55.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.54.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.54.4...js/eyes-cypress@3.54.5) (2025-09-09)
4
21
 
5
22
 
@@ -26,9 +26,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
26
26
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
27
  };
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
+ const core_1 = require("@applitools/core");
29
30
  const utils = __importStar(require("@applitools/utils"));
30
31
  const configParams_1 = __importDefault(require("./configParams"));
31
- const DEFAULT_TEST_CONCURRENCY = 5;
32
32
  const uuid = __importStar(require("uuid"));
33
33
  function makeConfig() {
34
34
  const config = utils.config.getConfig({
@@ -69,7 +69,7 @@ function makeConfig() {
69
69
  eyesLayoutBreakpoints: JSON.stringify(config.layoutBreakpoints),
70
70
  eyesFailCypressOnDiff: config.failCypressOnDiff === undefined ? true : !!config.failCypressOnDiff,
71
71
  eyesDisableBrowserFetching: !!config.disableBrowserFetching,
72
- eyesTestConcurrency: config.testConcurrency || DEFAULT_TEST_CONCURRENCY,
72
+ eyesTestConcurrency: config.testConcurrency || core_1.DEFAULT_CONCURRENCY,
73
73
  eyesWaitBeforeCapture: config.waitBeforeCapture,
74
74
  eyesRemoveDuplicateTests: !!config.removeDuplicateTests,
75
75
  universalDebug: !!config.universalDebug,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-cypress",
3
- "version": "3.54.5",
3
+ "version": "3.55.0",
4
4
  "homepage": "https://applitools.com/tutorials/sdks/cypress",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "main": "./index.js",
@@ -52,8 +52,8 @@
52
52
  "setup": "run --top-level xvfb:setup"
53
53
  },
54
54
  "dependencies": {
55
- "@applitools/core": "4.46.0",
56
- "@applitools/eyes": "1.36.5",
55
+ "@applitools/core": "4.47.0",
56
+ "@applitools/eyes": "1.36.6",
57
57
  "@applitools/functional-commons": "1.6.0",
58
58
  "@applitools/logger": "2.2.3",
59
59
  "@applitools/utils": "1.12.0",
@@ -1,6 +1,6 @@
1
+ import {DEFAULT_CONCURRENCY} from '@applitools/core'
1
2
  import * as utils from '@applitools/utils'
2
3
  import configParams from './configParams'
3
- const DEFAULT_TEST_CONCURRENCY = 5
4
4
  import * as uuid from 'uuid'
5
5
  import {type EyesPluginConfig} from './'
6
6
 
@@ -49,7 +49,7 @@ export default function makeConfig(): {config: any; eyesConfig: EyesPluginConfig
49
49
  eyesLayoutBreakpoints: JSON.stringify(config.layoutBreakpoints),
50
50
  eyesFailCypressOnDiff: config.failCypressOnDiff === undefined ? true : !!config.failCypressOnDiff,
51
51
  eyesDisableBrowserFetching: !!config.disableBrowserFetching,
52
- eyesTestConcurrency: config.testConcurrency || DEFAULT_TEST_CONCURRENCY,
52
+ eyesTestConcurrency: config.testConcurrency || DEFAULT_CONCURRENCY,
53
53
  eyesWaitBeforeCapture: config.waitBeforeCapture,
54
54
  eyesRemoveDuplicateTests: !!config.removeDuplicateTests,
55
55
  universalDebug: !!config.universalDebug,