@applitools/eyes-playwright 1.34.1 → 1.35.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,66 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.35.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-playwright@1.34.1...js/eyes-playwright@1.35.0) (2025-01-13)
4
+
5
+
6
+ ### Features
7
+
8
+ * jsonFilePath in offline mode ([#2734](https://github.com/Applitools-Dev/sdk/issues/2734)) ([2f9fbe8](https://github.com/Applitools-Dev/sdk/commit/2f9fbe8fc3c5212db6b7cc58a98b041c3ffd5572))
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/core bumped to 4.29.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
+ #### Bug Fixes
35
+
36
+ * 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))
37
+
38
+
39
+
40
+ * @applitools/driver bumped to 1.20.3
41
+
42
+ * @applitools/spec-driver-webdriver bumped to 1.1.23
43
+
44
+ * @applitools/spec-driver-selenium bumped to 1.5.94
45
+
46
+ * @applitools/spec-driver-playwright bumped to 1.5.6
47
+
48
+ * @applitools/spec-driver-puppeteer bumped to 1.4.23
49
+
50
+ * @applitools/screenshoter bumped to 3.10.3
51
+
52
+ * @applitools/nml-client bumped to 1.8.22
53
+
54
+ * @applitools/ec-client bumped to 1.10.1
55
+
56
+ * @applitools/eyes bumped to 1.31.0
57
+ #### Features
58
+
59
+ * jsonFilePath in offline mode ([#2734](https://github.com/Applitools-Dev/sdk/issues/2734)) ([2f9fbe8](https://github.com/Applitools-Dev/sdk/commit/2f9fbe8fc3c5212db6b7cc58a98b041c3ffd5572))
60
+
61
+
62
+
63
+
3
64
  ## [1.34.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes-playwright@1.34.0...js/eyes-playwright@1.34.1) (2024-12-31)
4
65
 
5
66
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-playwright",
3
- "version": "1.34.1",
3
+ "version": "1.35.0",
4
4
  "description": "Applitools Eyes SDK for Playwright",
5
5
  "keywords": [
6
6
  "eyes-playwright",
@@ -59,8 +59,8 @@
59
59
  "up:framework": "echo \"$(jq '.devDependencies.playwright = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
60
60
  },
61
61
  "dependencies": {
62
- "@applitools/eyes": "1.30.0",
63
- "@applitools/spec-driver-playwright": "1.5.5",
62
+ "@applitools/eyes": "1.31.0",
63
+ "@applitools/spec-driver-playwright": "1.5.6",
64
64
  "@applitools/utils": "1.7.7",
65
65
  "@inquirer/prompts": "7.0.1",
66
66
  "chalk": "4.1.2",
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;