@applitools/eyes 1.38.15 → 1.40.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,69 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.40.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.39.0...js/eyes@1.40.0) (2026-04-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * new render target entities | AD 13251 ([#3775](https://github.com/Applitools-Dev/sdk/issues/3775)) ([18b6107](https://github.com/Applitools-Dev/sdk/commit/18b6107937ff0f18ba0a256fec1adc6d423f03dc))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/ufg-client bumped to 1.22.0
14
+ #### Features
15
+
16
+ * new render target entities | AD 13251 ([#3775](https://github.com/Applitools-Dev/sdk/issues/3775)) ([18b6107](https://github.com/Applitools-Dev/sdk/commit/18b6107937ff0f18ba0a256fec1adc6d423f03dc))
17
+ * @applitools/core bumped to 4.61.0
18
+ #### Features
19
+
20
+ * new render target entities | AD 13251 ([#3775](https://github.com/Applitools-Dev/sdk/issues/3775)) ([18b6107](https://github.com/Applitools-Dev/sdk/commit/18b6107937ff0f18ba0a256fec1adc6d423f03dc))
21
+
22
+
23
+
24
+
25
+ ## [1.39.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.38.15...js/eyes@1.39.0) (2026-04-23)
26
+
27
+
28
+ ### Features
29
+
30
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
31
+
32
+
33
+ ### Dependencies
34
+
35
+ * @applitools/req bumped to 1.10.0
36
+ #### Features
37
+
38
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
39
+ * @applitools/core-base bumped to 1.33.0
40
+ #### Features
41
+
42
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
43
+
44
+
45
+
46
+ * @applitools/nml-client bumped to 1.11.25
47
+
48
+ * @applitools/tunnel-client bumped to 1.11.11
49
+
50
+ * @applitools/ufg-client bumped to 1.21.0
51
+ #### Features
52
+
53
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
54
+
55
+
56
+
57
+ * @applitools/ec-client bumped to 1.12.26
58
+
59
+ * @applitools/core bumped to 4.60.0
60
+ #### Features
61
+
62
+ * expose httpVersion as SDK configuration flag | AD-13119 ([#3731](https://github.com/Applitools-Dev/sdk/issues/3731)) ([efee143](https://github.com/Applitools-Dev/sdk/commit/efee143729ee9ee31b669ea714c69a0ab57bbb1e))
63
+
64
+
65
+
66
+
3
67
  ## [1.38.15](https://github.com/Applitools-Dev/sdk/compare/js/eyes@1.38.14...js/eyes@1.38.15) (2026-04-16)
4
68
 
5
69
 
@@ -685,6 +685,23 @@ class ConfigurationData {
685
685
  this.hostOSInfo = hostOSInfo;
686
686
  return this;
687
687
  }
688
+ /** @internal */
689
+ get httpVersion() {
690
+ return this._config.httpVersion;
691
+ }
692
+ /** @internal */
693
+ set httpVersion(httpVersion) {
694
+ this._config.httpVersion = httpVersion;
695
+ }
696
+ /** @internal */
697
+ getHttpVersion() {
698
+ return this.httpVersion;
699
+ }
700
+ /** @internal */
701
+ setHttpVersion(httpVersion) {
702
+ this.httpVersion = httpVersion;
703
+ return this;
704
+ }
688
705
  get ignoreBaseline() {
689
706
  return this._config.ignoreBaseline;
690
707
  }
@@ -1178,6 +1195,7 @@ class ConfigurationData {
1178
1195
  agentId: this.agentId,
1179
1196
  proxy: this.proxy,
1180
1197
  connectionTimeout: this.connectionTimeout,
1198
+ httpVersion: this.httpVersion,
1181
1199
  removeSession: this.removeSession,
1182
1200
  appName: this.appName,
1183
1201
  testName: this.testName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes",
3
- "version": "1.38.15",
3
+ "version": "1.40.0",
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.59.3",
53
+ "@applitools/core": "4.61.0",
54
54
  "@applitools/logger": "2.2.11",
55
55
  "@applitools/utils": "1.14.4",
56
56
  "chalk": "4.1.2",
57
57
  "yargs": "17.7.2"
58
58
  },
59
59
  "devDependencies": {
60
- "@applitools/req": "^1.9.3",
60
+ "@applitools/req": "^1.10.0",
61
61
  "@types/node": "^12.20.55"
62
62
  },
63
63
  "engines": {
@@ -63,6 +63,8 @@ export type Configuration<TSpec extends Core.SpecType = Core.SpecType> = {
63
63
  hostAppInfo?: string;
64
64
  hostOS?: string;
65
65
  hostOSInfo?: string;
66
+ /** @internal */
67
+ httpVersion?: 1 | 2;
66
68
  ignoreBaseline?: boolean;
67
69
  ignoreCaret?: boolean;
68
70
  ignoreDisplacements?: boolean;
@@ -70,6 +72,7 @@ export type Configuration<TSpec extends Core.SpecType = Core.SpecType> = {
70
72
  isDisabled?: boolean;
71
73
  layoutBreakpoints?: boolean | number[] | {
72
74
  breakpoints: number[] | boolean;
75
+ heightBreakpoints?: boolean;
73
76
  reload?: boolean;
74
77
  };
75
78
  matchLevel?: MatchLevel;
@@ -312,6 +315,14 @@ export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecTy
312
315
  set hostOSInfo(hostOSInfo: string);
313
316
  getHostOSInfo(): string;
314
317
  setHostOSInfo(hostOSInfo: string): this;
318
+ /** @internal */
319
+ get httpVersion(): 1 | 2;
320
+ /** @internal */
321
+ set httpVersion(httpVersion: 1 | 2);
322
+ /** @internal */
323
+ getHttpVersion(): 1 | 2;
324
+ /** @internal */
325
+ setHttpVersion(httpVersion: 1 | 2): this;
315
326
  get ignoreBaseline(): boolean;
316
327
  set ignoreBaseline(ignoreBaseline: boolean);
317
328
  getIgnoreBaseline(): boolean;
@@ -334,18 +345,22 @@ export declare class ConfigurationData<TSpec extends Core.SpecType = Core.SpecTy
334
345
  setIsDisabled(isDisabled: boolean): this;
335
346
  get layoutBreakpoints(): boolean | number[] | {
336
347
  breakpoints: number[] | boolean;
348
+ heightBreakpoints?: boolean;
337
349
  reload?: boolean;
338
350
  };
339
351
  set layoutBreakpoints(layoutBreakpoints: boolean | number[] | {
340
352
  breakpoints: number[] | boolean;
353
+ heightBreakpoints?: boolean;
341
354
  reload?: boolean;
342
355
  });
343
356
  getLayoutBreakpoints(): boolean | number[] | {
344
357
  breakpoints: number[] | boolean;
358
+ heightBreakpoints?: boolean;
345
359
  reload?: boolean;
346
360
  };
347
361
  setLayoutBreakpoints(layoutBreakpoints: boolean | number[] | {
348
362
  breakpoints: number[] | boolean;
363
+ heightBreakpoints?: boolean;
349
364
  reload?: boolean;
350
365
  }): this;
351
366
  get matchLevel(): MatchLevel;