@applitools/eyes 1.42.1 → 1.43.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
+ ## [1.43.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.43.0...js/eyes@1.43.1) (2026-06-09)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/req bumped to 1.11.0
9
+ #### Features
10
+
11
+ * 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))
12
+ * @applitools/tunnel-client bumped to 1.12.0
13
+ #### Features
14
+
15
+ * 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))
16
+
17
+
18
+
19
+ * @applitools/nml-client bumped to 1.11.30
20
+
21
+ * @applitools/ufg-client bumped to 1.22.3
22
+
23
+ * @applitools/core-base bumped to 1.35.1
24
+
25
+ * @applitools/ec-client bumped to 1.12.32
26
+
27
+ * @applitools/core bumped to 4.64.1
28
+
29
+
30
+ ## [1.43.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.42.1...js/eyes@1.43.0) (2026-06-04)
31
+
32
+
33
+ ### Features
34
+
35
+ * 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))
36
+
37
+
38
+ ### Dependencies
39
+
40
+ * @applitools/core-base bumped to 1.35.0
41
+ #### Features
42
+
43
+ * 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))
44
+ * @applitools/nml-client bumped to 1.11.29
45
+
46
+ * @applitools/ec-client bumped to 1.12.31
47
+
48
+ * @applitools/core bumped to 4.64.0
49
+ #### Features
50
+
51
+ * 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))
52
+ * 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))
53
+
54
+
55
+ #### Bug Fixes
56
+
57
+ * 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))
58
+
59
+
60
+
61
+
3
62
  ## [1.42.1](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.42.0...js/eyes@1.42.1) (2026-05-26)
4
63
 
5
64
 
@@ -342,6 +342,12 @@ class TestResultsData {
342
342
  get keepIfDuplicate() {
343
343
  return this._result.keepIfDuplicate;
344
344
  }
345
+ get isAutoAcceptedInfraUpdate() {
346
+ return Boolean(this._result.isAutoAcceptedInfraUpdate);
347
+ }
348
+ getIsAutoAcceptedInfraUpdate() {
349
+ return this.isAutoAcceptedInfraUpdate;
350
+ }
345
351
  isPassed() {
346
352
  return this._result.status === TestResultsStatus_1.TestResultsStatusEnum.Passed;
347
353
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.42.1",
3
+ "version": "1.43.1",
4
4
  "keywords": [
5
5
  "applitools",
6
6
  "eyes",
@@ -50,14 +50,14 @@
50
50
  "test": "run --top-level mocha './test/**/*.spec.ts'"
51
51
  },
52
52
  "dependencies": {
53
- "@applitools/core": "4.63.1",
53
+ "@applitools/core": "4.64.1",
54
54
  "@applitools/logger": "2.2.12",
55
55
  "@applitools/utils": "1.14.5",
56
56
  "chalk": "4.1.2",
57
57
  "yargs": "17.7.2"
58
58
  },
59
59
  "devDependencies": {
60
- "@applitools/req": "^1.10.2",
60
+ "@applitools/req": "^1.11.0",
61
61
  "@types/node": "^12.20.55",
62
62
  "nock": "^13.3.0"
63
63
  },
@@ -42,6 +42,7 @@ export type TestResults = {
42
42
  proxy?: ProxySettings;
43
43
  };
44
44
  readonly keepIfDuplicate?: boolean;
45
+ readonly isAutoAcceptedInfraUpdate?: boolean;
45
46
  };
46
47
  export declare class TestResultsData implements Required<TestResults> {
47
48
  private _core?;
@@ -173,6 +174,8 @@ export declare class TestResultsData implements Required<TestResults> {
173
174
  setUrl(_url: string): void;
174
175
  get server(): Core.EyesServerSettings;
175
176
  get keepIfDuplicate(): boolean;
177
+ get isAutoAcceptedInfraUpdate(): boolean;
178
+ getIsAutoAcceptedInfraUpdate(): boolean;
176
179
  isPassed(): boolean;
177
180
  delete(): Promise<void>;
178
181
  /** @deprecated */