@serenity-js/local-server 2.32.3 → 3.0.0-rc.1

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 +41 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -3,6 +3,47 @@
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.1](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.0...v3.0.0-rc.1) (2021-12-09)
7
+
8
+ **Note:** Version bump only for package @serenity-js/local-server
9
+
10
+
11
+
12
+
13
+
14
+ # [3.0.0-rc.0](https://github.com/serenity-js/serenity-js/compare/v2.32.5...v3.0.0-rc.0) (2021-12-08)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **core:** 3.0 RC ([469d54e](https://github.com/serenity-js/serenity-js/commit/469d54e4f81ef430566b93852e3174826f8ef672)), closes [#805](https://github.com/serenity-js/serenity-js/issues/805)
20
+
21
+
22
+ ### BREAKING CHANGES
23
+
24
+ * **core:** Introduced @serenity-js/web - a shared library for Serenity/JS Web integration
25
+ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped support for Node 12.
26
+
27
+
28
+
29
+
30
+
31
+ ## [2.32.5](https://github.com/serenity-js/serenity-js/compare/v2.32.4...v2.32.5) (2021-12-08)
32
+
33
+ **Note:** Version bump only for package @serenity-js/local-server
34
+
35
+
36
+
37
+
38
+
39
+ ## [2.32.4](https://github.com/serenity-js/serenity-js/compare/v2.32.3...v2.32.4) (2021-11-25)
40
+
41
+ **Note:** Version bump only for package @serenity-js/local-server
42
+
43
+
44
+
45
+
46
+
6
47
  ## [2.32.3](https://github.com/serenity-js/serenity-js/compare/v2.32.2...v2.32.3) (2021-11-06)
7
48
 
8
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/local-server",
3
- "version": "2.32.3",
3
+ "version": "3.0.0-rc.1",
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",
@@ -33,9 +33,9 @@
33
33
  ],
34
34
  "scripts": {
35
35
  "clean": "rimraf .nyc_output lib target",
36
- "lint": "eslint --ext ts --config ../../.eslintrc.js .",
36
+ "lint": "eslint --ext ts --config ../../.eslintrc.yml .",
37
37
  "lint:fix": "npm run lint -- --fix",
38
- "test": "nyc --report-dir ../../target/coverage/rest mocha --config ../../.mocharc.yml 'spec/**/*.spec.*'",
38
+ "test": "nyc --report-dir ../../target/coverage/local-server mocha --config ../../.mocharc.yml 'spec/**/*.spec.*'",
39
39
  "compile": "tsc --project tsconfig.json",
40
40
  "site": "esdoc -c .esdoc.js"
41
41
  },
@@ -47,33 +47,33 @@
47
47
  "url": "https://github.com/serenity-js/serenity-js/issues"
48
48
  },
49
49
  "engines": {
50
- "node": "^12 || ^14 || ^16",
50
+ "node": "^14 || ^16",
51
51
  "npm": "^6 || ^7 || ^8"
52
52
  },
53
53
  "dependencies": {
54
- "@serenity-js/core": "2.32.3",
54
+ "@serenity-js/core": "3.0.0-rc.1",
55
55
  "http-shutdown": "^1.2.2",
56
56
  "portfinder": "^1.0.28"
57
57
  },
58
58
  "devDependencies": {
59
- "@documentation/esdoc-template": "2.0.0",
59
+ "@documentation/esdoc-template": "3.0.0",
60
60
  "@hapi/hapi": "^20.2.1",
61
- "@integration/testing-tools": "2.0.0",
62
- "@serenity-js/assertions": "2.32.3",
63
- "@serenity-js/rest": "2.32.3",
64
- "@types/chai": "^4.2.22",
61
+ "@integration/testing-tools": "3.0.0",
62
+ "@serenity-js/assertions": "3.0.0-rc.1",
63
+ "@serenity-js/rest": "3.0.0-rc.1",
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
71
  "koa": "^2.13.4",
72
72
  "mocha": "^9.1.3",
73
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": "273d6b021b4b2153711e5286dc448ea01b9200f8"
100
+ "gitHead": "ceed4ad3a2375c14b0546a6fc2fe3e816250f746"
101
101
  }