@commitlint/ensure 15.0.0 → 17.0.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 +34 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,40 @@
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
+ # [17.0.0](https://github.com/conventional-changelog/commitlint/compare/v16.3.0...v17.0.0) (2022-05-16)
7
+
8
+
9
+ * chore!: minimum node version v14 (#3128) ([ac5f9b4](https://github.com/conventional-changelog/commitlint/commit/ac5f9b47a9e3cd5c9d58b14da0feb426f06b1ef9)), closes [#3128](https://github.com/conventional-changelog/commitlint/issues/3128)
10
+
11
+
12
+ ### BREAKING CHANGES
13
+
14
+ * drop node v12 support
15
+
16
+ * chore: rename circleci windows job
17
+
18
+ node version is not defned by the name anyways (i think)
19
+
20
+
21
+
22
+
23
+
24
+ ## [16.2.1](https://github.com/conventional-changelog/commitlint/compare/v16.2.0...v16.2.1) (2022-02-13)
25
+
26
+ **Note:** Version bump only for package @commitlint/ensure
27
+
28
+
29
+
30
+
31
+
32
+ # [16.0.0](https://github.com/conventional-changelog/commitlint/compare/v15.0.0...v16.0.0) (2021-12-26)
33
+
34
+ **Note:** Version bump only for package @commitlint/ensure
35
+
36
+
37
+
38
+
39
+
6
40
  # [15.0.0](https://github.com/conventional-changelog/commitlint/compare/v14.2.0...v15.0.0) (2021-11-17)
7
41
 
8
42
  **Note:** Version bump only for package @commitlint/ensure
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commitlint/ensure",
3
- "version": "15.0.0",
3
+ "version": "17.0.0",
4
4
  "description": "Lint your commit messages",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "pkg": "pkg-check"
13
13
  },
14
14
  "engines": {
15
- "node": ">=v12"
15
+ "node": ">=v14"
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",
@@ -35,13 +35,13 @@
35
35
  },
36
36
  "license": "MIT",
37
37
  "devDependencies": {
38
- "@commitlint/utils": "^15.0.0",
38
+ "@commitlint/utils": "^17.0.0",
39
39
  "@types/lodash": "^4.14.161",
40
40
  "globby": "^11.0.0"
41
41
  },
42
42
  "dependencies": {
43
- "@commitlint/types": "^15.0.0",
43
+ "@commitlint/types": "^17.0.0",
44
44
  "lodash": "^4.17.19"
45
45
  },
46
- "gitHead": "399a0289356c670a87524387cc96d8fb0a33fdca"
46
+ "gitHead": "ed437d29464ab1b239deecb84ce4d1f2a5e471c6"
47
47
  }