@applitools/core 4.51.0 → 4.52.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 CHANGED
@@ -1,5 +1,74 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.52.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.51.0...js/core@4.52.0) (2025-11-09)
4
+
5
+
6
+ ### Features
7
+
8
+ * restart cache and keepalive | FLD-3773 ([#3326](https://github.com/Applitools-Dev/sdk/issues/3326)) ([0fd12ca](https://github.com/Applitools-Dev/sdk/commit/0fd12ca703b4546560b563076a38f9ada24acc75))
9
+
10
+
11
+ ### Performance Improvements
12
+
13
+ * remove dynamic loading of Dom capture and Dom snapshot ([#3322](https://github.com/Applitools-Dev/sdk/issues/3322)) ([7d15ee9](https://github.com/Applitools-Dev/sdk/commit/7d15ee98d5d39c7e478b6bfe3e14b8eea93937e5))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * @applitools/utils bumped to 1.13.0
19
+ #### Features
20
+
21
+ * restart cache and keepalive | FLD-3773 ([#3326](https://github.com/Applitools-Dev/sdk/issues/3326)) ([0fd12ca](https://github.com/Applitools-Dev/sdk/commit/0fd12ca703b4546560b563076a38f9ada24acc75))
22
+ * @applitools/dom-snapshot bumped to 4.15.0
23
+ #### Features
24
+
25
+ * add support for adopted stylesheets with nesting | FLD-3212 ([#3325](https://github.com/Applitools-Dev/sdk/issues/3325)) ([8587926](https://github.com/Applitools-Dev/sdk/commit/8587926b0d6ef820cfbd8f89ddb062a3d77f65ab))
26
+
27
+
28
+
29
+ * @applitools/dom-capture bumped to 11.6.6
30
+ #### Performance Improvements
31
+
32
+ * remove dynamic loading of Dom capture and Dom snapshot ([#3322](https://github.com/Applitools-Dev/sdk/issues/3322)) ([7d15ee9](https://github.com/Applitools-Dev/sdk/commit/7d15ee98d5d39c7e478b6bfe3e14b8eea93937e5))
33
+
34
+
35
+
36
+ * @applitools/logger bumped to 2.2.5
37
+
38
+ * @applitools/socket bumped to 1.3.6
39
+
40
+ * @applitools/req bumped to 1.8.5
41
+
42
+ * @applitools/image bumped to 1.2.4
43
+
44
+ * @applitools/driver bumped to 1.24.1
45
+
46
+ * @applitools/spec-driver-webdriver bumped to 1.5.1
47
+
48
+ * @applitools/spec-driver-selenium bumped to 1.7.7
49
+
50
+ * @applitools/spec-driver-puppeteer bumped to 1.6.7
51
+
52
+ * @applitools/screenshoter bumped to 3.12.8
53
+
54
+ * @applitools/nml-client bumped to 1.11.10
55
+
56
+ * @applitools/tunnel-client bumped to 1.11.3
57
+
58
+ * @applitools/ufg-client bumped to 1.18.1
59
+
60
+ * @applitools/core-base bumped to 1.29.0
61
+ #### Features
62
+
63
+ * restart cache and keepalive | FLD-3773 ([#3326](https://github.com/Applitools-Dev/sdk/issues/3326)) ([0fd12ca](https://github.com/Applitools-Dev/sdk/commit/0fd12ca703b4546560b563076a38f9ada24acc75))
64
+
65
+
66
+
67
+ * @applitools/ec-client bumped to 1.12.12
68
+
69
+ * @applitools/test-server bumped to 1.3.4
70
+
71
+
3
72
  ## [4.51.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.50.4...js/core@4.51.0) (2025-11-03)
4
73
 
5
74
 
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.takeDomCapture = void 0;
4
4
  const req_1 = require("@applitools/req");
5
- const { getCaptureDomPoll, getPollResult, getCaptureDomPollForIE, getPollResultForIE, } = require('@applitools/dom-capture');
5
+ const { captureDomPoll, pollResult, captureDomPollForIE, pollResultForIE } = require('@applitools/dom-capture');
6
6
  async function takeDomCapture({ driver, settings, logger, }) {
7
7
  var _a;
8
8
  const environment = await driver.getEnvironment();
@@ -15,11 +15,11 @@ async function takeDomCapture({ driver, settings, logger, }) {
15
15
  };
16
16
  const scripts = {
17
17
  main: features.canExecuteOnlyFunctionScripts
18
- ? require('@applitools/dom-capture').captureDomPoll
19
- : `return (${isLegacyBrowser ? await getCaptureDomPollForIE() : await getCaptureDomPoll()}).apply(null, arguments);`,
18
+ ? captureDomPoll
19
+ : `/* @applitools/dom-capture */return (${isLegacyBrowser ? captureDomPollForIE : captureDomPoll}).apply(null, arguments);`,
20
20
  poll: features.canExecuteOnlyFunctionScripts
21
- ? require('@applitools/dom-capture').pollResult
22
- : `return (${isLegacyBrowser ? await getPollResultForIE() : await getPollResult()}).apply(null, arguments);`,
21
+ ? pollResult
22
+ : `/* @applitools/dom-capture */return (${isLegacyBrowser ? pollResultForIE : pollResult}).apply(null, arguments);`,
23
23
  };
24
24
  const url = await driver.getUrl();
25
25
  const dom = await captureContextDom(driver.mainContext);
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.takeDomSnapshot = void 0;
27
27
  const utils = __importStar(require("@applitools/utils"));
28
- const { getProcessPagePoll, getPollResult } = require('@applitools/dom-snapshot');
28
+ const { processPagePoll, pollResult } = require('@applitools/dom-snapshot');
29
29
  async function takeDomSnapshot({ context, settings, logger, }) {
30
30
  var _a, _b;
31
31
  const driver = context.driver;
@@ -57,11 +57,11 @@ async function takeDomSnapshot({ context, settings, logger, }) {
57
57
  };
58
58
  const scripts = {
59
59
  main: features.canExecuteOnlyFunctionScripts
60
- ? require('@applitools/dom-snapshot').processPagePoll
61
- : `return (${await getProcessPagePoll()}).apply(null, arguments);`,
60
+ ? processPagePoll
61
+ : `/* @applitools/dom-snapshot@1 */ return (${processPagePoll}).apply(null, arguments);`,
62
62
  poll: features.canExecuteOnlyFunctionScripts
63
- ? require('@applitools/dom-snapshot').pollResult
64
- : `return (${await getPollResult()}).apply(null, arguments);`,
63
+ ? pollResult
64
+ : `/* @applitools/dom-snapshot@1 */ return (${pollResult}).apply(null, arguments);`,
65
65
  };
66
66
  const snapshot = await context.executePoll(scripts, {
67
67
  main: arg,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "4.51.0",
3
+ "version": "4.52.0",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -79,20 +79,20 @@
79
79
  }
80
80
  },
81
81
  "dependencies": {
82
- "@applitools/core-base": "1.28.2",
83
- "@applitools/dom-capture": "11.6.5",
84
- "@applitools/dom-snapshot": "4.14.0",
85
- "@applitools/driver": "1.24.0",
86
- "@applitools/ec-client": "1.12.11",
87
- "@applitools/logger": "2.2.4",
88
- "@applitools/nml-client": "1.11.9",
89
- "@applitools/req": "1.8.4",
90
- "@applitools/screenshoter": "3.12.7",
82
+ "@applitools/core-base": "1.29.0",
83
+ "@applitools/dom-capture": "11.6.6",
84
+ "@applitools/dom-snapshot": "4.15.0",
85
+ "@applitools/driver": "1.24.1",
86
+ "@applitools/ec-client": "1.12.12",
87
+ "@applitools/logger": "2.2.5",
88
+ "@applitools/nml-client": "1.11.10",
89
+ "@applitools/req": "1.8.5",
90
+ "@applitools/screenshoter": "3.12.8",
91
91
  "@applitools/snippets": "2.7.0",
92
- "@applitools/socket": "1.3.5",
93
- "@applitools/spec-driver-webdriver": "1.5.0",
94
- "@applitools/ufg-client": "1.18.0",
95
- "@applitools/utils": "1.12.0",
92
+ "@applitools/socket": "1.3.6",
93
+ "@applitools/spec-driver-webdriver": "1.5.1",
94
+ "@applitools/ufg-client": "1.18.1",
95
+ "@applitools/utils": "1.13.0",
96
96
  "@types/ws": "8.5.5",
97
97
  "abort-controller": "3.0.0",
98
98
  "chalk": "4.1.2",
@@ -106,11 +106,11 @@
106
106
  "devDependencies": {
107
107
  "@applitools/bongo": "^5.10.0",
108
108
  "@applitools/sea": "^1.0.0",
109
- "@applitools/spec-driver-puppeteer": "^1.6.6",
110
- "@applitools/spec-driver-selenium": "^1.7.6",
111
- "@applitools/test-server": "^1.3.3",
109
+ "@applitools/spec-driver-puppeteer": "^1.6.7",
110
+ "@applitools/spec-driver-selenium": "^1.7.7",
111
+ "@applitools/test-server": "^1.3.4",
112
112
  "@applitools/test-utils": "^1.5.17",
113
- "@applitools/tunnel-client": "^1.11.2",
113
+ "@applitools/tunnel-client": "^1.11.3",
114
114
  "@types/mocha": "^10.0.7",
115
115
  "@types/node": "^12.20.55",
116
116
  "@types/selenium-webdriver": "^4.1.2",
@@ -10,5 +10,6 @@ export declare function makeGetECClient({ logger: mainLogger }: Options): (({ se
10
10
  getCachedValues(): Promise<ECClient>[];
11
11
  setCachedValue(key: any, value: Promise<ECClient>): void;
12
12
  clearCache(): void;
13
+ TTL?: number | undefined;
13
14
  };
14
15
  export {};
@@ -14,5 +14,6 @@ export declare function makeGetUFGClient({ client, fetchConcurrency, offlineLoca
14
14
  getCachedValues(): Promise<UFGClient>[];
15
15
  setCachedValue(key: any, value: Promise<UFGClient>): void;
16
16
  clearCache(): void;
17
+ TTL?: number | undefined;
17
18
  };
18
19
  export {};
@@ -29,11 +29,13 @@ export declare const extractLatestCommitInfo: (({ execOptions, logger, }: Extrac
29
29
  sha: string;
30
30
  } | undefined>): void;
31
31
  clearCache(): void;
32
+ TTL?: number | undefined;
32
33
  };
33
34
  export declare const extractGitBranch: (({ execOptions, logger }: Options) => Promise<string | undefined>) & {
34
35
  getCachedValues(): Promise<string | undefined>[];
35
36
  setCachedValue(key: any, value: Promise<string | undefined>): void;
36
37
  clearCache(): void;
38
+ TTL?: number | undefined;
37
39
  };
38
40
  export declare const extractGitRepo: (({ execOptions, logger }: Options) => Promise<{
39
41
  name?: string;
@@ -48,12 +50,14 @@ export declare const extractGitRepo: (({ execOptions, logger }: Options) => Prom
48
50
  owner?: string | undefined;
49
51
  }>): void;
50
52
  clearCache(): void;
53
+ TTL?: number | undefined;
51
54
  };
52
55
  export declare function extractBuildIdFromCI(): Promise<string | undefined>;
53
56
  export declare const extractBranchingTimestamp: (({ branchName, parentBranchName, execOptions, logger, }: ExtractGitBranchingTimestampOptions) => Promise<string | undefined>) & {
54
57
  getCachedValues(): Promise<string | undefined>[];
55
58
  setCachedValue(key: any, value: Promise<string | undefined>): void;
56
59
  clearCache(): void;
60
+ TTL?: number | undefined;
57
61
  };
58
62
  export declare function isISODate(str: string): boolean;
59
63
  export {};
@@ -4,26 +4,31 @@ declare const extractors: {
4
4
  getCachedValues(): Promise<string>[];
5
5
  setCachedValue(key: any, value: Promise<string>): void;
6
6
  clearCache(): void;
7
+ TTL?: number | undefined;
7
8
  };
8
9
  java: typeof extractLatestJavaPackageVersion & {
9
10
  getCachedValues(): Promise<string>[];
10
11
  setCachedValue(key: any, value: Promise<string>): void;
11
12
  clearCache(): void;
13
+ TTL?: number | undefined;
12
14
  };
13
15
  dotnet: typeof extractLatestDotNetPackageVersion & {
14
16
  getCachedValues(): Promise<string>[];
15
17
  setCachedValue(key: any, value: Promise<string>): void;
16
18
  clearCache(): void;
19
+ TTL?: number | undefined;
17
20
  };
18
21
  python: typeof extractLatestPythonPackageVersion & {
19
22
  getCachedValues(): Promise<string>[];
20
23
  setCachedValue(key: any, value: Promise<string>): void;
21
24
  clearCache(): void;
25
+ TTL?: number | undefined;
22
26
  };
23
27
  ruby: typeof extractLatestRubyPackageVersion & {
24
28
  getCachedValues(): Promise<string>[];
25
29
  setCachedValue(key: any, value: Promise<string>): void;
26
30
  clearCache(): void;
31
+ TTL?: number | undefined;
27
32
  };
28
33
  };
29
34
  export declare function validateSdkVersion(sdk: {