@serenity-js/console-reporter 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/package.json +11 -5
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/console-reporter
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
  **Note:** Version bump only for package @serenity-js/console-reporter
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/console-reporter",
3
- "version": "3.26.1",
3
+ "version": "3.28.0",
4
4
  "description": "Serenity/JS console reporter that displays test results directly in the standard output",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -19,7 +19,13 @@
19
19
  "main": "lib/index.js",
20
20
  "types": "./lib/index.d.ts",
21
21
  "keywords": [
22
+ "automation",
23
+ "integration",
24
+ "serenity",
22
25
  "serenity-js",
26
+ "screenplay",
27
+ "screenplay-pattern",
28
+ "reporter",
23
29
  "tdd",
24
30
  "bdd",
25
31
  "test",
@@ -40,10 +46,10 @@
40
46
  "url": "https://github.com/serenity-js/serenity-js/issues"
41
47
  },
42
48
  "engines": {
43
- "node": "^16.13 || ^18.12 || ^20"
49
+ "node": "^18.12 || ^20 || ^22"
44
50
  },
45
51
  "dependencies": {
46
- "@serenity-js/core": "3.26.1",
52
+ "@serenity-js/core": "3.28.0",
47
53
  "chalk": "4.1.2",
48
54
  "tiny-types": "1.23.0"
49
55
  },
@@ -55,7 +61,7 @@
55
61
  "mocha": "10.7.3",
56
62
  "mocha-multi": "1.1.7",
57
63
  "ts-node": "10.9.2",
58
- "typescript": "5.5.4"
64
+ "typescript": "5.6.2"
59
65
  },
60
- "gitHead": "cad873513046dad486d02090303e4cb8b5cdfd58"
66
+ "gitHead": "9633e37bc3ae8d013f49c3fc288cab1b4cb7b63b"
61
67
  }