@applitools/core 4.54.0 → 4.54.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 +15 -0
- package/dist/get-manager-results.js +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.54.1](https://github.com/Applitools-Dev/sdk/compare/js/core@4.54.0...js/core@4.54.1) (2025-12-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* improve error notification (UFG) | AD-12270 ([#3418](https://github.com/Applitools-Dev/sdk/issues/3418)) ([a4efc55](https://github.com/Applitools-Dev/sdk/commit/a4efc55cd178dc13096fbfb066c287b0d6a452d3))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/dom-snapshot bumped to 4.15.4
|
|
14
|
+
#### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* CSS variables in Shadow DOM style tags not expanded | FLD-3790 ([#3427](https://github.com/Applitools-Dev/sdk/issues/3427)) ([3d84b5f](https://github.com/Applitools-Dev/sdk/commit/3d84b5f120dd5e72dea5ec77b5d446e7ca696d52))
|
|
17
|
+
|
|
3
18
|
## [4.54.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.53.2...js/core@4.54.0) (2025-12-14)
|
|
4
19
|
|
|
5
20
|
|
|
@@ -48,7 +48,9 @@ function makeGetManagerResults({ core, storage, logger: mainLogger, }) {
|
|
|
48
48
|
});
|
|
49
49
|
}
|
|
50
50
|
catch (error) {
|
|
51
|
-
|
|
51
|
+
logger.fatal('Command "getManagerResults" received an error', error, 'during performing with settings', settings);
|
|
52
|
+
const internalError = new internal_error_1.InternalError(error);
|
|
53
|
+
return promise.then(containers => containers.concat({ error: internalError, result: { error: internalError }, ...error.info }));
|
|
52
54
|
}
|
|
53
55
|
}, Promise.resolve([]));
|
|
54
56
|
if (settings === null || settings === void 0 ? void 0 : settings.removeDuplicateTests) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/core",
|
|
3
|
-
"version": "4.54.
|
|
3
|
+
"version": "4.54.1",
|
|
4
4
|
"homepage": "https://applitools.com",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"dependencies": {
|
|
83
83
|
"@applitools/core-base": "1.31.0",
|
|
84
84
|
"@applitools/dom-capture": "11.6.7",
|
|
85
|
-
"@applitools/dom-snapshot": "4.15.
|
|
85
|
+
"@applitools/dom-snapshot": "4.15.4",
|
|
86
86
|
"@applitools/driver": "1.24.3",
|
|
87
87
|
"@applitools/ec-client": "1.12.15",
|
|
88
88
|
"@applitools/logger": "2.2.7",
|