@applitools/eyes-testcafe 6.2.5 → 6.2.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
@@ -13,6 +13,56 @@
13
13
 
14
14
 
15
15
 
16
+ ## [6.2.6](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.2.5...js/eyes-testcafe@6.2.6) (2024-07-23)
17
+
18
+
19
+ ### Dependencies
20
+
21
+ * @applitools/driver bumped to 1.18.0
22
+ #### Features
23
+
24
+ * disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
25
+
26
+
27
+ #### Bug Fixes
28
+
29
+ * executing web script on mobile environment ([#2380](https://github.com/Applitools-Dev/sdk/issues/2380)) ([da2e551](https://github.com/Applitools-Dev/sdk/commit/da2e551e01082d3cc21b9da5b43e6680233c080d))
30
+ * @applitools/ufg-client bumped to 1.12.3
31
+ #### Bug Fixes
32
+
33
+ * 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))
34
+
35
+
36
+ #### Performance Improvements
37
+
38
+ * trim file content when logging it ([#2437](https://github.com/Applitools-Dev/sdk/issues/2437)) ([02ec1f7](https://github.com/Applitools-Dev/sdk/commit/02ec1f79a323af2e89a7428b75212707c761d1ca))
39
+ * @applitools/core bumped to 4.18.0
40
+ #### Features
41
+
42
+ * disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
43
+
44
+
45
+
46
+ * @applitools/spec-driver-webdriver bumped to 1.1.11
47
+
48
+ * @applitools/spec-driver-selenium bumped to 1.5.82
49
+
50
+ * @applitools/spec-driver-puppeteer bumped to 1.4.11
51
+
52
+ * @applitools/screenshoter bumped to 3.8.35
53
+
54
+ * @applitools/nml-client bumped to 1.8.9
55
+
56
+ * @applitools/ec-client bumped to 1.9.3
57
+
58
+ * @applitools/eyes bumped to 1.22.0
59
+ #### Features
60
+
61
+ * disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
62
+
63
+
64
+
65
+
16
66
  ## [6.2.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.2.4...js/eyes-testcafe@6.2.5) (2024-06-26)
17
67
 
18
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-testcafe",
3
- "version": "6.2.5",
3
+ "version": "6.2.6",
4
4
  "description": "Applitools Eyes SDK for TestCafe",
5
5
  "keywords": [
6
6
  "eyes-testcafe",
@@ -68,8 +68,8 @@
68
68
  "up:framework": "echo \"$(jq '.devDependencies.testcafe = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
69
69
  },
70
70
  "dependencies": {
71
- "@applitools/driver": "1.17.5",
72
- "@applitools/eyes": "1.21.0",
71
+ "@applitools/driver": "1.18.0",
72
+ "@applitools/eyes": "1.22.0",
73
73
  "@applitools/utils": "1.7.4"
74
74
  },
75
75
  "devDependencies": {
package/types/index.d.ts CHANGED
@@ -363,6 +363,7 @@ export type ConfigurationPlain = {
363
363
  layoutBreakpoints?: undefined | boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: undefined | boolean; };
364
364
  disableBrowserFetching?: undefined | boolean;
365
365
  waitBeforeCapture?: undefined | number;
366
+ disableNMLUrlCache?: undefined | boolean;
366
367
  };
367
368
  export class Configuration implements Required<ConfigurationPlain> {
368
369
  constructor(config?: undefined | ConfigurationPlain);
@@ -607,6 +608,10 @@ export class Configuration implements Required<ConfigurationPlain> {
607
608
  set dontCloseBatches(dontCloseBatches: boolean);
608
609
  getDontCloseBatches(): boolean;
609
610
  setDontCloseBatches(dontCloseBatches: boolean): Configuration;
611
+ get disableNMLUrlCache(): boolean;
612
+ set disableNMLUrlCache(disableNMLUrlCache: boolean);
613
+ getDisableNMLUrlCache(): boolean;
614
+ setDisableNMLUrlCache(disableNMLUrlCache: boolean): Configuration;
610
615
  }
611
616
  export class BatchClose {
612
617
  static close(settings: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; }): Promise<void>;