@serenity-js/webdriverio 3.0.0-rc.43 → 3.0.0-rc.45
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 +30 -0
- package/package.json +12 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.0.0-rc.45](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.44...v3.0.0-rc.45) (2023-03-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency deepmerge to ^4.3.1 ([d605a6b](https://github.com/serenity-js/serenity-js/commit/d605a6ba034b0d9d5d716c82ea496bd726a86348))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.0.0-rc.44](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.43...v3.0.0-rc.44) (2023-03-19)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **core:** moved time-related code to a common package ([f29fedc](https://github.com/serenity-js/serenity-js/commit/f29fedc0e67d0db942b247aed53a243868a5f6dd)), closes [#1522](https://github.com/serenity-js/serenity-js/issues/1522)
|
|
23
|
+
* **core:** support for NPM 9 ([0493474](https://github.com/serenity-js/serenity-js/commit/0493474a1e28b86b1b60f69ec0d591c1a3265425))
|
|
24
|
+
* **deps:** update dependency tiny-types to ^1.19.1 ([ce335eb](https://github.com/serenity-js/serenity-js/commit/ce335ebca434d1fd0e6e809a65a0882fd10a311a))
|
|
25
|
+
* **rest:** support for Axios 1.3.4 ([e926bbd](https://github.com/serenity-js/serenity-js/commit/e926bbde5232150f35e137601e321175d21d52d2))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **core:** introduced a new ability ScheduleWork to enable [#1083](https://github.com/serenity-js/serenity-js/issues/1083) and [#1522](https://github.com/serenity-js/serenity-js/issues/1522) ([b275d18](https://github.com/serenity-js/serenity-js/commit/b275d18434cdedf069c5f1da3b9b359fc7da60fe))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.0.0-rc.43](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.42...v3.0.0-rc.43) (2023-03-10)
|
|
7
37
|
|
|
8
38
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/webdriverio",
|
|
3
|
-
"version": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.45",
|
|
4
4
|
"description": "Serenity/JS reporter and Screenplay Pattern library for WebdriverIO",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"wdio-reporter"
|
|
31
31
|
],
|
|
32
32
|
"scripts": {
|
|
33
|
-
"clean": "rimraf
|
|
33
|
+
"clean": "rimraf target",
|
|
34
34
|
"test": "nyc mocha --config ../../.mocharc.yml 'spec/adapter/**/*.spec.*'",
|
|
35
35
|
"compile": "rimraf lib && tsc --project tsconfig.build.json"
|
|
36
36
|
},
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": "^14 || ^16 || ^18",
|
|
47
|
-
"npm": "^6 || ^7 || ^8"
|
|
47
|
+
"npm": "^6 || ^7 || ^8 || ^9"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@serenity-js/core": "3.0.0-rc.
|
|
51
|
-
"@serenity-js/web": "3.0.0-rc.
|
|
50
|
+
"@serenity-js/core": "3.0.0-rc.45",
|
|
51
|
+
"@serenity-js/web": "3.0.0-rc.45",
|
|
52
52
|
"@wdio/reporter": "^7.30.2",
|
|
53
53
|
"@wdio/types": "^7.30.2",
|
|
54
|
-
"deepmerge": "^4.3.
|
|
55
|
-
"tiny-types": "^1.19.
|
|
54
|
+
"deepmerge": "^4.3.1",
|
|
55
|
+
"tiny-types": "^1.19.1"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"@serenity-js/cucumber": "^3.0.0-rc",
|
|
@@ -81,13 +81,14 @@
|
|
|
81
81
|
"@wdio/local-runner": "^7.30.2",
|
|
82
82
|
"@wdio/mocha-framework": "^7.30.2",
|
|
83
83
|
"@wdio/spec-reporter": "^7.30.2",
|
|
84
|
-
"axios": "^1.
|
|
84
|
+
"axios": "^1.3.4",
|
|
85
85
|
"cross-env": "^7.0.3",
|
|
86
86
|
"mocha": "^10.2.0",
|
|
87
|
+
"mocha-multi": "^1.1.7",
|
|
87
88
|
"mocha-testdata": "^1.2.0",
|
|
88
89
|
"nyc": "15.1.0",
|
|
89
|
-
"puppeteer-core": "^19.7.
|
|
90
|
-
"start-server-and-test": "^
|
|
90
|
+
"puppeteer-core": "^19.7.5",
|
|
91
|
+
"start-server-and-test": "^2.0.0",
|
|
91
92
|
"webdriverio": "^7.30.2"
|
|
92
93
|
},
|
|
93
94
|
"nyc": {
|
|
@@ -110,5 +111,5 @@
|
|
|
110
111
|
"cache": true,
|
|
111
112
|
"all": false
|
|
112
113
|
},
|
|
113
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "4c5c6cdb30f726b51d1567862074bb6fa9b5aa66"
|
|
114
115
|
}
|