@applitools/eyes-puppeteer 1.28.1 → 1.28.2

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.28.2](https://github.com/Applitools-Dev/sdk/compare/js/eyes-puppeteer@1.28.1...js/eyes-puppeteer@1.28.2) (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/driver bumped to 1.20.3
36
+
37
+ * @applitools/spec-driver-webdriver bumped to 1.1.23
38
+
39
+ * @applitools/spec-driver-selenium bumped to 1.5.94
40
+
41
+ * @applitools/spec-driver-puppeteer bumped to 1.4.23
42
+
43
+ * @applitools/screenshoter bumped to 3.10.3
44
+
45
+ * @applitools/nml-client bumped to 1.8.22
46
+
47
+ * @applitools/ec-client bumped to 1.10.1
48
+
49
+ * @applitools/eyes bumped to 1.31.0
50
+ #### Features
51
+
52
+ * jsonFilePath in offline mode ([#2734](https://github.com/Applitools-Dev/sdk/issues/2734)) ([2f9fbe8](https://github.com/Applitools-Dev/sdk/commit/2f9fbe8fc3c5212db6b7cc58a98b041c3ffd5572))
53
+
54
+
55
+
56
+
3
57
  ## [1.28.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes-puppeteer@1.28.0...js/eyes-puppeteer@1.28.1) (2024-12-31)
4
58
 
5
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-puppeteer",
3
- "version": "1.28.1",
3
+ "version": "1.28.2",
4
4
  "description": "Applitools Eyes SDK for Puppeteer",
5
5
  "keywords": [
6
6
  "eyes-puppeteer",
@@ -37,8 +37,8 @@
37
37
  "up:framework": "echo \"$(jq '.devDependencies.puppeteer = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
38
38
  },
39
39
  "dependencies": {
40
- "@applitools/eyes": "1.30.0",
41
- "@applitools/spec-driver-puppeteer": "1.4.22"
40
+ "@applitools/eyes": "1.31.0",
41
+ "@applitools/spec-driver-puppeteer": "1.4.23"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -481,6 +481,7 @@ export type ConfigurationPlain = {
481
481
  environmentName?: undefined | string;
482
482
  forceFullPageScreenshot?: undefined | boolean;
483
483
  gitMergeBaseTimestamp?: undefined | string;
484
+ latestCommitInfo?: undefined | { timestamp: string; sha: string; };
484
485
  hideCaret?: undefined | boolean;
485
486
  hideScrollbars?: undefined | boolean;
486
487
  hostApp?: undefined | string;
@@ -655,6 +656,10 @@ export class Configuration implements Required<ConfigurationPlain> {
655
656
  set gitMergeBaseTimestamp(gitMergeBaseTimestamp: string);
656
657
  getGitMergeBaseTimestamp(): string;
657
658
  setGitMergeBaseTimestamp(gitMergeBaseTimestamp: string): Configuration;
659
+ get latestCommitInfo(): { timestamp: string; sha: string; };
660
+ set latestCommitInfo(latestCommitInfo: { timestamp: string; sha: string; });
661
+ getLatestCommitInfo(): { timestamp: string; sha: string; };
662
+ setLatestCommitInfo(latestCommitInfo: { timestamp: string; sha: string; }): Configuration;
658
663
  get hideCaret(): boolean;
659
664
  set hideCaret(hideCaret: boolean);
660
665
  getHideCaret(): boolean;