@applitools/eyes-testcafe 6.3.43 → 6.3.45

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,69 @@
13
13
 
14
14
 
15
15
 
16
+ ## [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
+
18
+
19
+ ### Dependencies
20
+
21
+ * @applitools/req bumped to 1.11.0
22
+ #### Features
23
+
24
+ * add HTTP/2 proxy support (AD-13916) ([#3860](https://github.com/Applitools-Dev/sdk/issues/3860)) ([87cfb3e](https://github.com/Applitools-Dev/sdk/commit/87cfb3e2772cc8443d961b7916cc701f894b84cb))
25
+ * @applitools/nml-client bumped to 1.11.30
26
+
27
+ * @applitools/tunnel-client bumped to 1.12.0
28
+ #### Features
29
+
30
+ * add PAC-file proxy routing for tunnel agent | FLD-3783 ([#3897](https://github.com/Applitools-Dev/sdk/issues/3897)) ([e4f5818](https://github.com/Applitools-Dev/sdk/commit/e4f58181f4e835c9823915ecab9e99a9e150e493))
31
+
32
+
33
+
34
+ * @applitools/ufg-client bumped to 1.22.3
35
+
36
+ * @applitools/core-base bumped to 1.35.1
37
+
38
+ * @applitools/ec-client bumped to 1.12.32
39
+
40
+ * @applitools/core bumped to 4.64.1
41
+
42
+ * @applitools/eyes bumped to 1.43.1
43
+
44
+
45
+ ## [6.3.44](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.43...js/eyes-testcafe@6.3.44) (2026-06-04)
46
+
47
+
48
+ ### Dependencies
49
+
50
+ * @applitools/nml-client bumped to 1.11.29
51
+
52
+ * @applitools/core-base bumped to 1.35.0
53
+ #### Features
54
+
55
+ * auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
56
+ * @applitools/core bumped to 4.64.0
57
+ #### Features
58
+
59
+ * auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
60
+ * support default match level from renderinfo | AD-13499 ([#3799](https://github.com/Applitools-Dev/sdk/issues/3799)) ([c7e8aeb](https://github.com/Applitools-Dev/sdk/commit/c7e8aeb3f231d9b4e6e368d7ae5f87115c5cad09))
61
+
62
+
63
+ #### Bug Fixes
64
+
65
+ * source hideCaret from settings.hideCaret in NML classic capture | AD-14053 ([#3878](https://github.com/Applitools-Dev/sdk/issues/3878)) ([f07b4f5](https://github.com/Applitools-Dev/sdk/commit/f07b4f5c90bb9b7de0300cef93f23dc833268a7c))
66
+
67
+
68
+
69
+ * @applitools/ec-client bumped to 1.12.31
70
+
71
+ * @applitools/eyes bumped to 1.43.0
72
+ #### Features
73
+
74
+ * auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
75
+
76
+
77
+
78
+
16
79
  ## [6.3.43](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.42...js/eyes-testcafe@6.3.43) (2026-05-26)
17
80
 
18
81
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-testcafe",
3
- "version": "6.3.43",
3
+ "version": "6.3.45",
4
4
  "description": "Applitools Eyes SDK for TestCafe",
5
5
  "keywords": [
6
6
  "eyes-testcafe",
@@ -69,7 +69,7 @@
69
69
  },
70
70
  "dependencies": {
71
71
  "@applitools/driver": "1.26.2",
72
- "@applitools/eyes": "1.42.1",
72
+ "@applitools/eyes": "1.43.1",
73
73
  "@applitools/utils": "1.14.5"
74
74
  },
75
75
  "devDependencies": {
package/types/index.d.ts CHANGED
@@ -1799,6 +1799,7 @@ export type TestResultsPlain = {
1799
1799
  readonly url?: undefined | string;
1800
1800
  readonly server?: undefined | { eyesServerUrl: string; apiKey: string; proxy?: undefined | ProxySettingsPlain; };
1801
1801
  readonly keepIfDuplicate?: undefined | boolean;
1802
+ readonly isAutoAcceptedInfraUpdate?: undefined | boolean;
1802
1803
  };
1803
1804
  export class TestResults implements Required<TestResultsPlain> {
1804
1805
  get id(): string;
@@ -1899,6 +1900,8 @@ export class TestResults implements Required<TestResultsPlain> {
1899
1900
  useDnsCache?: undefined | boolean;
1900
1901
  };
1901
1902
  get keepIfDuplicate(): boolean;
1903
+ get isAutoAcceptedInfraUpdate(): boolean;
1904
+ getIsAutoAcceptedInfraUpdate(): boolean;
1902
1905
  isPassed(): boolean;
1903
1906
  delete(): Promise<void>;
1904
1907
  deleteSession(): Promise<void>;