@applitools/eyes-selenium 4.77.5 → 4.77.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
+ ## [4.77.6](https://github.com/Applitools-Dev/sdk/compare/js/eyes-selenium@4.77.5...js/eyes-selenium@4.77.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
  ## [4.77.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes-selenium@4.77.4...js/eyes-selenium@4.77.5) (2024-06-26)
4
54
 
5
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-selenium",
3
- "version": "4.77.5",
3
+ "version": "4.77.6",
4
4
  "description": "Applitools Eyes SDK for Selenium WebDriver",
5
5
  "keywords": [
6
6
  "eyes-selenium",
@@ -41,8 +41,8 @@
41
41
  "up:framework": "echo \"$(jq '.devDependencies[\"selenium-webdriver\"] = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
42
42
  },
43
43
  "dependencies": {
44
- "@applitools/eyes": "1.21.0",
45
- "@applitools/spec-driver-selenium": "1.5.81"
44
+ "@applitools/eyes": "1.22.0",
45
+ "@applitools/spec-driver-selenium": "1.5.82"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -395,6 +395,7 @@ export type ConfigurationPlain = {
395
395
  layoutBreakpoints?: undefined | boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: undefined | boolean; };
396
396
  disableBrowserFetching?: undefined | boolean;
397
397
  waitBeforeCapture?: undefined | number;
398
+ disableNMLUrlCache?: undefined | boolean;
398
399
  };
399
400
  export class Configuration implements Required<ConfigurationPlain> {
400
401
  constructor(config?: undefined | ConfigurationPlain);
@@ -665,6 +666,10 @@ export class Configuration implements Required<ConfigurationPlain> {
665
666
  set dontCloseBatches(dontCloseBatches: boolean);
666
667
  getDontCloseBatches(): boolean;
667
668
  setDontCloseBatches(dontCloseBatches: boolean): Configuration;
669
+ get disableNMLUrlCache(): boolean;
670
+ set disableNMLUrlCache(disableNMLUrlCache: boolean);
671
+ getDisableNMLUrlCache(): boolean;
672
+ setDisableNMLUrlCache(disableNMLUrlCache: boolean): Configuration;
668
673
  }
669
674
  export class BatchClose {
670
675
  static close(settings: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; }): Promise<void>;