@applitools/core 4.44.4 → 4.45.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 +42 -0
- package/dist/index.js +0 -1
- package/dist/offline.js +17 -0
- package/package.json +9 -5
- package/types/index.d.ts +0 -1
- package/types/offline.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.45.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.44.5...js/core@4.45.0) (2025-09-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* respect NO_PROXY for WebDriver | AD-10927 | FLD-2702 ([#3186](https://github.com/Applitools-Dev/sdk/issues/3186)) ([8e53d9a](https://github.com/Applitools-Dev/sdk/commit/8e53d9a7c1b6fe38c11d63fad915fc89b199a749))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/dom-shared bumped to 1.1.1
|
|
14
|
+
#### Code Refactoring
|
|
15
|
+
|
|
16
|
+
* dom shared js -> ts ([#3202](https://github.com/Applitools-Dev/sdk/issues/3202)) ([c6d6b77](https://github.com/Applitools-Dev/sdk/commit/c6d6b77179d48539cc40f609f150f380aa48d6bb))
|
|
17
|
+
* @applitools/tunnel-client bumped to 1.11.0
|
|
18
|
+
#### Features
|
|
19
|
+
|
|
20
|
+
* mask apiKey and eyesServerUrl from the logs | AD-10661 ([#3200](https://github.com/Applitools-Dev/sdk/issues/3200)) ([eaba565](https://github.com/Applitools-Dev/sdk/commit/eaba565898d8e72745a1e95c9b17ae77c396ca14))
|
|
21
|
+
* report to coralogix | AD-10945 ([#3191](https://github.com/Applitools-Dev/sdk/issues/3191)) ([2f57db1](https://github.com/Applitools-Dev/sdk/commit/2f57db162db4d3dbe4cdab06096f0d183af94946))
|
|
22
|
+
* @applitools/dom-snapshot bumped to 4.13.5
|
|
23
|
+
|
|
24
|
+
* @applitools/dom-capture bumped to 11.6.3
|
|
25
|
+
|
|
26
|
+
* @applitools/ec-client bumped to 1.12.5
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## [4.44.5](https://github.com/Applitools-Dev/sdk/compare/js/core@4.44.4...js/core@4.44.5) (2025-08-27)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* browser extension | FLD-3221 ([#3185](https://github.com/Applitools-Dev/sdk/issues/3185)) ([8212155](https://github.com/Applitools-Dev/sdk/commit/8212155e51ce919beb3bcecc7da1970da4a65be7))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Dependencies
|
|
38
|
+
|
|
39
|
+
* @applitools/dom-snapshot bumped to 4.13.4
|
|
40
|
+
#### Bug Fixes
|
|
41
|
+
|
|
42
|
+
* canvas blob ([#3194](https://github.com/Applitools-Dev/sdk/issues/3194)) ([d90cfca](https://github.com/Applitools-Dev/sdk/commit/d90cfcaa78df93d4bd8992d77f41eb93edd56f4c))
|
|
43
|
+
* canvas blobs ([#3192](https://github.com/Applitools-Dev/sdk/issues/3192)) ([f15ac4e](https://github.com/Applitools-Dev/sdk/commit/f15ac4ed68cc1746ee6cef51f2258388428fd1c7))
|
|
44
|
+
|
|
3
45
|
## [4.44.4](https://github.com/Applitools-Dev/sdk/compare/js/core@4.44.3...js/core@4.44.4) (2025-08-21)
|
|
4
46
|
|
|
5
47
|
|
package/dist/index.js
CHANGED
|
@@ -35,4 +35,3 @@ __exportStar(require("./autonomous/core"), exports);
|
|
|
35
35
|
__exportStar(require("@applitools/driver/dist/debug"), exports);
|
|
36
36
|
exports.formatters = __importStar(require("./utils/format-results"));
|
|
37
37
|
exports.logs = __importStar(require("./troubleshoot/logs"));
|
|
38
|
-
__exportStar(require("./offline/run-offline-snapshots"), exports);
|
package/dist/offline.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./offline/run-offline-snapshots"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.45.0",
|
|
4
4
|
"homepage": "https://applitools.com",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"types": "./types/index.d.ts",
|
|
21
21
|
"default": "./dist/index.js"
|
|
22
22
|
},
|
|
23
|
+
"./offline": {
|
|
24
|
+
"types": "./types/offline.d.ts",
|
|
25
|
+
"default": "./dist/offline.js"
|
|
26
|
+
},
|
|
23
27
|
"./types": {
|
|
24
28
|
"types": "./types/types.d.ts",
|
|
25
29
|
"default": "./dist/types.js"
|
|
@@ -76,10 +80,10 @@
|
|
|
76
80
|
},
|
|
77
81
|
"dependencies": {
|
|
78
82
|
"@applitools/core-base": "1.27.2",
|
|
79
|
-
"@applitools/dom-capture": "11.6.
|
|
80
|
-
"@applitools/dom-snapshot": "4.13.
|
|
83
|
+
"@applitools/dom-capture": "11.6.3",
|
|
84
|
+
"@applitools/dom-snapshot": "4.13.5",
|
|
81
85
|
"@applitools/driver": "1.23.3",
|
|
82
|
-
"@applitools/ec-client": "1.12.
|
|
86
|
+
"@applitools/ec-client": "1.12.5",
|
|
83
87
|
"@applitools/logger": "2.2.2",
|
|
84
88
|
"@applitools/nml-client": "1.11.3",
|
|
85
89
|
"@applitools/req": "1.8.2",
|
|
@@ -106,7 +110,7 @@
|
|
|
106
110
|
"@applitools/spec-driver-selenium": "^1.7.3",
|
|
107
111
|
"@applitools/test-server": "^1.3.1",
|
|
108
112
|
"@applitools/test-utils": "^1.5.17",
|
|
109
|
-
"@applitools/tunnel-client": "^1.
|
|
113
|
+
"@applitools/tunnel-client": "^1.11.0",
|
|
110
114
|
"@types/mocha": "^10.0.7",
|
|
111
115
|
"@types/node": "^12.20.55",
|
|
112
116
|
"@types/selenium-webdriver": "^4.1.2",
|
package/types/index.d.ts
CHANGED
|
@@ -7,4 +7,3 @@ export { type SpecType, type SpecDriver, type Selector } from '@applitools/drive
|
|
|
7
7
|
export * from '@applitools/driver/dist/debug';
|
|
8
8
|
export * as formatters from './utils/format-results';
|
|
9
9
|
export * as logs from './troubleshoot/logs';
|
|
10
|
-
export * from './offline/run-offline-snapshots';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './offline/run-offline-snapshots';
|