@applitools/eyes-puppeteer 1.23.5 → 1.23.6

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,50 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.23.6](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-puppeteer@1.23.5...js/eyes-puppeteer@1.23.6) (2024-01-16)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/dom-snapshot bumped to 4.7.16
9
+ #### Bug Fixes
10
+
11
+ * handle unparsable values of media attribute in dom snapshot ([a2afe2e](https://github.com/applitools/eyes.sdk.javascript1/commit/a2afe2e18508f44f9c046270da0c1e09fb9aea03))
12
+ * @applitools/nml-client bumped to 1.6.4
13
+ #### Bug Fixes
14
+
15
+ * remove local environment id ([#2152](https://github.com/applitools/eyes.sdk.javascript1/issues/2152)) ([59aaeae](https://github.com/applitools/eyes.sdk.javascript1/commit/59aaeaed474fbde78b76ae7ac803960e3ecd8166))
16
+ * @applitools/core bumped to 4.6.0
17
+ #### Features
18
+
19
+ * 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))
20
+
21
+
22
+ #### Bug Fixes
23
+
24
+ * 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))
25
+ * remove local environment id ([#2152](https://github.com/applitools/eyes.sdk.javascript1/issues/2152)) ([59aaeae](https://github.com/applitools/eyes.sdk.javascript1/commit/59aaeaed474fbde78b76ae7ac803960e3ecd8166))
26
+
27
+
28
+
29
+ * @applitools/ec-client bumped to 1.7.22
30
+
31
+ * @applitools/core-base bumped to 1.9.0
32
+ #### Features
33
+
34
+ * 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))
35
+
36
+
37
+ #### Bug Fixes
38
+
39
+ * 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))
40
+ * @applitools/eyes bumped to 1.13.5
41
+ #### Bug Fixes
42
+
43
+ * fixed default value in `useSystemScreenshot` method of check settings ([42a773c](https://github.com/applitools/eyes.sdk.javascript1/commit/42a773cc57e8e5de528a049b376159615892003b))
44
+
45
+
46
+
47
+
3
48
  ## [1.23.5](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-puppeteer@1.23.4...js/eyes-puppeteer@1.23.5) (2024-01-02)
4
49
 
5
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-puppeteer",
3
- "version": "1.23.5",
3
+ "version": "1.23.6",
4
4
  "description": "Applitools Eyes SDK for Puppeteer",
5
5
  "keywords": [
6
6
  "eyes-puppeteer",
@@ -36,7 +36,7 @@
36
36
  "up:framework": "echo \"$(jq '.devDependencies.puppeteer = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
37
37
  },
38
38
  "dependencies": {
39
- "@applitools/eyes": "1.13.4",
39
+ "@applitools/eyes": "1.13.5",
40
40
  "@applitools/spec-driver-puppeteer": "1.3.4"
41
41
  },
42
42
  "devDependencies": {
package/types/index.d.ts CHANGED
@@ -216,7 +216,7 @@ export class CheckSettingsAutomation {
216
216
  nmgOptions(options: { [key: string]: any; }): CheckSettingsAutomation;
217
217
  visualGridOption(key: string, value: any): CheckSettingsAutomation;
218
218
  visualGridOptions(options: { [key: string]: any; }): CheckSettingsAutomation;
219
- useSystemScreenshot(useSystemScreenshot: boolean): CheckSettingsAutomation;
219
+ useSystemScreenshot(useSystemScreenshot?: undefined | boolean): CheckSettingsAutomation;
220
220
  timeout(timeout: number): CheckSettingsAutomation;
221
221
  waitBeforeCapture(waitBeforeCapture: number): CheckSettingsAutomation;
222
222
  lazyLoad(options?: undefined | boolean): CheckSettingsAutomation;