@applitools/eyes 1.21.0 → 1.22.0
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 +48 -0
- package/dist/input/Configuration.js +14 -0
- package/package.json +2 -2
- package/types/input/Configuration.d.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.22.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.21.0...js/eyes@1.22.0) (2024-07-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/driver bumped to 1.18.0
|
|
14
|
+
#### Features
|
|
15
|
+
|
|
16
|
+
* disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* executing web script on mobile environment ([#2380](https://github.com/Applitools-Dev/sdk/issues/2380)) ([da2e551](https://github.com/Applitools-Dev/sdk/commit/da2e551e01082d3cc21b9da5b43e6680233c080d))
|
|
22
|
+
* @applitools/spec-driver-webdriver bumped to 1.1.11
|
|
23
|
+
|
|
24
|
+
* @applitools/spec-driver-selenium bumped to 1.5.82
|
|
25
|
+
|
|
26
|
+
* @applitools/screenshoter bumped to 3.8.35
|
|
27
|
+
|
|
28
|
+
* @applitools/ufg-client bumped to 1.12.3
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* 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))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
#### Performance Improvements
|
|
35
|
+
|
|
36
|
+
* trim file content when logging it ([#2437](https://github.com/Applitools-Dev/sdk/issues/2437)) ([02ec1f7](https://github.com/Applitools-Dev/sdk/commit/02ec1f79a323af2e89a7428b75212707c761d1ca))
|
|
37
|
+
* @applitools/spec-driver-puppeteer bumped to 1.4.11
|
|
38
|
+
|
|
39
|
+
* @applitools/nml-client bumped to 1.8.9
|
|
40
|
+
|
|
41
|
+
* @applitools/ec-client bumped to 1.9.3
|
|
42
|
+
|
|
43
|
+
* @applitools/core bumped to 4.18.0
|
|
44
|
+
#### Features
|
|
45
|
+
|
|
46
|
+
* disable broker url cache ([#2428](https://github.com/Applitools-Dev/sdk/issues/2428)) ([cb8d5fe](https://github.com/Applitools-Dev/sdk/commit/cb8d5fefb13d3ab42984d2bd4d4ac3d4e10646b0))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
3
51
|
## [1.21.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.20.1...js/eyes@1.21.0) (2024-06-26)
|
|
4
52
|
|
|
5
53
|
|
|
@@ -969,6 +969,19 @@ class ConfigurationData {
|
|
|
969
969
|
this.dontCloseBatches = dontCloseBatches;
|
|
970
970
|
return this;
|
|
971
971
|
}
|
|
972
|
+
get disableNMLUrlCache() {
|
|
973
|
+
return this._config.disableNMLUrlCache;
|
|
974
|
+
}
|
|
975
|
+
set disableNMLUrlCache(disableNMLUrlCache) {
|
|
976
|
+
this._config.disableNMLUrlCache = disableNMLUrlCache;
|
|
977
|
+
}
|
|
978
|
+
getDisableNMLUrlCache() {
|
|
979
|
+
return this.disableNMLUrlCache;
|
|
980
|
+
}
|
|
981
|
+
setDisableNMLUrlCache(disableNMLUrlCache) {
|
|
982
|
+
this.disableNMLUrlCache = disableNMLUrlCache;
|
|
983
|
+
return this;
|
|
984
|
+
}
|
|
972
985
|
/** @internal */
|
|
973
986
|
toObject() {
|
|
974
987
|
return this._config;
|
|
@@ -1009,6 +1022,7 @@ class ConfigurationData {
|
|
|
1009
1022
|
ignoreGitBranching: this.ignoreGitMergeBase,
|
|
1010
1023
|
saveDiffs: this.saveDiffs,
|
|
1011
1024
|
keepBatchOpen: this.dontCloseBatches,
|
|
1025
|
+
disableBrokerUrlCache: this.disableNMLUrlCache,
|
|
1012
1026
|
}),
|
|
1013
1027
|
screenshot: utils.general.removeUndefinedProps({
|
|
1014
1028
|
fully: this.forceFullPageScreenshot,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"applitools",
|
|
6
6
|
"eyes",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"test": "run --top-level mocha './test/**/*.spec.ts'"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@applitools/core": "4.
|
|
48
|
+
"@applitools/core": "4.18.0",
|
|
49
49
|
"@applitools/logger": "2.0.18",
|
|
50
50
|
"@applitools/utils": "1.7.4"
|
|
51
51
|
},
|
|
@@ -84,6 +84,7 @@ export type Configuration<TSpec extends Core.SpecType = Core.SpecType> = {
|
|
|
84
84
|
};
|
|
85
85
|
disableBrowserFetching?: boolean;
|
|
86
86
|
waitBeforeCapture?: number;
|
|
87
|
+
disableNMLUrlCache?: boolean;
|
|
87
88
|
};
|
|
88
89
|
export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecType> implements Required<Configuration<TSpec>> {
|
|
89
90
|
protected static readonly _spec: Core.SpecDriver<Core.SpecType>;
|
|
@@ -379,6 +380,10 @@ export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecTy
|
|
|
379
380
|
getDontCloseBatches(): boolean;
|
|
380
381
|
/** @undocumented */
|
|
381
382
|
setDontCloseBatches(dontCloseBatches: boolean): this;
|
|
383
|
+
get disableNMLUrlCache(): boolean;
|
|
384
|
+
set disableNMLUrlCache(disableNMLUrlCache: boolean);
|
|
385
|
+
getDisableNMLUrlCache(): boolean;
|
|
386
|
+
setDisableNMLUrlCache(disableNMLUrlCache: boolean): this;
|
|
382
387
|
/** @internal */
|
|
383
388
|
toObject(): Configuration<TSpec>;
|
|
384
389
|
/** @internal */
|