@serenity-js/webdriverio-8 3.42.0 → 3.42.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +16 -11
package/CHANGELOG.md CHANGED
@@ -3,6 +3,29 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.42.2](https://github.com/serenity-js/serenity-js/compare/v3.42.1...v3.42.2) (2026-04-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update rest dependencies ([525abcb](https://github.com/serenity-js/serenity-js/commit/525abcb26ad45e1963f883e86ccf650bd2229c20))
12
+ * **playwright:** aligned package.json exports to use conditional import/require types ([a8966e9](https://github.com/serenity-js/serenity-js/commit/a8966e94d74c24b3d2821e99e51bf3b24121b55e))
13
+
14
+
15
+
16
+
17
+
18
+ ## [3.42.1](https://github.com/serenity-js/serenity-js/compare/v3.42.0...v3.42.1) (2026-04-08)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **deps:** update rest dependencies ([277382c](https://github.com/serenity-js/serenity-js/commit/277382c6cf88330586519b6a88b7e78015309a53))
24
+
25
+
26
+
27
+
28
+
6
29
  # [3.42.0](https://github.com/serenity-js/serenity-js/compare/v3.41.2...v3.42.0) (2026-03-19)
7
30
 
8
31
  **Note:** Version bump only for package @serenity-js/webdriverio-8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/webdriverio-8",
3
- "version": "3.42.0",
3
+ "version": "3.42.2",
4
4
  "description": "Adapter that integrates @serenity-js/web with WebdriverIO 8, enabling Serenity/JS reporting and using the Screenplay Pattern to write web and mobile test scenarios",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -22,9 +22,14 @@
22
22
  "module": "./esm/index.js",
23
23
  "exports": {
24
24
  ".": {
25
- "types": "./esm/index.d.ts",
26
- "import": "./esm/index.js",
27
- "require": "./lib/index.js"
25
+ "import": {
26
+ "types": "./esm/index.d.ts",
27
+ "default": "./esm/index.js"
28
+ },
29
+ "require": {
30
+ "types": "./lib/index.d.ts",
31
+ "default": "./lib/index.js"
32
+ }
28
33
  },
29
34
  "./package.json": "./package.json"
30
35
  },
@@ -71,9 +76,9 @@
71
76
  "node": "^20 || ^22 || ^24"
72
77
  },
73
78
  "dependencies": {
74
- "@serenity-js/core": "3.42.0",
75
- "@serenity-js/rest": "3.42.0",
76
- "@serenity-js/web": "3.42.0",
79
+ "@serenity-js/core": "3.42.2",
80
+ "@serenity-js/rest": "3.42.2",
81
+ "@serenity-js/web": "3.42.2",
77
82
  "@wdio/reporter": "8.43.0",
78
83
  "deepmerge": "4.3.1",
79
84
  "tiny-types": "2.0.5"
@@ -105,15 +110,15 @@
105
110
  "@wdio/local-runner": "8.46.0",
106
111
  "@wdio/spec-reporter": "8.43.0",
107
112
  "@wdio/types": "8.41.0",
108
- "axios": "1.13.6",
113
+ "axios": "1.15.2",
109
114
  "c8": "11.0.0",
110
115
  "cross-env": "10.1.0",
111
116
  "mocha": "11.7.5",
112
117
  "mocha-multi": "1.1.7",
113
118
  "mocha-testdata": "1.2.0",
114
- "puppeteer-core": "24.39.1",
115
- "start-server-and-test": "2.1.5",
119
+ "puppeteer-core": "24.42.0",
120
+ "start-server-and-test": "3.0.2",
116
121
  "webdriverio": "8.46.0"
117
122
  },
118
- "gitHead": "a415b0066807d7bab9f34b1ceef66a26156aafe1"
123
+ "gitHead": "e0df1ddca37510fb3a9f64b1ed343a101cfa3a0d"
119
124
  }