@applitools/eyes-cypress 3.49.0 → 3.49.1

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,64 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.49.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress@3.49.0...js/eyes-cypress@3.49.1) (2025-01-13)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * 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))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/dom-snapshot bumped to 4.11.14
14
+ #### Bug Fixes
15
+
16
+ * 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))
17
+
18
+
19
+
20
+ * @applitools/snippets bumped to 2.6.4
21
+ #### Bug Fixes
22
+
23
+ * 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))
24
+ * @applitools/dom-capture bumped to 11.5.4
25
+ #### Bug Fixes
26
+
27
+ * 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))
28
+ * @applitools/eyes bumped to 1.31.0
29
+ #### Features
30
+
31
+ * jsonFilePath in offline mode ([#2734](https://github.com/Applitools-Dev/sdk/issues/2734)) ([2f9fbe8](https://github.com/Applitools-Dev/sdk/commit/2f9fbe8fc3c5212db6b7cc58a98b041c3ffd5572))
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/core bumped to 4.29.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
+ #### Bug Fixes
56
+
57
+ * 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))
58
+
59
+
60
+
61
+
3
62
  ## [3.49.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-cypress-v3.48.1...js/eyes-cypress@3.49.0) (2024-12-31)
4
63
 
5
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-cypress",
3
- "version": "3.49.0",
3
+ "version": "3.49.1",
4
4
  "homepage": "https://applitools.com/docs/api-ref/sdk-api/cypress/",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "main": "./index.js",
@@ -54,8 +54,8 @@
54
54
  "setup": "run --top-level xvfb:setup"
55
55
  },
56
56
  "dependencies": {
57
- "@applitools/core": "4.28.0",
58
- "@applitools/eyes": "1.30.0",
57
+ "@applitools/core": "4.29.0",
58
+ "@applitools/eyes": "1.31.0",
59
59
  "@applitools/functional-commons": "1.6.0",
60
60
  "@applitools/logger": "2.1.0",
61
61
  "@applitools/utils": "1.7.7",
package/types/expose.d.ts CHANGED
@@ -358,6 +358,7 @@ export type CypressEyesConfig = {
358
358
  environmentName?: string;
359
359
  forceFullPageScreenshot?: boolean;
360
360
  gitMergeBaseTimestamp?: string;
361
+ latestCommitInfo?: { timestamp: string; sha: string; };
361
362
  hideCaret?: boolean;
362
363
  hideScrollbars?: boolean;
363
364
  hostApp?: string;
@@ -503,6 +504,7 @@ export type appliConfFile = {
503
504
  environmentName?: string;
504
505
  forceFullPageScreenshot?: boolean;
505
506
  gitMergeBaseTimestamp?: string;
507
+ latestCommitInfo?: { timestamp: string; sha: string; };
506
508
  hideCaret?: boolean;
507
509
  hideScrollbars?: boolean;
508
510
  hostApp?: string;