@applitools/eyes 1.36.1 → 1.36.3
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 +60 -0
- package/dist/cli/cli.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,65 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.36.3](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.2...js/eyes@1.36.3) (2025-08-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* browser extension | FLD-3221 ([#3185](https://github.com/Applitools-Dev/sdk/issues/3185)) ([8212155](https://github.com/Applitools-Dev/sdk/commit/8212155e51ce919beb3bcecc7da1970da4a65be7))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/dom-snapshot bumped to 4.13.4
|
|
14
|
+
#### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* canvas blob ([#3194](https://github.com/Applitools-Dev/sdk/issues/3194)) ([d90cfca](https://github.com/Applitools-Dev/sdk/commit/d90cfcaa78df93d4bd8992d77f41eb93edd56f4c))
|
|
17
|
+
* canvas blobs ([#3192](https://github.com/Applitools-Dev/sdk/issues/3192)) ([f15ac4e](https://github.com/Applitools-Dev/sdk/commit/f15ac4ed68cc1746ee6cef51f2258388428fd1c7))
|
|
18
|
+
* @applitools/core bumped to 4.44.5
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* browser extension | FLD-3221 ([#3185](https://github.com/Applitools-Dev/sdk/issues/3185)) ([8212155](https://github.com/Applitools-Dev/sdk/commit/8212155e51ce919beb3bcecc7da1970da4a65be7))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [1.36.2](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.1...js/eyes@1.36.2) (2025-08-21)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Dependencies
|
|
30
|
+
|
|
31
|
+
* @applitools/dom-snapshot bumped to 4.13.3
|
|
32
|
+
|
|
33
|
+
* @applitools/socket bumped to 1.3.3
|
|
34
|
+
#### Bug Fixes
|
|
35
|
+
|
|
36
|
+
* tunnel uncaught error | FLD-3356 ([#3128](https://github.com/Applitools-Dev/sdk/issues/3128)) ([ed5fb8a](https://github.com/Applitools-Dev/sdk/commit/ed5fb8aad596ec0d8b45a89077a7765c24ae8a8e))
|
|
37
|
+
* @applitools/driver bumped to 1.23.3
|
|
38
|
+
#### Bug Fixes
|
|
39
|
+
|
|
40
|
+
* make orientation more robust | FLD-3470 ([#3166](https://github.com/Applitools-Dev/sdk/issues/3166)) ([3745427](https://github.com/Applitools-Dev/sdk/commit/37454279234b085dc9a159077b3f278cdccc203a))
|
|
41
|
+
* @applitools/spec-driver-webdriver bumped to 1.4.3
|
|
42
|
+
|
|
43
|
+
* @applitools/spec-driver-selenium bumped to 1.7.3
|
|
44
|
+
|
|
45
|
+
* @applitools/spec-driver-puppeteer bumped to 1.6.3
|
|
46
|
+
|
|
47
|
+
* @applitools/screenshoter bumped to 3.12.3
|
|
48
|
+
|
|
49
|
+
* @applitools/nml-client bumped to 1.11.3
|
|
50
|
+
|
|
51
|
+
* @applitools/tunnel-client bumped to 1.10.4
|
|
52
|
+
#### Bug Fixes
|
|
53
|
+
|
|
54
|
+
* tunnel uncaught error | FLD-3356 ([#3128](https://github.com/Applitools-Dev/sdk/issues/3128)) ([ed5fb8a](https://github.com/Applitools-Dev/sdk/commit/ed5fb8aad596ec0d8b45a89077a7765c24ae8a8e))
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
* @applitools/ec-client bumped to 1.12.4
|
|
59
|
+
|
|
60
|
+
* @applitools/core bumped to 4.44.4
|
|
61
|
+
|
|
62
|
+
|
|
3
63
|
## [1.36.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.36.0...js/eyes@1.36.1) (2025-08-12)
|
|
4
64
|
|
|
5
65
|
|
package/dist/cli/cli.js
CHANGED
|
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
};
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
/* eslint no-console: off */
|
|
8
|
-
const
|
|
8
|
+
const offline_1 = require("@applitools/core/offline");
|
|
9
9
|
const yargs_1 = __importDefault(require("yargs"));
|
|
10
10
|
const Configuration_1 = require("../input/Configuration");
|
|
11
11
|
const load_config_1 = require("./load-config");
|
|
@@ -50,7 +50,7 @@ void yargs_1.default
|
|
|
50
50
|
handler: async (args) => {
|
|
51
51
|
const config = await (0, load_config_1.loadConfig)(args.configPath);
|
|
52
52
|
const options = { ...args, config: new Configuration_1.ConfigurationData(config).toJSON() };
|
|
53
|
-
await (0,
|
|
53
|
+
await (0, offline_1.runOfflineSnapshots)(options);
|
|
54
54
|
},
|
|
55
55
|
})
|
|
56
56
|
.wrap(yargs_1.default.terminalWidth()).argv;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes",
|
|
3
|
-
"version": "1.36.
|
|
3
|
+
"version": "1.36.3",
|
|
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.44.
|
|
49
|
+
"@applitools/core": "4.44.5",
|
|
50
50
|
"@applitools/logger": "2.2.2",
|
|
51
51
|
"@applitools/utils": "1.11.1",
|
|
52
52
|
"chalk": "4.1.2",
|