@applitools/core 4.31.1 → 4.31.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
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.31.3](https://github.com/Applitools-Dev/sdk/compare/js/core@4.31.2...js/core@4.31.3) (2025-02-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* fix offline - url was replaced before resource fetched for url resources ([#2802](https://github.com/Applitools-Dev/sdk/issues/2802)) ([a67f86a](https://github.com/Applitools-Dev/sdk/commit/a67f86aabd56c59fb6cfa58578b1e8b3c31d2197))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/ufg-client bumped to 1.16.5
|
|
14
|
+
#### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* fix offline - url was replaced before resource fetched for url resources ([#2802](https://github.com/Applitools-Dev/sdk/issues/2802)) ([a67f86a](https://github.com/Applitools-Dev/sdk/commit/a67f86aabd56c59fb6cfa58578b1e8b3c31d2197))
|
|
17
|
+
|
|
18
|
+
## [4.31.2](https://github.com/Applitools-Dev/sdk/compare/js/core@4.31.1...js/core@4.31.2) (2025-02-10)
|
|
19
|
+
|
|
20
|
+
|
|
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
|
+
* 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))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* @applitools/ufg-client bumped to 1.16.4
|
|
30
|
+
#### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* 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))
|
|
33
|
+
* 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))
|
|
34
|
+
|
|
3
35
|
## [4.31.1](https://github.com/Applitools-Dev/sdk/compare/js/core@4.31.0...js/core@4.31.1) (2025-02-05)
|
|
4
36
|
|
|
5
37
|
|
|
@@ -96,8 +96,8 @@ async function runOfflineSnapshots(options) {
|
|
|
96
96
|
const keepBatchOpen = utils.general.getEnvValue('DONT_CLOSE_BATCHES', 'boolean') || options.config.open.keepBatchOpen;
|
|
97
97
|
if (!keepBatchOpen) {
|
|
98
98
|
await core.closeBatch({ settings: batchIds.map(batchId => ({ batchId, ...account.eyesServer })) });
|
|
99
|
+
logger.log('done closing batches');
|
|
99
100
|
}
|
|
100
|
-
logger.log('done closing batches');
|
|
101
101
|
return allTestResults;
|
|
102
102
|
}
|
|
103
103
|
async function runTest(testPath, openSettings, logger) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/core",
|
|
3
|
-
"version": "4.31.
|
|
3
|
+
"version": "4.31.3",
|
|
4
4
|
"homepage": "https://applitools.com",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@applitools/snippets": "2.6.4",
|
|
88
88
|
"@applitools/socket": "1.2.1",
|
|
89
89
|
"@applitools/spec-driver-webdriver": "1.1.25",
|
|
90
|
-
"@applitools/ufg-client": "1.16.
|
|
90
|
+
"@applitools/ufg-client": "1.16.5",
|
|
91
91
|
"@applitools/utils": "1.7.7",
|
|
92
92
|
"@types/ws": "8.5.5",
|
|
93
93
|
"abort-controller": "3.0.0",
|