@applitools/eyes-nightwatch 1.25.15 → 1.25.16

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,59 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.25.16](https://github.com/Applitools-Dev/sdk/compare/js/eyes-nightwatch@1.25.15...js/eyes-nightwatch@1.25.16) (2025-01-13)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/dom-snapshot bumped to 4.11.14
9
+ #### Bug Fixes
10
+
11
+ * remove side-eyes and fix code scanning issues ([#2712](https://github.com/Applitools-Dev/sdk/issues/2712)) ([cda98e4](https://github.com/Applitools-Dev/sdk/commit/cda98e4748c73cd97c11f646a2b5e26ff9416892))
12
+
13
+
14
+
15
+ * @applitools/snippets bumped to 2.6.4
16
+ #### Bug Fixes
17
+
18
+ * remove side-eyes and fix code scanning issues ([#2712](https://github.com/Applitools-Dev/sdk/issues/2712)) ([cda98e4](https://github.com/Applitools-Dev/sdk/commit/cda98e4748c73cd97c11f646a2b5e26ff9416892))
19
+ * @applitools/dom-capture bumped to 11.5.4
20
+ #### Bug Fixes
21
+
22
+ * remove side-eyes and fix code scanning issues ([#2712](https://github.com/Applitools-Dev/sdk/issues/2712)) ([cda98e4](https://github.com/Applitools-Dev/sdk/commit/cda98e4748c73cd97c11f646a2b5e26ff9416892))
23
+ * @applitools/core bumped to 4.29.0
24
+ #### Features
25
+
26
+ * jsonFilePath in offline mode ([#2734](https://github.com/Applitools-Dev/sdk/issues/2734)) ([2f9fbe8](https://github.com/Applitools-Dev/sdk/commit/2f9fbe8fc3c5212db6b7cc58a98b041c3ffd5572))
27
+
28
+
29
+ #### Bug Fixes
30
+
31
+ * support batching tests in distributed env - close batch only when required ([#2733](https://github.com/Applitools-Dev/sdk/issues/2733)) ([2e59e4a](https://github.com/Applitools-Dev/sdk/commit/2e59e4a76edcc02b8888dfc78a42749bae76f79c))
32
+
33
+
34
+
35
+ * @applitools/spec-driver-selenium bumped to 1.5.94
36
+
37
+ * @applitools/screenshoter bumped to 3.10.3
38
+
39
+ * @applitools/ec-client bumped to 1.10.1
40
+
41
+ * @applitools/eyes bumped to 1.31.0
42
+ #### Features
43
+
44
+ * jsonFilePath in offline mode ([#2734](https://github.com/Applitools-Dev/sdk/issues/2734)) ([2f9fbe8](https://github.com/Applitools-Dev/sdk/commit/2f9fbe8fc3c5212db6b7cc58a98b041c3ffd5572))
45
+
46
+
47
+
48
+ * @applitools/driver bumped to 1.20.3
49
+
50
+ * @applitools/spec-driver-webdriver bumped to 1.1.23
51
+
52
+ * @applitools/spec-driver-puppeteer bumped to 1.4.23
53
+
54
+ * @applitools/nml-client bumped to 1.8.22
55
+
56
+
3
57
  ## [1.25.15](https://github.com/Applitools-Dev/sdk/compare/js/eyes-nightwatch@1.25.14...js/eyes-nightwatch@1.25.15) (2024-12-31)
4
58
 
5
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-nightwatch",
3
- "version": "1.25.15",
3
+ "version": "1.25.16",
4
4
  "description": "Applitools Eyes SDK for Nightwatch.js",
5
5
  "keywords": [
6
6
  "eyes-nightwatch",
@@ -43,9 +43,9 @@
43
43
  "up:framework": "echo \"$(jq '.devDependencies.nightwatch = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
44
44
  },
45
45
  "dependencies": {
46
- "@applitools/driver": "1.20.2",
47
- "@applitools/eyes": "1.30.0",
48
- "@applitools/spec-driver-webdriver": "1.1.22",
46
+ "@applitools/driver": "1.20.3",
47
+ "@applitools/eyes": "1.31.0",
48
+ "@applitools/spec-driver-webdriver": "1.1.23",
49
49
  "@applitools/utils": "1.7.7",
50
50
  "webdriver": "7.31.1"
51
51
  },
package/types/index.d.ts CHANGED
@@ -480,6 +480,7 @@ export type ConfigurationPlain = {
480
480
  environmentName?: undefined | string;
481
481
  forceFullPageScreenshot?: undefined | boolean;
482
482
  gitMergeBaseTimestamp?: undefined | string;
483
+ latestCommitInfo?: undefined | { timestamp: string; sha: string; };
483
484
  hideCaret?: undefined | boolean;
484
485
  hideScrollbars?: undefined | boolean;
485
486
  hostApp?: undefined | string;
@@ -654,6 +655,10 @@ export class Configuration implements Required<ConfigurationPlain> {
654
655
  set gitMergeBaseTimestamp(gitMergeBaseTimestamp: string);
655
656
  getGitMergeBaseTimestamp(): string;
656
657
  setGitMergeBaseTimestamp(gitMergeBaseTimestamp: string): Configuration;
658
+ get latestCommitInfo(): { timestamp: string; sha: string; };
659
+ set latestCommitInfo(latestCommitInfo: { timestamp: string; sha: string; });
660
+ getLatestCommitInfo(): { timestamp: string; sha: string; };
661
+ setLatestCommitInfo(latestCommitInfo: { timestamp: string; sha: string; }): Configuration;
657
662
  get hideCaret(): boolean;
658
663
  set hideCaret(hideCaret: boolean);
659
664
  getHideCaret(): boolean;