@applitools/eyes 1.13.4 → 1.13.5

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,48 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.13.5](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes@1.13.4...js/eyes@1.13.5) (2024-01-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fixed default value in `useSystemScreenshot` method of check settings ([42a773c](https://github.com/applitools/eyes.sdk.javascript1/commit/42a773cc57e8e5de528a049b376159615892003b))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/dom-snapshot bumped to 4.7.16
14
+ #### Bug Fixes
15
+
16
+ * handle unparsable values of media attribute in dom snapshot ([a2afe2e](https://github.com/applitools/eyes.sdk.javascript1/commit/a2afe2e18508f44f9c046270da0c1e09fb9aea03))
17
+ * @applitools/nml-client bumped to 1.6.4
18
+ #### Bug Fixes
19
+
20
+ * remove local environment id ([#2152](https://github.com/applitools/eyes.sdk.javascript1/issues/2152)) ([59aaeae](https://github.com/applitools/eyes.sdk.javascript1/commit/59aaeaed474fbde78b76ae7ac803960e3ecd8166))
21
+ * @applitools/core-base bumped to 1.9.0
22
+ #### Features
23
+
24
+ * added possibility to provide `fallbackBaselineId` in environment objects ([#2146](https://github.com/applitools/eyes.sdk.javascript1/issues/2146)) ([f0782ea](https://github.com/applitools/eyes.sdk.javascript1/commit/f0782ea4c38935f97fc47248ed6a5b67f87b0634))
25
+
26
+
27
+ #### Bug Fixes
28
+
29
+ * add environment variable for setting ufg server ufg ([#2147](https://github.com/applitools/eyes.sdk.javascript1/issues/2147)) ([cfc701f](https://github.com/applitools/eyes.sdk.javascript1/commit/cfc701f7a43fed0fe252d4090b9c1dc490063c76))
30
+ * @applitools/ec-client bumped to 1.7.22
31
+
32
+ * @applitools/core bumped to 4.6.0
33
+ #### Features
34
+
35
+ * added possibility to provide `fallbackBaselineId` in environment objects ([#2146](https://github.com/applitools/eyes.sdk.javascript1/issues/2146)) ([f0782ea](https://github.com/applitools/eyes.sdk.javascript1/commit/f0782ea4c38935f97fc47248ed6a5b67f87b0634))
36
+
37
+
38
+ #### Bug Fixes
39
+
40
+ * add environment variable for setting ufg server ufg ([#2147](https://github.com/applitools/eyes.sdk.javascript1/issues/2147)) ([cfc701f](https://github.com/applitools/eyes.sdk.javascript1/commit/cfc701f7a43fed0fe252d4090b9c1dc490063c76))
41
+ * remove local environment id ([#2152](https://github.com/applitools/eyes.sdk.javascript1/issues/2152)) ([59aaeae](https://github.com/applitools/eyes.sdk.javascript1/commit/59aaeaed474fbde78b76ae7ac803960e3ecd8166))
42
+
43
+
44
+
45
+
3
46
  ## [1.13.4](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes@1.13.3...js/eyes@1.13.4) (2024-01-02)
4
47
 
5
48
 
@@ -443,7 +443,7 @@ class CheckSettingsAutomationFluent extends CheckSettingsBaseFluent {
443
443
  visualGridOptions(options) {
444
444
  return this.ufgOptions(options);
445
445
  }
446
- useSystemScreenshot(useSystemScreenshot) {
446
+ useSystemScreenshot(useSystemScreenshot = true) {
447
447
  this._settings.useSystemScreenshot = useSystemScreenshot;
448
448
  return this;
449
449
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.13.4",
3
+ "version": "1.13.5",
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.5.2",
48
+ "@applitools/core": "4.6.0",
49
49
  "@applitools/logger": "2.0.14",
50
50
  "@applitools/utils": "1.7.0"
51
51
  },
@@ -204,7 +204,7 @@ export declare class CheckSettingsAutomationFluent<TSpec extends Core.SpecType =
204
204
  visualGridOptions(options: {
205
205
  [key: string]: any;
206
206
  }): this;
207
- useSystemScreenshot(useSystemScreenshot: boolean): this;
207
+ useSystemScreenshot(useSystemScreenshot?: boolean): this;
208
208
  timeout(timeout: number): this;
209
209
  waitBeforeCapture(waitBeforeCapture: number): this;
210
210
  lazyLoad(options?: LazyLoadOptions | boolean): this;