@applitools/eyes-testcafe 6.3.45 → 6.3.47

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
@@ -13,6 +13,71 @@
13
13
 
14
14
 
15
15
 
16
+ ## [6.3.47](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.46...js/eyes-testcafe@6.3.47) (2026-06-15)
17
+
18
+
19
+ ### Dependencies
20
+
21
+ * @applitools/nml-client bumped to 1.11.32
22
+
23
+ * @applitools/core-base bumped to 1.35.2
24
+ #### Bug Fixes
25
+
26
+ * re-trigger release for packages missed in the AD-14089 release | AD-14089 ([#3925](https://github.com/Applitools-Dev/sdk/issues/3925)) ([0880c34](https://github.com/Applitools-Dev/sdk/commit/0880c34b66221025e70ca7e3e3fab7b45a9f8d9e))
27
+ * @applitools/ec-client bumped to 1.12.34
28
+
29
+ * @applitools/core bumped to 4.65.1
30
+
31
+ * @applitools/eyes bumped to 1.43.3
32
+
33
+
34
+ ## [6.3.46](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.45...js/eyes-testcafe@6.3.46) (2026-06-14)
35
+
36
+
37
+ ### Dependencies
38
+
39
+ * @applitools/dom-snapshot bumped to 4.17.3
40
+ #### Bug Fixes
41
+
42
+ * capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
43
+
44
+
45
+
46
+ * @applitools/snippets bumped to 2.9.3
47
+ #### Bug Fixes
48
+
49
+ * capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
50
+ * @applitools/core bumped to 4.65.0
51
+ #### Features
52
+
53
+ * add useLatestEnvBaseline to session startInfo | AD-14089 ([#3887](https://github.com/Applitools-Dev/sdk/issues/3887)) ([b15b9af](https://github.com/Applitools-Dev/sdk/commit/b15b9af34328193f6705c90a26c24aa1e4b23d1c))
54
+
55
+
56
+ #### Bug Fixes
57
+
58
+ * capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
59
+
60
+
61
+
62
+ * @applitools/driver bumped to 1.26.3
63
+
64
+ * @applitools/spec-driver-webdriver bumped to 1.6.3
65
+
66
+ * @applitools/spec-driver-selenium bumped to 1.8.3
67
+
68
+ * @applitools/spec-driver-playwright bumped to 1.9.3
69
+
70
+ * @applitools/spec-driver-puppeteer bumped to 1.8.3
71
+
72
+ * @applitools/screenshoter bumped to 3.12.22
73
+
74
+ * @applitools/nml-client bumped to 1.11.31
75
+
76
+ * @applitools/ec-client bumped to 1.12.33
77
+
78
+ * @applitools/eyes bumped to 1.43.2
79
+
80
+
16
81
  ## [6.3.45](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.44...js/eyes-testcafe@6.3.45) (2026-06-09)
17
82
 
18
83
 
package/dist/legacy.js CHANGED
@@ -102,6 +102,9 @@ function transformConfig(options) {
102
102
  const config = { ...options };
103
103
  if (options.concurrency)
104
104
  config.concurrentSessions = options.concurrency;
105
+ if (options.baselineEnvOptions) {
106
+ config.baselineEnvOptions = options.baselineEnvOptions;
107
+ }
105
108
  if (options.envName) {
106
109
  config.environmentName = options.envName;
107
110
  delete config.envName;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-testcafe",
3
- "version": "6.3.45",
3
+ "version": "6.3.47",
4
4
  "description": "Applitools Eyes SDK for TestCafe",
5
5
  "keywords": [
6
6
  "eyes-testcafe",
@@ -68,8 +68,8 @@
68
68
  "up:framework": "echo \"$(jq '.devDependencies.testcafe = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
69
69
  },
70
70
  "dependencies": {
71
- "@applitools/driver": "1.26.2",
72
- "@applitools/eyes": "1.43.1",
71
+ "@applitools/driver": "1.26.3",
72
+ "@applitools/eyes": "1.43.3",
73
73
  "@applitools/utils": "1.14.5"
74
74
  },
75
75
  "devDependencies": {
package/types/index.d.ts CHANGED
@@ -119,7 +119,7 @@ export class Eyes {
119
119
  getBaselineName(): string;
120
120
  setBaselineName(baselineName: string): void;
121
121
  getBaselineEnvName(): string;
122
- setBaselineEnvName(baselineEnvName: string): void;
122
+ setBaselineEnvName(baselineEnvName: string, options?: undefined | BaselineEnvOptions): void;
123
123
  getBranchName(): string;
124
124
  setBranchName(branchName: string): void;
125
125
  getHostApp(): string;
@@ -511,7 +511,7 @@ export class Configuration implements Required<ConfigurationPlain> {
511
511
  get baselineEnvName(): string;
512
512
  set baselineEnvName(baselineEnvName: string);
513
513
  getBaselineEnvName(): string;
514
- setBaselineEnvName(baselineEnvName: string): Configuration;
514
+ setBaselineEnvName(baselineEnvName: string, options?: undefined | BaselineEnvOptions): Configuration;
515
515
  get batch(): BatchInfoPlain;
516
516
  set batch(batch: BatchInfoPlain);
517
517
  getBatch(): BatchInfo;
@@ -781,6 +781,7 @@ export type TestCafeConfiguration = {
781
781
  batchSequenceName?: undefined | string;
782
782
  batchSequence?: undefined | string;
783
783
  baselineEnvName?: undefined | string;
784
+ baselineEnvOptions?: undefined | BaselineEnvOptions;
784
785
  envName?: undefined | string;
785
786
  proxy?: undefined | string | ProxySettingsPlain;
786
787
  ignoreCaret?: undefined | boolean;
@@ -1365,6 +1366,7 @@ export const TargetImage: {
1365
1366
  path(imagePath: string): CheckSettingsImage;
1366
1367
  url(imageUrl: string | URL): CheckSettingsImage;
1367
1368
  };
1369
+ export type BaselineEnvOptions = { useLatestEnvBaseline?: undefined | boolean; };
1368
1370
  export type CutProviderPlain = { top: number; right: number; bottom: number; left: number; } | { x: number; y: number; width: number; height: number; };
1369
1371
  export class CutProvider implements Required<{
1370
1372
  x: number;