@serenity-js/local-server 2.32.5 → 3.0.0-rc.3

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 +10 -10
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.3](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.2...v3.0.0-rc.3) (2021-12-29)
7
+
8
+ **Note:** Version bump only for package @serenity-js/local-server
9
+
10
+
11
+
12
+
13
+
14
+ # [3.0.0-rc.2](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.1...v3.0.0-rc.2) (2021-12-09)
15
+
16
+ **Note:** Version bump only for package @serenity-js/local-server
17
+
18
+
19
+
20
+
21
+
22
+ # [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)
23
+
24
+ **Note:** Version bump only for package @serenity-js/local-server
25
+
26
+
27
+
28
+
29
+
30
+ # [3.0.0-rc.0](https://github.com/serenity-js/serenity-js/compare/v2.32.5...v3.0.0-rc.0) (2021-12-08)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * **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)
36
+
37
+
38
+ ### BREAKING CHANGES
39
+
40
+ * **core:** Introduced @serenity-js/web - a shared library for Serenity/JS Web integration
41
+ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped support for Node 12.
42
+
43
+
44
+
45
+
46
+
6
47
  ## [2.32.5](https://github.com/serenity-js/serenity-js/compare/v2.32.4...v2.32.5) (2021-12-08)
7
48
 
8
49
  **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.5",
3
+ "version": "3.0.0-rc.3",
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,20 +47,20 @@
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.5",
54
+ "@serenity-js/core": "3.0.0-rc.3",
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.5",
63
- "@serenity-js/rest": "2.32.5",
61
+ "@integration/testing-tools": "3.0.0",
62
+ "@serenity-js/assertions": "3.0.0-rc.3",
63
+ "@serenity-js/rest": "3.0.0-rc.3",
64
64
  "@types/chai": "^4.3.0",
65
65
  "@types/express": "^4.17.13",
66
66
  "@types/hapi": "^18.0.6",
@@ -97,5 +97,5 @@
97
97
  "cache": true,
98
98
  "all": true
99
99
  },
100
- "gitHead": "d6dce465bdafee180a8f2af2a27b676c1654c853"
100
+ "gitHead": "69da7444e581c457e29e87edcd910ec06a069338"
101
101
  }