@serenity-js/assertions 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 +44 -0
  2. package/package.json +8 -8
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.3](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.2...v3.0.0-rc.3) (2021-12-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** updated tiny-types to 1.17.0 ([3187051](https://github.com/serenity-js/serenity-js/commit/3187051594158b4b450c82e851e417fd2ed21652))
12
+
13
+
14
+
15
+
16
+
17
+ # [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)
18
+
19
+ **Note:** Version bump only for package @serenity-js/assertions
20
+
21
+
22
+
23
+
24
+
25
+ # [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)
26
+
27
+ **Note:** Version bump only for package @serenity-js/assertions
28
+
29
+
30
+
31
+
32
+
33
+ # [3.0.0-rc.0](https://github.com/serenity-js/serenity-js/compare/v2.32.5...v3.0.0-rc.0) (2021-12-08)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * **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)
39
+
40
+
41
+ ### BREAKING CHANGES
42
+
43
+ * **core:** Introduced @serenity-js/web - a shared library for Serenity/JS Web integration
44
+ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped support for Node 12.
45
+
46
+
47
+
48
+
49
+
6
50
  ## [2.32.5](https://github.com/serenity-js/serenity-js/compare/v2.32.4...v2.32.5) (2021-12-08)
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.5",
3
+ "version": "3.0.0-rc.3",
4
4
  "description": "Screenplay-style assertion library",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  "scripts": {
29
29
  "clean": "rimraf .nyc_output lib target",
30
- "lint": "eslint --ext ts --config ../../.eslintrc.js .",
30
+ "lint": "eslint --ext ts --config ../../.eslintrc.yml .",
31
31
  "lint:fix": "npm run lint -- --fix",
32
32
  "test": "nyc --report-dir ../../target/coverage/assertions mocha --config ../../.mocharc.yml 'spec/**/*.spec.*'",
33
33
  "compile": "tsc --project tsconfig.json",
@@ -41,16 +41,16 @@
41
41
  "url": "https://github.com/serenity-js/serenity-js/issues"
42
42
  },
43
43
  "engines": {
44
- "node": "^12 || ^14 || ^16",
44
+ "node": "^14 || ^16",
45
45
  "npm": "^6 || ^7 || ^8"
46
46
  },
47
47
  "dependencies": {
48
- "@serenity-js/core": "2.32.5",
49
- "tiny-types": "^1.16.1"
48
+ "@serenity-js/core": "3.0.0-rc.3",
49
+ "tiny-types": "^1.17.0"
50
50
  },
51
51
  "devDependencies": {
52
- "@documentation/esdoc-template": "2.0.0",
53
- "@integration/testing-tools": "2.0.0",
52
+ "@documentation/esdoc-template": "3.0.0",
53
+ "@integration/testing-tools": "3.0.0",
54
54
  "@types/chai": "^4.3.0",
55
55
  "@types/mocha": "^9.0.0",
56
56
  "mocha": "^9.1.3",
@@ -79,5 +79,5 @@
79
79
  "cache": true,
80
80
  "all": true
81
81
  },
82
- "gitHead": "d6dce465bdafee180a8f2af2a27b676c1654c853"
82
+ "gitHead": "69da7444e581c457e29e87edcd910ec06a069338"
83
83
  }