@applitools/eyes-images 4.29.1 → 4.29.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
+ ## [4.29.2](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.29.1...js/eyes-images@4.29.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
  ## [4.29.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes-images@4.29.0...js/eyes-images@4.29.1) (2024-12-31)
4
58
 
5
59
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-images",
3
- "version": "4.29.1",
3
+ "version": "4.29.2",
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.30.0"
43
+ "@applitools/eyes": "1.31.0"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -185,6 +185,7 @@ export type ConfigurationPlain = {
185
185
  environmentName?: undefined | string;
186
186
  forceFullPageScreenshot?: undefined | boolean;
187
187
  gitMergeBaseTimestamp?: undefined | string;
188
+ latestCommitInfo?: undefined | { timestamp: string; sha: string; };
188
189
  hideCaret?: undefined | boolean;
189
190
  hideScrollbars?: undefined | boolean;
190
191
  hostApp?: undefined | string;
@@ -359,6 +360,10 @@ export class Configuration implements Required<ConfigurationPlain> {
359
360
  set gitMergeBaseTimestamp(gitMergeBaseTimestamp: string);
360
361
  getGitMergeBaseTimestamp(): string;
361
362
  setGitMergeBaseTimestamp(gitMergeBaseTimestamp: string): Configuration;
363
+ get latestCommitInfo(): { timestamp: string; sha: string; };
364
+ set latestCommitInfo(latestCommitInfo: { timestamp: string; sha: string; });
365
+ getLatestCommitInfo(): { timestamp: string; sha: string; };
366
+ setLatestCommitInfo(latestCommitInfo: { timestamp: string; sha: string; }): Configuration;
362
367
  get hideCaret(): boolean;
363
368
  set hideCaret(hideCaret: boolean);
364
369
  getHideCaret(): boolean;