@applitools/eyes-images 4.30.0 → 4.30.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 +21 -0
- package/package.json +2 -2
- package/types/index.d.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.30.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.30.0...js/eyes-images@4.30.1) (2025-03-06)
|
|
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
|
+
* handle failure for large body in render request ([a4d2c1a](https://github.com/Applitools-Dev/sdk/commit/a4d2c1a408c8ed31ecd5446415dc8af04eb7b688))
|
|
10
|
+
* set TLS_REJECT_UNAUTHORIZED in tunnel ([#2706](https://github.com/Applitools-Dev/sdk/issues/2706)) ([abfa821](https://github.com/Applitools-Dev/sdk/commit/abfa82151931bd11767ac1d797cee03855bde34a))
|
|
11
|
+
* trigger release ([#2829](https://github.com/Applitools-Dev/sdk/issues/2829)) ([c9ea327](https://github.com/Applitools-Dev/sdk/commit/c9ea327c806163e23031be7c0b5b40bf02dbebc3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Dependencies
|
|
15
|
+
|
|
16
|
+
* @applitools/core bumped to 4.32.2
|
|
17
|
+
#### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* add environment variable aliases (_NAME suffix) ([#2791](https://github.com/Applitools-Dev/sdk/issues/2791)) ([67501a4](https://github.com/Applitools-Dev/sdk/commit/67501a4f5491319ca62949a56ee03face08a59e5))
|
|
20
|
+
* support test concurrency in offline mode ([#2831](https://github.com/Applitools-Dev/sdk/issues/2831)) ([3b7d137](https://github.com/Applitools-Dev/sdk/commit/3b7d137a9b34bb5c564e0a5c7d3fb2520ef8a167))
|
|
21
|
+
* @applitools/eyes bumped to 1.32.6
|
|
22
|
+
|
|
23
|
+
|
|
3
24
|
## [4.30.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images-v4.29.5...js/eyes-images@4.30.0) (2025-01-30)
|
|
4
25
|
|
|
5
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-images",
|
|
3
|
-
"version": "4.30.
|
|
3
|
+
"version": "4.30.1",
|
|
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.32.
|
|
43
|
+
"@applitools/eyes": "1.32.6"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@applitools/api-extractor": "^1.2.22",
|
package/types/index.d.ts
CHANGED
|
@@ -561,6 +561,7 @@ export type CheckSettingsImagePlain = {
|
|
|
561
561
|
pageId?: undefined | string;
|
|
562
562
|
variationGroupId?: undefined | string;
|
|
563
563
|
densityMetrics?: undefined | { scaleRatio?: undefined | number; xdpi?: undefined | number; ydpi?: undefined | number; };
|
|
564
|
+
stitchMode?: undefined | StitchModePlain;
|
|
564
565
|
};
|
|
565
566
|
export type CheckSettingsAutomationPlain = {
|
|
566
567
|
name?: undefined | string;
|
|
@@ -605,6 +606,7 @@ export type CheckSettingsAutomationPlain = {
|
|
|
605
606
|
pageId?: undefined | string;
|
|
606
607
|
variationGroupId?: undefined | string;
|
|
607
608
|
densityMetrics?: undefined | { scaleRatio?: undefined | number; xdpi?: undefined | number; ydpi?: undefined | number; };
|
|
609
|
+
stitchMode?: undefined | StitchModePlain;
|
|
608
610
|
frames?: undefined | Array<{ frame: number | ((string | { selector: string; type?: undefined | string; shadow?: undefined | EyesSelector<never>; frame?: undefined | EyesSelector<never>; })); scrollRootElement?: undefined | ((string | { selector: string; type?: undefined | string; shadow?: undefined | EyesSelector<never>; frame?: undefined | EyesSelector<never>; })); } | (number | ((string | { selector: string; type?: undefined | string; shadow?: undefined | EyesSelector<never>; frame?: undefined | EyesSelector<never>; })))>;
|
|
609
611
|
webview?: undefined | string | boolean;
|
|
610
612
|
scrollRootElement?: undefined | ((string | { selector: string; type?: undefined | string; shadow?: undefined | EyesSelector<never>; frame?: undefined | EyesSelector<never>; }));
|
|
@@ -654,6 +656,7 @@ export class CheckSettingsAutomation {
|
|
|
654
656
|
lazyLoad(options?: undefined | boolean): CheckSettingsAutomation;
|
|
655
657
|
lazyLoad(options?: undefined | { scrollLength?: undefined | number; waitingTime?: undefined | number; maxAmountToScroll?: undefined | number; }): CheckSettingsAutomation;
|
|
656
658
|
densityMetrics(options: { scaleRatio?: undefined | number; xdpi?: undefined | number; ydpi?: undefined | number; }): CheckSettingsAutomation;
|
|
659
|
+
stitchMode(stitchMode: StitchModePlain): CheckSettingsAutomation;
|
|
657
660
|
name(name: string): CheckSettingsAutomation;
|
|
658
661
|
withName(name: string): CheckSettingsAutomation;
|
|
659
662
|
ignoreRegion(region: (RegionPlain | LegacyRegionPlain | ((string | { selector: string; type?: undefined | string; shadow?: undefined | EyesSelector<never>; frame?: undefined | EyesSelector<never>; })))): CheckSettingsAutomation;
|