@applitools/eyes-cypress 3.50.0 → 3.50.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 +33 -0
- package/dist/plugin/server.js +2 -1
- package/package.json +3 -3
- package/src/plugin/server.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.50.2](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.50.1...js/eyes-cypress@3.50.2) (2025-02-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add env variable for cypress host name to use different conventions of localhost ([#2793](https://github.com/Applitools-Dev/sdk/issues/2793)) ([8ad8b5b](https://github.com/Applitools-Dev/sdk/commit/8ad8b5ba6f8b9f06643c9c9ed119a25ce385482c))
|
|
9
|
+
|
|
10
|
+
## [3.50.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.50.0...js/eyes-cypress@3.50.1) (2025-02-10)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* specifying chrome version in UFG chrome emulations ([#2773](https://github.com/Applitools-Dev/sdk/issues/2773)) ([e86af5d](https://github.com/Applitools-Dev/sdk/commit/e86af5d8d616fb54a6cbe0a23db691d0b190b0f6))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Dependencies
|
|
19
|
+
|
|
20
|
+
* @applitools/ufg-client bumped to 1.16.4
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* environment without type in ios should be considered web ([#2779](https://github.com/Applitools-Dev/sdk/issues/2779)) ([1a0dc18](https://github.com/Applitools-Dev/sdk/commit/1a0dc186d782ee8dacccf4ea9d10b513416b7492))
|
|
24
|
+
* specifying chrome version in UFG chrome emulations ([#2773](https://github.com/Applitools-Dev/sdk/issues/2773)) ([e86af5d](https://github.com/Applitools-Dev/sdk/commit/e86af5d8d616fb54a6cbe0a23db691d0b190b0f6))
|
|
25
|
+
* @applitools/core bumped to 4.31.2
|
|
26
|
+
#### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* environment without type in ios should be considered web ([#2779](https://github.com/Applitools-Dev/sdk/issues/2779)) ([1a0dc18](https://github.com/Applitools-Dev/sdk/commit/1a0dc186d782ee8dacccf4ea9d10b513416b7492))
|
|
29
|
+
* move log line for closing batch in offline cli ([#2768](https://github.com/Applitools-Dev/sdk/issues/2768)) ([bfb51a9](https://github.com/Applitools-Dev/sdk/commit/bfb51a94d8e7d51020aac62dd78038fdeb819a68))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
* @applitools/eyes bumped to 1.32.1
|
|
34
|
+
|
|
35
|
+
|
|
3
36
|
## [3.50.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress-v3.49.4...js/eyes-cypress@3.50.0) (2025-01-30)
|
|
4
37
|
|
|
5
38
|
|
package/dist/plugin/server.js
CHANGED
|
@@ -20,7 +20,8 @@ function makeStartServer({ logger, eyesConfig }) {
|
|
|
20
20
|
key,
|
|
21
21
|
cert,
|
|
22
22
|
});
|
|
23
|
-
|
|
23
|
+
const hostName = process.env.APPLITOOLS_CYPRESS_HOST_NAME || undefined;
|
|
24
|
+
await (0, util_1.promisify)(https.listen.bind(https))(hostName ? { host: hostName, port: 0 } : undefined);
|
|
24
25
|
const port = https.address().port;
|
|
25
26
|
logger.log('cypress-sdk server is going to be created with port', port);
|
|
26
27
|
const wss = new ws_1.Server({ server: https, path: '/eyes', maxPayload: 254 * 1024 * 1024 });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-cypress",
|
|
3
|
-
"version": "3.50.
|
|
3
|
+
"version": "3.50.2",
|
|
4
4
|
"homepage": "https://applitools.com/docs/api-ref/sdk-api/cypress/",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"setup": "run --top-level xvfb:setup"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@applitools/core": "4.31.
|
|
58
|
-
"@applitools/eyes": "1.32.
|
|
57
|
+
"@applitools/core": "4.31.2",
|
|
58
|
+
"@applitools/eyes": "1.32.1",
|
|
59
59
|
"@applitools/functional-commons": "1.6.0",
|
|
60
60
|
"@applitools/logger": "2.1.0",
|
|
61
61
|
"@applitools/utils": "1.7.7",
|
package/src/plugin/server.ts
CHANGED
|
@@ -27,7 +27,9 @@ export default function makeStartServer({logger, eyesConfig}: {logger: Logger; e
|
|
|
27
27
|
key,
|
|
28
28
|
cert,
|
|
29
29
|
})
|
|
30
|
-
|
|
30
|
+
|
|
31
|
+
const hostName = process.env.APPLITOOLS_CYPRESS_HOST_NAME || undefined
|
|
32
|
+
await promisify(https.listen.bind(https))(hostName ? {host: hostName, port: 0} : undefined)
|
|
31
33
|
|
|
32
34
|
const port = (https.address() as AddressInfo).port
|
|
33
35
|
logger.log('cypress-sdk server is going to be created with port', port)
|