@serenity-js/core 3.26.1 → 3.28.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 +24 -0
- package/package.json +11 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
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.28.0](https://github.com/serenity-js/serenity-js/compare/v3.27.0...v3.28.0) (2024-09-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.27.0](https://github.com/serenity-js/serenity-js/compare/v3.26.1...v3.27.0) (2024-09-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **core:** updated npm tags to improve discoverability ([432d331](https://github.com/serenity-js/serenity-js/commit/432d331aedb7b46fdd5291394521923ce66c1a2b))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **core:** added support for Node 22, dropped support for Node 16 ([d5dea01](https://github.com/serenity-js/serenity-js/commit/d5dea013ed5d87f2e0cda8fa83da9fd021e4638d)), closes [#2518](https://github.com/serenity-js/serenity-js/issues/2518)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
## [3.26.1](https://github.com/serenity-js/serenity-js/compare/v3.26.0...v3.26.1) (2024-09-03)
|
|
7
31
|
|
|
8
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.28.0",
|
|
4
4
|
"description": "The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -19,12 +19,16 @@
|
|
|
19
19
|
"main": "lib/index.js",
|
|
20
20
|
"types": "lib/index.d.ts",
|
|
21
21
|
"keywords": [
|
|
22
|
+
"automation",
|
|
23
|
+
"integration",
|
|
24
|
+
"serenity",
|
|
25
|
+
"serenity-js",
|
|
26
|
+
"screenplay",
|
|
27
|
+
"screenplay-pattern",
|
|
22
28
|
"bdd",
|
|
23
29
|
"tdd",
|
|
24
30
|
"test",
|
|
25
|
-
"testing"
|
|
26
|
-
"serenity",
|
|
27
|
-
"screenplay"
|
|
31
|
+
"testing"
|
|
28
32
|
],
|
|
29
33
|
"scripts": {
|
|
30
34
|
"clean": "rimraf target",
|
|
@@ -58,7 +62,7 @@
|
|
|
58
62
|
"mocha": "10.7.3",
|
|
59
63
|
"mocha-multi": "1.1.7",
|
|
60
64
|
"ts-node": "10.9.2",
|
|
61
|
-
"typescript": "5.
|
|
65
|
+
"typescript": "5.6.2"
|
|
62
66
|
},
|
|
63
67
|
"repository": {
|
|
64
68
|
"type": "git",
|
|
@@ -69,7 +73,7 @@
|
|
|
69
73
|
"url": "https://github.com/serenity-js/serenity-js/issues"
|
|
70
74
|
},
|
|
71
75
|
"engines": {
|
|
72
|
-
"node": "^
|
|
76
|
+
"node": "^18.12 || ^20 || ^22"
|
|
73
77
|
},
|
|
74
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "9633e37bc3ae8d013f49c3fc288cab1b4cb7b63b"
|
|
75
79
|
}
|