@applitools/eyes-puppeteer 1.29.6 → 1.30.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,70 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.30.0](https://github.com/Applitools-Dev/sdk/compare/js/eyes-puppeteer@1.29.6...js/eyes-puppeteer@1.30.0) (2025-08-05)
4
+
5
+
6
+ ### Features
7
+
8
+ * release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/utils bumped to 1.11.0
14
+ #### Features
15
+
16
+ * improve configuration handling ([#3130](https://github.com/Applitools-Dev/sdk/issues/3130)) ([def7be1](https://github.com/Applitools-Dev/sdk/commit/def7be1dd07460f49142cddfe55203baa884e6c3))
17
+ * make utils.general.guid crypto secured ([#3137](https://github.com/Applitools-Dev/sdk/issues/3137)) ([775df08](https://github.com/Applitools-Dev/sdk/commit/775df08307e41402a6603812205bc857bd3f936e))
18
+ * @applitools/logger bumped to 2.2.1
19
+
20
+ * @applitools/dom-snapshot bumped to 4.13.1
21
+
22
+ * @applitools/socket bumped to 1.3.1
23
+
24
+ * @applitools/req bumped to 1.8.1
25
+
26
+ * @applitools/image bumped to 1.2.1
27
+
28
+ * @applitools/dom-capture bumped to 11.6.1
29
+
30
+ * @applitools/driver bumped to 1.23.1
31
+
32
+ * @applitools/spec-driver-webdriver bumped to 1.4.1
33
+
34
+ * @applitools/spec-driver-selenium bumped to 1.7.1
35
+
36
+ * @applitools/spec-driver-puppeteer bumped to 1.6.1
37
+
38
+ * @applitools/screenshoter bumped to 3.12.1
39
+
40
+ * @applitools/nml-client bumped to 1.11.1
41
+
42
+ * @applitools/tunnel-client bumped to 1.10.2
43
+
44
+ * @applitools/ufg-client bumped to 1.17.1
45
+
46
+ * @applitools/core-base bumped to 1.27.1
47
+
48
+ * @applitools/ec-client bumped to 1.12.2
49
+
50
+ * @applitools/core bumped to 4.44.2
51
+
52
+ * @applitools/eyes bumped to 1.36.0
53
+ #### Features
54
+
55
+ * improve configuration handling ([#3130](https://github.com/Applitools-Dev/sdk/issues/3130)) ([def7be1](https://github.com/Applitools-Dev/sdk/commit/def7be1dd07460f49142cddfe55203baa884e6c3))
56
+ * release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
57
+
58
+
59
+
60
+ * @applitools/test-server bumped to 1.3.0
61
+ #### Features
62
+
63
+ * release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
64
+
65
+
66
+
67
+
3
68
  ## [1.29.6](https://github.com/Applitools-Dev/sdk/compare/js/eyes-puppeteer@1.29.5...js/eyes-puppeteer@1.29.6) (2025-07-23)
4
69
 
5
70
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-puppeteer",
3
- "version": "1.29.6",
3
+ "version": "1.30.0",
4
4
  "description": "Applitools Eyes SDK for Puppeteer",
5
5
  "keywords": [
6
6
  "eyes-puppeteer",
@@ -37,8 +37,8 @@
37
37
  "up:framework": "echo \"$(jq '.devDependencies.puppeteer = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
38
38
  },
39
39
  "dependencies": {
40
- "@applitools/eyes": "1.35.3",
41
- "@applitools/spec-driver-puppeteer": "1.5.1"
40
+ "@applitools/eyes": "1.36.0",
41
+ "@applitools/spec-driver-puppeteer": "1.6.1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -470,7 +470,7 @@ export type ConfigurationPlain = {
470
470
  baselineEnvName?: undefined | string;
471
471
  batch?: undefined | BatchInfoPlain;
472
472
  branchName?: undefined | string;
473
- browsersInfo?: undefined | Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | { iosDeviceInfo: { deviceName: "iPhone X" | "iPhone 14 Plus" | "iPhone 14 Pro" | "iPhone XR" | "iPhone 11" | "iPhone 11 Pro Max" | "iPhone 11 Pro" | "iPhone SE (2nd generation)" | "iPhone SE (3rd generation)" | "iPhone Xs" | "iPhone 12" | "iPhone 12 mini" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 13" | "iPhone 13 mini" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 14" | "iPhone 14 Pro Max" | "iPhone 8" | "iPhone 8 Plus" | "iPhone Xs Max"; }; })>;
473
+ browsersInfo?: undefined | Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | IOSMultiDeviceInfo)>;
474
474
  captureStatusBar?: undefined | boolean;
475
475
  compareWithParentBranch?: undefined | boolean;
476
476
  concurrentSessions?: undefined | number;
@@ -564,9 +564,9 @@ export class Configuration implements Required<ConfigurationPlain> {
564
564
  set branchName(branchName: string);
565
565
  getBranchName(): string;
566
566
  setBranchName(branchName: string): Configuration;
567
- get browsersInfo(): Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | { iosDeviceInfo: { deviceName: "iPhone X" | "iPhone 14 Plus" | "iPhone 14 Pro" | "iPhone XR" | "iPhone 11" | "iPhone 11 Pro Max" | "iPhone 11 Pro" | "iPhone SE (2nd generation)" | "iPhone SE (3rd generation)" | "iPhone Xs" | "iPhone 12" | "iPhone 12 mini" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 13" | "iPhone 13 mini" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 14" | "iPhone 14 Pro Max" | "iPhone 8" | "iPhone 8 Plus" | "iPhone Xs Max"; }; })>;
568
- set browsersInfo(browsersInfo: Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | { iosDeviceInfo: { deviceName: "iPhone X" | "iPhone 14 Plus" | "iPhone 14 Pro" | "iPhone XR" | "iPhone 11" | "iPhone 11 Pro Max" | "iPhone 11 Pro" | "iPhone SE (2nd generation)" | "iPhone SE (3rd generation)" | "iPhone Xs" | "iPhone 12" | "iPhone 12 mini" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 13" | "iPhone 13 mini" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 14" | "iPhone 14 Pro Max" | "iPhone 8" | "iPhone 8 Plus" | "iPhone Xs Max"; }; })>);
569
- getBrowsersInfo(): Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | { iosDeviceInfo: { deviceName: "iPhone X" | "iPhone 14 Plus" | "iPhone 14 Pro" | "iPhone XR" | "iPhone 11" | "iPhone 11 Pro Max" | "iPhone 11 Pro" | "iPhone SE (2nd generation)" | "iPhone SE (3rd generation)" | "iPhone Xs" | "iPhone 12" | "iPhone 12 mini" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 13" | "iPhone 13 mini" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 14" | "iPhone 14 Pro Max" | "iPhone 8" | "iPhone 8 Plus" | "iPhone Xs Max"; }; })>;
567
+ get browsersInfo(): Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | IOSMultiDeviceInfo)>;
568
+ set browsersInfo(browsersInfo: Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | IOSMultiDeviceInfo)>);
569
+ getBrowsersInfo(): Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | IOSMultiDeviceInfo)>;
570
570
  setBrowsersInfo(browsersInfo: Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | { deviceName: DeviceNamePlain; screenOrientation?: undefined | ScreenOrientationPlain; })>): Configuration;
571
571
  addBrowsers(...browsersInfo: Array<(DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | { deviceName: DeviceNamePlain; screenOrientation?: undefined | ScreenOrientationPlain; })>): Configuration;
572
572
  addBrowser(browserInfo: (DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo | { deviceName: DeviceNamePlain; screenOrientation?: undefined | ScreenOrientationPlain; })): Configuration;
@@ -575,6 +575,7 @@ export class Configuration implements Required<ConfigurationPlain> {
575
575
  addMultiDeviceTarget(deviceName: "iPhone X"): Configuration;
576
576
  addMultiDeviceTarget(deviceName: "iPhone 14 Plus"): Configuration;
577
577
  addMultiDeviceTarget(deviceName: "iPhone 14 Pro"): Configuration;
578
+ addMultiDeviceTarget(deviceName: "iPhone 15 Pro"): Configuration;
578
579
  addMultiDeviceTarget(deviceName: "iPhone XR"): Configuration;
579
580
  addMultiDeviceTarget(deviceName: "iPhone 11"): Configuration;
580
581
  addMultiDeviceTarget(deviceName: "iPhone 11 Pro Max"): Configuration;
@@ -592,6 +593,18 @@ export class Configuration implements Required<ConfigurationPlain> {
592
593
  addMultiDeviceTarget(deviceName: "iPhone 13 Pro"): Configuration;
593
594
  addMultiDeviceTarget(deviceName: "iPhone 14"): Configuration;
594
595
  addMultiDeviceTarget(deviceName: "iPhone 14 Pro Max"): Configuration;
596
+ addMultiDeviceTarget(deviceName: "iPhone 15"): Configuration;
597
+ addMultiDeviceTarget(deviceName: "iPhone 15 Pro Max"): Configuration;
598
+ addMultiDeviceTarget(deviceName: "iPhone 15 Plus"): Configuration;
599
+ addMultiDeviceTarget(deviceName: "iPhone 16"): Configuration;
600
+ addMultiDeviceTarget(deviceName: "iPhone 16 Pro Max"): Configuration;
601
+ addMultiDeviceTarget(deviceName: "iPhone 16 Pro"): Configuration;
602
+ addMultiDeviceTarget(deviceName: "iPhone 16 Plus"): Configuration;
603
+ addMultiDeviceTarget(deviceName: "iPhone SE (1st generation)"): Configuration;
604
+ addMultiDeviceTarget(deviceName: "iPhone 6"): Configuration;
605
+ addMultiDeviceTarget(deviceName: "iPhone 6 Plus"): Configuration;
606
+ addMultiDeviceTarget(deviceName: "iPhone 7"): Configuration;
607
+ addMultiDeviceTarget(deviceName: "iPhone 7 Plus"): Configuration;
595
608
  addMultiDeviceTarget(deviceName: "iPhone 8"): Configuration;
596
609
  addMultiDeviceTarget(deviceName: "iPhone 8 Plus"): Configuration;
597
610
  addMultiDeviceTarget(deviceName: "iPhone Xs Max"): Configuration;
@@ -1615,6 +1628,7 @@ export class Region implements Required<RegionPlain> {
1615
1628
  export type DesktopBrowserInfo = { name?: undefined | BrowserTypePlain; width: number; height: number; };
1616
1629
  export type ChromeEmulationInfo = { chromeEmulationInfo: { deviceName: DeviceNamePlain; screenOrientation?: undefined | ScreenOrientationPlain; }; };
1617
1630
  export type IOSDeviceInfo = { iosDeviceInfo: { deviceName: IosDeviceNamePlain; iosVersion?: undefined | IosVersionPlain; screenOrientation?: undefined | ScreenOrientationPlain; }; };
1631
+ export type IOSMultiDeviceInfo = { iosDeviceInfo: { deviceName: "iPhone X" | "iPhone 14 Plus" | "iPhone 14 Pro" | "iPhone 15 Pro" | "iPhone XR" | "iPhone 11" | "iPhone 11 Pro Max" | "iPhone 11 Pro" | "iPhone SE (2nd generation)" | "iPhone SE (3rd generation)" | "iPhone Xs" | "iPhone 12" | "iPhone 12 mini" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 13" | "iPhone 13 mini" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 14" | "iPhone 14 Pro Max" | "iPhone 15" | "iPhone 15 Pro Max" | "iPhone 15 Plus" | "iPhone 16" | "iPhone 16 Pro Max" | "iPhone 16 Pro" | "iPhone 16 Plus" | "iPhone SE (1st generation)" | "iPhone 6" | "iPhone 6 Plus" | "iPhone 7" | "iPhone 7 Plus" | "iPhone 8" | "iPhone 8 Plus" | "iPhone Xs Max"; }; };
1618
1632
  export type RunnerOptionsPlain = { testConcurrency?: undefined | number; fetchConcurrency?: undefined | number; removeDuplicateTests?: undefined | boolean; maskLog?: undefined | boolean; };
1619
1633
  export class RunnerOptionsFluent {
1620
1634
  testConcurrency(concurrency: number): RunnerOptionsFluent;