@serenity-js/webdriverio 3.42.1 → 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.
- package/CHANGELOG.md +12 -0
- package/package.json +15 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
|
|
6
18
|
## [3.42.1](https://github.com/serenity-js/serenity-js/compare/v3.42.0...v3.42.1) (2026-04-08)
|
|
7
19
|
|
|
8
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/webdriverio",
|
|
3
|
-
"version": "3.42.
|
|
3
|
+
"version": "3.42.2",
|
|
4
4
|
"description": "Adapter that integrates @serenity-js/web with the latest stable version of WebdriverIO, 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
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
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.
|
|
75
|
-
"@serenity-js/rest": "3.42.
|
|
76
|
-
"@serenity-js/web": "3.42.
|
|
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": "9.27.0",
|
|
78
83
|
"deepmerge": "4.3.1",
|
|
79
84
|
"tiny-types": "2.0.5"
|
|
@@ -104,14 +109,14 @@
|
|
|
104
109
|
"@wdio/local-runner": "9.27.0",
|
|
105
110
|
"@wdio/spec-reporter": "9.27.0",
|
|
106
111
|
"@wdio/types": "9.27.0",
|
|
107
|
-
"axios": "1.15.
|
|
112
|
+
"axios": "1.15.2",
|
|
108
113
|
"c8": "11.0.0",
|
|
109
114
|
"cross-env": "10.1.0",
|
|
110
115
|
"mocha": "11.7.5",
|
|
111
116
|
"mocha-multi": "1.1.7",
|
|
112
117
|
"mocha-testdata": "1.2.0",
|
|
113
|
-
"start-server-and-test": "3.0.
|
|
118
|
+
"start-server-and-test": "3.0.2",
|
|
114
119
|
"webdriverio": "9.27.0"
|
|
115
120
|
},
|
|
116
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "e0df1ddca37510fb3a9f64b1ed343a101cfa3a0d"
|
|
117
122
|
}
|