@applitools/eyes-images 4.31.20 → 4.31.21
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 +17 -0
- package/package.json +2 -2
- package/types/index.d.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.31.21](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.20...js/eyes-images@4.31.21) (2026-01-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/core bumped to 4.54.3
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* `close`/`getResults` race condition ([#3450](https://github.com/Applitools-Dev/sdk/issues/3450)) ([2e5437d](https://github.com/Applitools-Dev/sdk/commit/2e5437dcfde6fda58d76227659ee249bfa3885a7))
|
|
12
|
+
* @applitools/eyes bumped to 1.37.0
|
|
13
|
+
#### Features
|
|
14
|
+
|
|
15
|
+
* expose buildId in BatchInfo type | FLD-4020 ([#3466](https://github.com/Applitools-Dev/sdk/issues/3466)) ([7868ba0](https://github.com/Applitools-Dev/sdk/commit/7868ba08de9a9d348c42d8eac5a953dce44844d0))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
3
20
|
## [4.31.20](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.31.19...js/eyes-images@4.31.20) (2026-01-11)
|
|
4
21
|
|
|
5
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-images",
|
|
3
|
-
"version": "4.31.
|
|
3
|
+
"version": "4.31.21",
|
|
4
4
|
"description": "The simplest implementation of Applitools Eyes SDK, uploads images for validation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-images",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"test:coverage": "APPLITOOLS_SHOW_LOGS=true APPLITOOLS_LOG_FILE=\"./logs/$(uuidgen).log\" APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-images' APPLITOOLS_BATCH_ID=$(uuidgen) MOCHA_GROUP=coverage run --top-level mocha './test/generated-coverage/*.spec.js' --parallel --jobs ${MOCHA_JOBS:-15}"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@applitools/eyes": "1.
|
|
43
|
+
"@applitools/eyes": "1.37.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@applitools/api-extractor": "^1.2.22",
|
package/types/index.d.ts
CHANGED
|
@@ -1282,6 +1282,7 @@ export type BatchInfoPlain = {
|
|
|
1282
1282
|
startedAt?: undefined | string | Date;
|
|
1283
1283
|
notifyOnCompletion?: undefined | boolean;
|
|
1284
1284
|
properties?: undefined | Array<PropertyDataPlain>;
|
|
1285
|
+
buildId?: undefined | string;
|
|
1285
1286
|
};
|
|
1286
1287
|
export class BatchInfo implements Required<BatchInfoPlain> {
|
|
1287
1288
|
constructor();
|
|
@@ -1315,6 +1316,10 @@ export class BatchInfo implements Required<BatchInfoPlain> {
|
|
|
1315
1316
|
setProperties(properties: Array<PropertyDataPlain>): BatchInfo;
|
|
1316
1317
|
addProperty(name: string, value: string): BatchInfo;
|
|
1317
1318
|
addProperty(prop: PropertyDataPlain): BatchInfo;
|
|
1319
|
+
get buildId(): string;
|
|
1320
|
+
set buildId(buildId: string);
|
|
1321
|
+
getBuildId(): string;
|
|
1322
|
+
setBuildId(buildId: string): BatchInfo;
|
|
1318
1323
|
}
|
|
1319
1324
|
export type Image = {
|
|
1320
1325
|
image: string | Buffer | URL;
|