@applitools/eyes-puppeteer 1.27.5 → 1.27.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,55 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.27.6](https://github.com/Applitools-Dev/sdk/compare/js/eyes-puppeteer@1.27.5...js/eyes-puppeteer@1.27.6) (2024-07-23)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/driver bumped to 1.18.0
9
+ #### Features
10
+
11
+ * disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
12
+
13
+
14
+ #### Bug Fixes
15
+
16
+ * executing web script on mobile environment ([#2380](https://github.com/Applitools-Dev/sdk/issues/2380)) ([da2e551](https://github.com/Applitools-Dev/sdk/commit/da2e551e01082d3cc21b9da5b43e6680233c080d))
17
+ * @applitools/ufg-client bumped to 1.12.3
18
+ #### Bug Fixes
19
+
20
+ * update makeUploadResource to include apiKey in the cache key ([#2411](https://github.com/Applitools-Dev/sdk/issues/2411)) ([4114c58](https://github.com/Applitools-Dev/sdk/commit/4114c58ec16fa855374b23810cef1e36d4bb53a7))
21
+
22
+
23
+ #### Performance Improvements
24
+
25
+ * trim file content when logging it ([#2437](https://github.com/Applitools-Dev/sdk/issues/2437)) ([02ec1f7](https://github.com/Applitools-Dev/sdk/commit/02ec1f79a323af2e89a7428b75212707c761d1ca))
26
+ * @applitools/core bumped to 4.18.0
27
+ #### Features
28
+
29
+ * disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
30
+
31
+
32
+
33
+ * @applitools/spec-driver-webdriver bumped to 1.1.11
34
+
35
+ * @applitools/spec-driver-selenium bumped to 1.5.82
36
+
37
+ * @applitools/spec-driver-puppeteer bumped to 1.4.11
38
+
39
+ * @applitools/screenshoter bumped to 3.8.35
40
+
41
+ * @applitools/nml-client bumped to 1.8.9
42
+
43
+ * @applitools/ec-client bumped to 1.9.3
44
+
45
+ * @applitools/eyes bumped to 1.22.0
46
+ #### Features
47
+
48
+ * disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
49
+
50
+
51
+
52
+
3
53
  ## [1.27.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes-puppeteer@1.27.4...js/eyes-puppeteer@1.27.5) (2024-06-26)
4
54
 
5
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-puppeteer",
3
- "version": "1.27.5",
3
+ "version": "1.27.6",
4
4
  "description": "Applitools Eyes SDK for Puppeteer",
5
5
  "keywords": [
6
6
  "eyes-puppeteer",
@@ -36,8 +36,8 @@
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.21.0",
40
- "@applitools/spec-driver-puppeteer": "1.4.10"
39
+ "@applitools/eyes": "1.22.0",
40
+ "@applitools/spec-driver-puppeteer": "1.4.11"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -396,6 +396,7 @@ export type ConfigurationPlain = {
396
396
  layoutBreakpoints?: undefined | boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: undefined | boolean; };
397
397
  disableBrowserFetching?: undefined | boolean;
398
398
  waitBeforeCapture?: undefined | number;
399
+ disableNMLUrlCache?: undefined | boolean;
399
400
  };
400
401
  export class Configuration implements Required<ConfigurationPlain> {
401
402
  constructor(config?: undefined | ConfigurationPlain);
@@ -666,6 +667,10 @@ export class Configuration implements Required<ConfigurationPlain> {
666
667
  set dontCloseBatches(dontCloseBatches: boolean);
667
668
  getDontCloseBatches(): boolean;
668
669
  setDontCloseBatches(dontCloseBatches: boolean): Configuration;
670
+ get disableNMLUrlCache(): boolean;
671
+ set disableNMLUrlCache(disableNMLUrlCache: boolean);
672
+ getDisableNMLUrlCache(): boolean;
673
+ setDisableNMLUrlCache(disableNMLUrlCache: boolean): Configuration;
669
674
  }
670
675
  export class BatchClose {
671
676
  static close(settings: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; }): Promise<void>;