@applitools/core 4.27.0 → 4.27.1

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,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.27.1](https://github.com/Applitools-Dev/sdk/compare/js/core@4.27.0...js/core@4.27.1) (2024-12-22)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add env variable for universal host name to use different conventions of localhost ([#2689](https://github.com/Applitools-Dev/sdk/issues/2689)) ([24d6713](https://github.com/Applitools-Dev/sdk/commit/24d671313dba0bba00e2f86875920e0431cf1234))
9
+ * add regions round up to the client set regions as well coded one ([#2413](https://github.com/Applitools-Dev/sdk/issues/2413)) ([85d4d2d](https://github.com/Applitools-Dev/sdk/commit/85d4d2ddd0166802c7ca9a5c11a1f52962284a5b))
10
+
11
+
12
+ ### Dependencies
13
+
14
+ * @applitools/core-base bumped to 1.21.1
15
+ #### Bug Fixes
16
+
17
+ * add regions round up to the client set regions as well coded one ([#2413](https://github.com/Applitools-Dev/sdk/issues/2413)) ([85d4d2d](https://github.com/Applitools-Dev/sdk/commit/85d4d2ddd0166802c7ca9a5c11a1f52962284a5b))
18
+ * @applitools/ec-client bumped to 1.9.18
19
+
20
+
3
21
  ## [4.27.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.26.0...js/core@4.27.0) (2024-12-18)
4
22
 
5
23
 
@@ -23,7 +23,8 @@ async function makeServer(options = {}, logger) {
23
23
  response.end();
24
24
  }
25
25
  });
26
- http.listen(port, 'localhost');
26
+ const hostName = process.env.APPLITOOLS_UNIVERSAL_HOST_NAME || 'localhost';
27
+ http.listen(port, hostName);
27
28
  return new Promise((resolve, reject) => {
28
29
  http.on('listening', () => {
29
30
  const ws = new ws_1.Server({ server: http, path: '/eyes', maxPayload: 256 * 1024 * 1024 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "4.27.0",
3
+ "version": "4.27.1",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -74,11 +74,11 @@
74
74
  }
75
75
  },
76
76
  "dependencies": {
77
- "@applitools/core-base": "1.21.0",
77
+ "@applitools/core-base": "1.21.1",
78
78
  "@applitools/dom-capture": "11.5.2",
79
79
  "@applitools/dom-snapshot": "4.11.12",
80
80
  "@applitools/driver": "1.20.1",
81
- "@applitools/ec-client": "1.9.17",
81
+ "@applitools/ec-client": "1.9.18",
82
82
  "@applitools/logger": "2.0.20",
83
83
  "@applitools/nml-client": "1.8.20",
84
84
  "@applitools/req": "1.7.5",