conventional-commits-parser 2.1.7 → 3.0.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 +53 -2
  2. package/package.json +8 -9
package/CHANGELOG.md CHANGED
@@ -3,7 +3,58 @@
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
- <a name="2.1.7"></a>
6
+ ## [3.0.3](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-parser@3.0.2...conventional-commits-parser@3.0.3) (2019-05-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency is-text-path to v2 ([#455](https://github.com/conventional-changelog/conventional-changelog/issues/455)) ([0f40ec3](https://github.com/conventional-changelog/conventional-changelog/commit/0f40ec3))
12
+
13
+
14
+
15
+
16
+
17
+ ## [3.0.2](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-parser@3.0.1...conventional-commits-parser@3.0.2) (2019-04-10)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **deps:** update dependency through2 to v3 ([#392](https://github.com/conventional-changelog/conventional-changelog/issues/392)) ([26fe91f](https://github.com/conventional-changelog/conventional-changelog/commit/26fe91f))
23
+
24
+
25
+
26
+
27
+
28
+ ## [3.0.1](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-parser@3.0.0...conventional-commits-parser@3.0.1) (2018-11-01)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * Upgrade to Lerna 3, fix Node.js v11 error ([#385](https://github.com/conventional-changelog/conventional-changelog/issues/385)) ([cdef282](https://github.com/conventional-changelog/conventional-changelog/commit/cdef282))
34
+
35
+
36
+
37
+
38
+
39
+ <a name="3.0.0"></a>
40
+ # [3.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-parser@2.1.7...conventional-commits-parser@3.0.0) (2018-05-29)
41
+
42
+
43
+ ### Chores
44
+
45
+ * **package:** set Node requirement to oldest supported LTS ([#329](https://github.com/conventional-changelog/conventional-changelog/issues/329)) ([cae2fe0](https://github.com/conventional-changelog/conventional-changelog/commit/cae2fe0))
46
+
47
+
48
+ ### BREAKING CHANGES
49
+
50
+ * **package:** Set the package's minimum required Node version to be the oldest LTS
51
+ currently supported by the Node Release working group. At this time,
52
+ that is Node 6 (which is in its Maintenance LTS phase).
53
+
54
+
55
+
56
+
57
+ <a name="2.1.7"></a>
7
58
  ## [2.1.7](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-parser@2.1.6...conventional-commits-parser@2.1.7) (2018-03-27)
8
59
 
9
60
 
@@ -11,7 +62,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
62
 
12
63
  **Note:** Version bump only for package conventional-commits-parser
13
64
 
14
- <a name="2.1.6"></a>
65
+ <a name="2.1.6"></a>
15
66
  ## [2.1.6](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-commits-parser@2.1.5...conventional-commits-parser@2.1.6) (2018-03-22)
16
67
 
17
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conventional-commits-parser",
3
- "version": "2.1.7",
3
+ "version": "3.0.3",
4
4
  "description": "Parse raw conventional commits",
5
5
  "bugs": {
6
6
  "url": "https://github.com/conventional-changelog/conventional-changelog/issues"
@@ -16,6 +16,9 @@
16
16
  "url": "https://github.com/conventional-changelog/conventional-changelog.git"
17
17
  },
18
18
  "license": "MIT",
19
+ "engines": {
20
+ "node": ">=6.9.0"
21
+ },
19
22
  "files": [
20
23
  "index.js",
21
24
  "cli.js",
@@ -31,22 +34,18 @@
31
34
  ],
32
35
  "dependencies": {
33
36
  "JSONStream": "^1.0.4",
34
- "is-text-path": "^1.0.0",
37
+ "is-text-path": "^2.0.0",
35
38
  "lodash": "^4.2.1",
36
39
  "meow": "^4.0.0",
37
40
  "split2": "^2.0.0",
38
- "through2": "^2.0.0",
41
+ "through2": "^3.0.0",
39
42
  "trim-off-newlines": "^1.0.0"
40
43
  },
41
- "devDependencies": {
42
- "concat-stream": "^1.6.0"
43
- },
44
44
  "scripts": {
45
- "lint": "eslint --fix .",
46
- "test": "npm run lint && mocha --timeout=30000",
47
45
  "test-windows": "echo 'make work on windows'"
48
46
  },
49
47
  "bin": {
50
48
  "conventional-commits-parser": "cli.js"
51
- }
49
+ },
50
+ "gitHead": "38f5508191f8afc1a8503d1fd24e2de6d05b8738"
52
51
  }