@serenity-js/assertions 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 +9 -9
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/assertions
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/assertions
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/assertions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/assertions",
3
- "version": "2.32.2",
3
+ "version": "3.0.0-rc.0",
4
4
  "description": "Screenplay-style assertion library",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -41,21 +41,21 @@
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
  "tiny-types": "^1.16.1"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@documentation/esdoc-template": "2.0.0",
53
53
  "@integration/testing-tools": "2.0.0",
54
- "@types/chai": "^4.2.22",
54
+ "@types/chai": "^4.3.0",
55
55
  "@types/mocha": "^9.0.0",
56
- "mocha": "^9.1.1",
57
- "ts-node": "^10.2.1",
58
- "typescript": "^4.4.3"
56
+ "mocha": "^9.1.3",
57
+ "ts-node": "^10.4.0",
58
+ "typescript": "^4.5.2"
59
59
  },
60
60
  "nyc": {
61
61
  "include": [
@@ -79,5 +79,5 @@
79
79
  "cache": true,
80
80
  "all": true
81
81
  },
82
- "gitHead": "327f61fa241cf9fe61913246c5ff579b06e47f26"
82
+ "gitHead": "a63381d088cc068bc3edcbd1eb59a7e609cb6a8c"
83
83
  }