@serenity-js/mocha 2.32.2 → 3.0.0-rc.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 +44 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,50 @@
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.0](https://github.com/serenity-js/serenity-js/compare/v2.32.5...v3.0.0-rc.0) (2021-12-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **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)
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * **core:** Introduced @serenity-js/web - a shared library for Serenity/JS Web integration
17
+ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped support for Node 12.
18
+
19
+
20
+
21
+
22
+
23
+ ## [2.32.5](https://github.com/serenity-js/serenity-js/compare/v2.32.4...v2.32.5) (2021-12-08)
24
+
25
+ **Note:** Version bump only for package @serenity-js/mocha
26
+
27
+
28
+
29
+
30
+
31
+ ## [2.32.4](https://github.com/serenity-js/serenity-js/compare/v2.32.3...v2.32.4) (2021-11-25)
32
+
33
+ **Note:** Version bump only for package @serenity-js/mocha
34
+
35
+
36
+
37
+
38
+
39
+ ## [2.32.3](https://github.com/serenity-js/serenity-js/compare/v2.32.2...v2.32.3) (2021-11-06)
40
+
41
+
42
+ ### Bug Fixes
43
+
44
+ * **core:** support for NPM 8 ([7cb470c](https://github.com/serenity-js/serenity-js/commit/7cb470c985a7149f058a317dcb14e6294913f9ff))
45
+
46
+
47
+
48
+
49
+
6
50
  ## [2.32.2](https://github.com/serenity-js/serenity-js/compare/v2.32.1...v2.32.2) (2021-10-04)
7
51
 
8
52
  **Note:** Version bump only for package @serenity-js/mocha
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/mocha",
3
- "version": "2.32.2",
3
+ "version": "3.0.0-rc.0",
4
4
  "description": "Serenity/JS adapter for Mocha",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -41,23 +41,23 @@
41
41
  "url": "https://github.com/serenity-js/serenity-js/issues"
42
42
  },
43
43
  "engines": {
44
- "node": "^12 || ^14 || ^16",
45
- "npm": "^6 || ^7"
44
+ "node": "^14 || ^16",
45
+ "npm": "^6 || ^7 || ^8"
46
46
  },
47
47
  "dependencies": {
48
- "@serenity-js/core": "2.32.2"
48
+ "@serenity-js/core": "3.0.0-rc.0"
49
49
  },
50
50
  "peerDependencies": {
51
- "mocha": "^9.1.1"
51
+ "mocha": "^9.1.3"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@documentation/esdoc-template": "2.0.0",
55
55
  "@integration/testing-tools": "2.0.0",
56
- "@types/chai": "^4.2.22",
56
+ "@types/chai": "^4.3.0",
57
57
  "@types/mocha": "^9.0.0",
58
- "mocha": "^9.1.1",
59
- "ts-node": "^10.2.1",
60
- "typescript": "^4.4.3"
58
+ "mocha": "^9.1.3",
59
+ "ts-node": "^10.4.0",
60
+ "typescript": "^4.5.2"
61
61
  },
62
62
  "nyc": {
63
63
  "include": [
@@ -81,5 +81,5 @@
81
81
  "cache": true,
82
82
  "all": true
83
83
  },
84
- "gitHead": "327f61fa241cf9fe61913246c5ff579b06e47f26"
84
+ "gitHead": "a63381d088cc068bc3edcbd1eb59a7e609cb6a8c"
85
85
  }