@serenity-js/local-server 3.25.1 → 3.25.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +24 -7
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.25.2](https://github.com/serenity-js/serenity-js/compare/v3.25.1...v3.25.2) (2024-07-17)
7
+
8
+ **Note:** Version bump only for package @serenity-js/local-server
9
+
10
+
11
+
12
+
13
+
6
14
  ## [3.25.1](https://github.com/serenity-js/serenity-js/compare/v3.25.0...v3.25.1) (2024-07-10)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@serenity-js/local-server",
3
- "version": "3.25.1",
4
- "description": "Enables Serenity/JS Actors to manage local Node.js test servers, such as Express, Koa or Restify",
3
+ "version": "3.25.2",
4
+ "description": "Serenity/JS Screenplay Pattern library for managing local Node.js test servers, including Express, Koa, Hapi, and Restify, to support comprehensive integration testing",
5
5
  "author": {
6
6
  "name": "Jan Molak",
7
7
  "email": "jan.molak@smartcodeltd.co.uk",
@@ -50,15 +50,32 @@
50
50
  "node": "^16.13 || ^18.12 || ^20"
51
51
  },
52
52
  "dependencies": {
53
- "@serenity-js/core": "3.25.1",
53
+ "@serenity-js/core": "3.25.2",
54
54
  "http-shutdown": "1.2.2",
55
55
  "portfinder": "1.0.32"
56
56
  },
57
+ "peerDependencies": {
58
+ "@hapi/hapi": "^21.3.10",
59
+ "express": "^4.19.2",
60
+ "koa": "^2.15.3",
61
+ "restify": "^11.1.0"
62
+ },
63
+ "peerDependenciesMeta": {
64
+ "@hapi/hapi": {
65
+ "optional": true
66
+ },
67
+ "koa": {
68
+ "optional": true
69
+ },
70
+ "restify": {
71
+ "optional": true
72
+ }
73
+ },
57
74
  "devDependencies": {
58
75
  "@hapi/hapi": "21.3.10",
59
76
  "@integration/testing-tools": "3.0.0",
60
- "@serenity-js/assertions": "3.25.1",
61
- "@serenity-js/rest": "3.25.1",
77
+ "@serenity-js/assertions": "3.25.2",
78
+ "@serenity-js/rest": "3.25.2",
62
79
  "@types/chai": "4.3.16",
63
80
  "@types/express": "4.17.21",
64
81
  "@types/hapi": "18.0.14",
@@ -71,9 +88,9 @@
71
88
  "mocha": "10.6.0",
72
89
  "mocha-multi": "1.1.7",
73
90
  "restify": "11.1.0",
74
- "semver": "7.6.2",
91
+ "semver": "7.6.3",
75
92
  "ts-node": "10.9.2",
76
93
  "typescript": "5.2.2"
77
94
  },
78
- "gitHead": "450b994115cf9f1a1547ef92ac9387e0c57821ce"
95
+ "gitHead": "98b68da1e04a8fcbb255dca509b7bc9c322a3b6b"
79
96
  }