@serenity-js/local-server 2.32.1 → 2.32.5

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 +38 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -3,6 +3,44 @@
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
+ ## [2.32.5](https://github.com/serenity-js/serenity-js/compare/v2.32.4...v2.32.5) (2021-12-08)
7
+
8
+ **Note:** Version bump only for package @serenity-js/local-server
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.32.4](https://github.com/serenity-js/serenity-js/compare/v2.32.3...v2.32.4) (2021-11-25)
15
+
16
+ **Note:** Version bump only for package @serenity-js/local-server
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.32.3](https://github.com/serenity-js/serenity-js/compare/v2.32.2...v2.32.3) (2021-11-06)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **core:** support for NPM 8 ([7cb470c](https://github.com/serenity-js/serenity-js/commit/7cb470c985a7149f058a317dcb14e6294913f9ff))
28
+
29
+
30
+
31
+
32
+
33
+ ## [2.32.2](https://github.com/serenity-js/serenity-js/compare/v2.32.1...v2.32.2) (2021-10-04)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * **rest:** reverted axios to 0.21.4 to avoid issue axios/axios[#4124](https://github.com/serenity-js/serenity-js/issues/4124) introduced in version 0.22.0 ([ce1fc7f](https://github.com/serenity-js/serenity-js/commit/ce1fc7f8c8dcee0c0f41a2a2663b9ebe18de740d))
39
+
40
+
41
+
42
+
43
+
6
44
  ## [2.32.1](https://github.com/serenity-js/serenity-js/compare/v2.32.0...v2.32.1) (2021-09-17)
7
45
 
8
46
  **Note:** Version bump only for package @serenity-js/local-server
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/local-server",
3
- "version": "2.32.1",
3
+ "version": "2.32.5",
4
4
  "description": "Enables Serenity/JS Actors to manage local Node.js test servers, such as Express, Koa or Restify",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -48,32 +48,32 @@
48
48
  },
49
49
  "engines": {
50
50
  "node": "^12 || ^14 || ^16",
51
- "npm": "^6 || ^7"
51
+ "npm": "^6 || ^7 || ^8"
52
52
  },
53
53
  "dependencies": {
54
- "@serenity-js/core": "2.32.1",
54
+ "@serenity-js/core": "2.32.5",
55
55
  "http-shutdown": "^1.2.2",
56
56
  "portfinder": "^1.0.28"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@documentation/esdoc-template": "2.0.0",
60
- "@hapi/hapi": "^20.1.5",
60
+ "@hapi/hapi": "^20.2.1",
61
61
  "@integration/testing-tools": "2.0.0",
62
- "@serenity-js/assertions": "2.32.1",
63
- "@serenity-js/rest": "2.32.1",
64
- "@types/chai": "^4.2.21",
62
+ "@serenity-js/assertions": "2.32.5",
63
+ "@serenity-js/rest": "2.32.5",
64
+ "@types/chai": "^4.3.0",
65
65
  "@types/express": "^4.17.13",
66
66
  "@types/hapi": "^18.0.6",
67
67
  "@types/mocha": "^9.0.0",
68
- "@types/restify": "^8.5.2",
68
+ "@types/restify": "^8.5.4",
69
69
  "axios": "^0.21.4",
70
70
  "express": "^4.17.1",
71
- "koa": "^2.13.1",
72
- "mocha": "^9.1.1",
73
- "restify": "^8.5.1",
71
+ "koa": "^2.13.4",
72
+ "mocha": "^9.1.3",
73
+ "restify": "^8.6.0",
74
74
  "semver": "^7.3.5",
75
- "ts-node": "^10.2.1",
76
- "typescript": "^4.4.3"
75
+ "ts-node": "^10.4.0",
76
+ "typescript": "^4.5.2"
77
77
  },
78
78
  "nyc": {
79
79
  "include": [
@@ -97,5 +97,5 @@
97
97
  "cache": true,
98
98
  "all": true
99
99
  },
100
- "gitHead": "154ec34cd95968f69cfb2a20f6784a93ecbda6e5"
100
+ "gitHead": "d6dce465bdafee180a8f2af2a27b676c1654c853"
101
101
  }