@applitools/eyes 1.32.5 → 1.32.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,39 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.32.7](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.32.6...js/eyes@1.32.7) (2025-03-13)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/spec-driver-webdriver bumped to 1.2.0
9
+ #### Features
10
+
11
+ * support HTTPS_PROXY and HTTP_PROXY environment variables ([#2795](https://github.com/Applitools-Dev/sdk/issues/2795)) ([226ae08](https://github.com/Applitools-Dev/sdk/commit/226ae08627381a1212df8b938c6576e82c777914))
12
+ * @applitools/screenshoter bumped to 3.10.7
13
+
14
+ * @applitools/nml-client bumped to 1.8.26
15
+
16
+ * @applitools/ec-client bumped to 1.10.6
17
+
18
+ * @applitools/core bumped to 4.33.0
19
+ #### Features
20
+
21
+ * support HTTPS_PROXY and HTTP_PROXY environment variables ([#2795](https://github.com/Applitools-Dev/sdk/issues/2795)) ([226ae08](https://github.com/Applitools-Dev/sdk/commit/226ae08627381a1212df8b938c6576e82c777914))
22
+
23
+
24
+
25
+
26
+ ## [1.32.6](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.32.5...js/eyes@1.32.6) (2025-03-06)
27
+
28
+
29
+ ### Dependencies
30
+
31
+ * @applitools/core bumped to 4.32.2
32
+ #### Bug Fixes
33
+
34
+ * add environment variable aliases (_NAME suffix) ([#2791](https://github.com/Applitools-Dev/sdk/issues/2791)) ([67501a4](https://github.com/Applitools-Dev/sdk/commit/67501a4f5491319ca62949a56ee03face08a59e5))
35
+ * support test concurrency in offline mode ([#2831](https://github.com/Applitools-Dev/sdk/issues/2831)) ([3b7d137](https://github.com/Applitools-Dev/sdk/commit/3b7d137a9b34bb5c564e0a5c7d3fb2520ef8a167))
36
+
3
37
  ## [1.32.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.32.4...js/eyes@1.32.5) (2025-03-04)
4
38
 
5
39
 
package/dist/SDK.js CHANGED
@@ -27,8 +27,10 @@ exports.getCoreWithCache = exports.initSDK = void 0;
27
27
  const core_1 = require("@applitools/core");
28
28
  const utils = __importStar(require("@applitools/utils"));
29
29
  function initSDK(options, maskLog) {
30
- if (options)
30
+ if (options) {
31
31
  options.maskLog = maskLog;
32
+ options.offlineLocationPath = utils.general.getEnvValue('OFFLINE_LOCATION_PATH');
33
+ }
32
34
  return {
33
35
  core: (0, exports.getCoreWithCache)(options),
34
36
  spec: options === null || options === void 0 ? void 0 : options.spec,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.32.5",
3
+ "version": "1.32.7",
4
4
  "keywords": [
5
5
  "applitools",
6
6
  "eyes",
@@ -46,7 +46,7 @@
46
46
  "test": "run --top-level mocha './test/**/*.spec.ts'"
47
47
  },
48
48
  "dependencies": {
49
- "@applitools/core": "4.32.1",
49
+ "@applitools/core": "4.33.0",
50
50
  "@applitools/logger": "2.1.1",
51
51
  "@applitools/utils": "1.7.8",
52
52
  "chalk": "4.1.2"
package/types/SDK.d.ts CHANGED
@@ -4,6 +4,7 @@ export interface SDK<TSpec extends SpecType = SpecType> {
4
4
  agentId?: string;
5
5
  environment?: Record<string, any>;
6
6
  maskLog?: boolean;
7
+ offlineLocationPath?: string;
7
8
  makeCore?: typeof makeDefaultCore;
8
9
  }
9
10
  export declare function initSDK<TSpec extends SpecType = SpecType>(options?: SDK<TSpec>, maskLog?: boolean): {