@serenity-js/webdriverio-8 3.35.3 → 3.36.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 +16 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.36.0](https://github.com/serenity-js/serenity-js/compare/v3.35.3...v3.36.0) (2025-11-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency axios to v1.13.2 ([9f8d6cc](https://github.com/serenity-js/serenity-js/commit/9f8d6cc34ecf2cbd121380bd584f509b1416e675))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **core:** introduced support for Node 24, dropped support for Node 18 (EOL) ([9dd5f88](https://github.com/serenity-js/serenity-js/commit/9dd5f885d8e65cd8ff3429a2af94151fbe9134ed))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [3.35.3](https://github.com/serenity-js/serenity-js/compare/v3.35.2...v3.35.3) (2025-10-30)
|
|
7
23
|
|
|
8
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/webdriverio-8",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.36.0",
|
|
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",
|
|
@@ -71,12 +71,12 @@
|
|
|
71
71
|
"url": "https://github.com/serenity-js/serenity-js/issues"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": "^
|
|
74
|
+
"node": "^20 || ^22 || ^24"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
|
-
"@serenity-js/core": "3.
|
|
78
|
-
"@serenity-js/rest": "3.
|
|
79
|
-
"@serenity-js/web": "3.
|
|
77
|
+
"@serenity-js/core": "3.36.0",
|
|
78
|
+
"@serenity-js/rest": "3.36.0",
|
|
79
|
+
"@serenity-js/web": "3.36.0",
|
|
80
80
|
"@wdio/reporter": "8.43.0",
|
|
81
81
|
"deepmerge": "4.3.1",
|
|
82
82
|
"tiny-types": "1.24.1"
|
|
@@ -108,15 +108,15 @@
|
|
|
108
108
|
"@wdio/local-runner": "8.46.0",
|
|
109
109
|
"@wdio/spec-reporter": "8.43.0",
|
|
110
110
|
"@wdio/types": "8.41.0",
|
|
111
|
-
"axios": "1.13.
|
|
111
|
+
"axios": "1.13.2",
|
|
112
112
|
"c8": "10.1.3",
|
|
113
113
|
"cross-env": "10.1.0",
|
|
114
|
-
"mocha": "11.7.
|
|
114
|
+
"mocha": "11.7.5",
|
|
115
115
|
"mocha-multi": "1.1.7",
|
|
116
116
|
"mocha-testdata": "1.2.0",
|
|
117
|
-
"puppeteer-core": "24.
|
|
117
|
+
"puppeteer-core": "24.29.0",
|
|
118
118
|
"start-server-and-test": "2.1.2",
|
|
119
119
|
"webdriverio": "8.46.0"
|
|
120
120
|
},
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "65f753e759dd1e6241d3d9f81aa744abd52a663e"
|
|
122
122
|
}
|