@applitools/eyes-images 4.28.5 → 4.28.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.28.6](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.28.5...js/eyes-images@4.28.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.28.5](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.28.4...js/eyes-images@4.28.5) (2024-06-26)
4
54
 
5
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-images",
3
- "version": "4.28.5",
3
+ "version": "4.28.6",
4
4
  "description": "The simplest implementation of Applitools Eyes SDK, uploads images for validation",
5
5
  "keywords": [
6
6
  "eyes-images",
@@ -40,7 +40,7 @@
40
40
  "test:coverage": "APPLITOOLS_SHOW_LOGS=true APPLITOOLS_LOG_FILE=\"./logs/$(uuidgen).log\" APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-images' APPLITOOLS_BATCH_ID=$(uuidgen) MOCHA_GROUP=coverage run --top-level mocha './test/generated-coverage/*.spec.js' --parallel --jobs ${MOCHA_JOBS:-15}"
41
41
  },
42
42
  "dependencies": {
43
- "@applitools/eyes": "1.21.0"
43
+ "@applitools/eyes": "1.22.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -212,6 +212,7 @@ export type ConfigurationPlain = {
212
212
  layoutBreakpoints?: undefined | boolean | Array<number> | { breakpoints: boolean | Array<number>; reload?: undefined | boolean; };
213
213
  disableBrowserFetching?: undefined | boolean;
214
214
  waitBeforeCapture?: undefined | number;
215
+ disableNMLUrlCache?: undefined | boolean;
215
216
  };
216
217
  export class Configuration implements Required<ConfigurationPlain> {
217
218
  constructor(config?: undefined | ConfigurationPlain);
@@ -481,6 +482,10 @@ export class Configuration implements Required<ConfigurationPlain> {
481
482
  set dontCloseBatches(dontCloseBatches: boolean);
482
483
  getDontCloseBatches(): boolean;
483
484
  setDontCloseBatches(dontCloseBatches: boolean): Configuration;
485
+ get disableNMLUrlCache(): boolean;
486
+ set disableNMLUrlCache(disableNMLUrlCache: boolean);
487
+ getDisableNMLUrlCache(): boolean;
488
+ setDisableNMLUrlCache(disableNMLUrlCache: boolean): Configuration;
484
489
  }
485
490
  export type CheckSettingsAutomationPlain = CheckSettingsImagePlain & {
486
491
  frames?: undefined | Array<{ frame: number | ((string | { selector: string; type?: undefined | string; shadow?: undefined | EyesSelector<never>; frame?: undefined | EyesSelector<never>; })); scrollRootElement?: undefined | ((string | { selector: string; type?: undefined | string; shadow?: undefined | EyesSelector<never>; frame?: undefined | EyesSelector<never>; })); } | (number | ((string | { selector: string; type?: undefined | string; shadow?: undefined | EyesSelector<never>; frame?: undefined | EyesSelector<never>; })))>;