@applitools/core 4.32.2 → 4.33.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,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.33.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.32.2...js/core@4.33.0) (2025-03-13)
4
+
5
+
6
+ ### Features
7
+
8
+ * 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))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/spec-driver-webdriver bumped to 1.2.0
14
+ #### Features
15
+
16
+ * 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))
17
+ * @applitools/screenshoter bumped to 3.10.7
18
+
19
+ * @applitools/nml-client bumped to 1.8.26
20
+
21
+ * @applitools/ec-client bumped to 1.10.6
22
+
23
+
3
24
  ## [4.32.2](https://github.com/Applitools-Dev/sdk/compare/js/core@4.32.1...js/core@4.32.2) (2025-03-06)
4
25
 
5
26
 
@@ -29,7 +29,8 @@ function populateEyesServerSettings(settings) {
29
29
  var _a, _b, _c, _d, _e, _f;
30
30
  (_a = settings.eyesServerUrl) !== null && _a !== void 0 ? _a : (settings.eyesServerUrl = (_c = (_b = utils.general.getEnvValue('EYES_SERVER_URL')) !== null && _b !== void 0 ? _b : utils.general.getEnvValue('SERVER_URL')) !== null && _c !== void 0 ? _c : 'https://eyesapi.applitools.com');
31
31
  (_d = settings.apiKey) !== null && _d !== void 0 ? _d : (settings.apiKey = utils.general.getEnvValue('API_KEY'));
32
- (_e = settings.proxy) !== null && _e !== void 0 ? _e : (settings.proxy = utils.general.getEnvValue('PROXY_URL') ? { url: utils.general.getEnvValue('PROXY_URL') } : undefined);
32
+ const proxyUrl = utils.general.getEnvValue('PROXY_URL');
33
+ (_e = settings.proxy) !== null && _e !== void 0 ? _e : (settings.proxy = proxyUrl ? { url: proxyUrl } : undefined);
33
34
  (_f = settings.useDnsCache) !== null && _f !== void 0 ? _f : (settings.useDnsCache = utils.general.getEnvValue('USE_DNS_CACHE', 'boolean'));
34
35
  return {
35
36
  eyesServerUrl: settings.eyesServerUrl,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "4.32.2",
3
+ "version": "4.33.0",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -79,14 +79,14 @@
79
79
  "@applitools/dom-capture": "11.5.4",
80
80
  "@applitools/dom-snapshot": "4.11.16",
81
81
  "@applitools/driver": "1.20.5",
82
- "@applitools/ec-client": "1.10.5",
82
+ "@applitools/ec-client": "1.10.6",
83
83
  "@applitools/logger": "2.1.1",
84
- "@applitools/nml-client": "1.8.25",
84
+ "@applitools/nml-client": "1.8.26",
85
85
  "@applitools/req": "1.7.8",
86
- "@applitools/screenshoter": "3.10.6",
86
+ "@applitools/screenshoter": "3.10.7",
87
87
  "@applitools/snippets": "2.6.4",
88
88
  "@applitools/socket": "1.2.2",
89
- "@applitools/spec-driver-webdriver": "1.1.26",
89
+ "@applitools/spec-driver-webdriver": "1.2.0",
90
90
  "@applitools/ufg-client": "1.16.7",
91
91
  "@applitools/utils": "1.7.8",
92
92
  "@types/ws": "8.5.5",