@applitools/eyes 1.26.2 → 1.26.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 +17 -0
- package/dist/input/CheckSettings.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.26.3](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.26.2...js/eyes@1.26.3) (2024-11-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/dom-snapshot bumped to 4.11.8
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* overcome dom snapshot's failure to download resource from browser ([#2610](https://github.com/Applitools-Dev/sdk/issues/2610)) ([47d46fb](https://github.com/Applitools-Dev/sdk/commit/47d46fbe3baab12d5153f6617ab60142a8a215cf))
|
|
12
|
+
* @applitools/core bumped to 4.23.1
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* overcome dom snapshot's failure to download resource from browser ([#2610](https://github.com/Applitools-Dev/sdk/issues/2610)) ([47d46fb](https://github.com/Applitools-Dev/sdk/commit/47d46fbe3baab12d5153f6617ab60142a8a215cf))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
3
20
|
## [1.26.2](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.26.1...js/eyes@1.26.2) (2024-11-07)
|
|
4
21
|
|
|
5
22
|
|
|
@@ -391,7 +391,7 @@ class CheckSettingsImageFluent extends CheckSettingsBaseFluent {
|
|
|
391
391
|
enablePatterns: this._settings.enablePatterns,
|
|
392
392
|
ignoreDisplacements: this._settings.ignoreDisplacements,
|
|
393
393
|
ignoreCaret: this._settings.ignoreCaret,
|
|
394
|
-
ignoreRegions: (_a = this._settings.ignoreRegions) === null || _a === void 0 ? void 0 : _a.map(this.toCoreCodedRegion),
|
|
394
|
+
ignoreRegions: (_a = this._settings.ignoreRegions) === null || _a === void 0 ? void 0 : _a.map(this.toCoreCodedRegion), // shallow copy if exists
|
|
395
395
|
layoutRegions: (_b = this._settings.layoutRegions) === null || _b === void 0 ? void 0 : _b.map(this.toCoreCodedRegion),
|
|
396
396
|
strictRegions: (_c = this._settings.strictRegions) === null || _c === void 0 ? void 0 : _c.map(this.toCoreCodedRegion),
|
|
397
397
|
contentRegions: (_d = this._settings.contentRegions) === null || _d === void 0 ? void 0 : _d.map(this.toCoreCodedRegion),
|
|
@@ -591,7 +591,7 @@ class CheckSettingsAutomationFluent extends CheckSettingsBaseFluent {
|
|
|
591
591
|
enablePatterns: this._settings.enablePatterns,
|
|
592
592
|
ignoreDisplacements: this._settings.ignoreDisplacements,
|
|
593
593
|
ignoreCaret: this._settings.ignoreCaret,
|
|
594
|
-
ignoreRegions: (_a = this._settings.ignoreRegions) === null || _a === void 0 ? void 0 : _a.map(this.toCoreCodedRegion),
|
|
594
|
+
ignoreRegions: (_a = this._settings.ignoreRegions) === null || _a === void 0 ? void 0 : _a.map(this.toCoreCodedRegion), // shallow copy if exists
|
|
595
595
|
layoutRegions: (_b = this._settings.layoutRegions) === null || _b === void 0 ? void 0 : _b.map(this.toCoreCodedRegion),
|
|
596
596
|
strictRegions: (_c = this._settings.strictRegions) === null || _c === void 0 ? void 0 : _c.map(this.toCoreCodedRegion),
|
|
597
597
|
contentRegions: (_d = this._settings.contentRegions) === null || _d === void 0 ? void 0 : _d.map(this.toCoreCodedRegion),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.3",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"applitools",
|
|
6
6
|
"eyes",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"test": "run --top-level mocha './test/**/*.spec.ts'"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@applitools/core": "4.23.
|
|
48
|
+
"@applitools/core": "4.23.1",
|
|
49
49
|
"@applitools/logger": "2.0.19",
|
|
50
50
|
"@applitools/utils": "1.7.5"
|
|
51
51
|
},
|