git-raw-commits 1.3.6 → 2.0.7

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 +59 -0
  2. package/package.json +9 -11
package/CHANGELOG.md CHANGED
@@ -3,6 +3,65 @@
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
+ ## [2.0.7](https://github.com/conventional-changelog/conventional-changelog/compare/git-raw-commits@2.0.3...git-raw-commits@2.0.7) (2020-05-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update yargs-parser to move off a flagged-vulnerable version. ([#635](https://github.com/conventional-changelog/conventional-changelog/issues/635)) ([aafc0f0](https://github.com/conventional-changelog/conventional-changelog/commit/aafc0f00412c3e4b23b8418300e5a570a48fe24d))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.0.3](https://github.com/conventional-changelog/conventional-changelog/compare/git-raw-commits@2.0.2...git-raw-commits@2.0.3) (2019-11-14)
18
+
19
+ **Note:** Version bump only for package git-raw-commits
20
+
21
+
22
+
23
+
24
+
25
+ ## [2.0.2](https://github.com/conventional-changelog/conventional-changelog/compare/git-raw-commits@2.0.1...git-raw-commits@2.0.2) (2019-04-10)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **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))
31
+
32
+
33
+
34
+
35
+
36
+ ## [2.0.1](https://github.com/conventional-changelog/conventional-changelog/compare/git-raw-commits@2.0.0...git-raw-commits@2.0.1) (2018-11-01)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * 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))
42
+
43
+
44
+
45
+
46
+
47
+ <a name="2.0.0"></a>
48
+ # [2.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/git-raw-commits@1.3.6...git-raw-commits@2.0.0) (2018-05-29)
49
+
50
+
51
+ ### Chores
52
+
53
+ * **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))
54
+
55
+
56
+ ### BREAKING CHANGES
57
+
58
+ * **package:** Set the package's minimum required Node version to be the oldest LTS
59
+ currently supported by the Node Release working group. At this time,
60
+ that is Node 6 (which is in its Maintenance LTS phase).
61
+
62
+
63
+
64
+
6
65
  <a name="1.3.6"></a>
7
66
  ## [1.3.6](https://github.com/conventional-changelog/conventional-changelog/compare/git-raw-commits@1.3.5...git-raw-commits@1.3.6) (2018-03-27)
8
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-raw-commits",
3
- "version": "1.3.6",
3
+ "version": "2.0.7",
4
4
  "description": "Get raw git commits out of your repository using git-log(1)",
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": ">=10"
21
+ },
19
22
  "files": [
20
23
  "index.js",
21
24
  "cli.js"
@@ -30,22 +33,17 @@
30
33
  "git-log"
31
34
  ],
32
35
  "dependencies": {
33
- "dargs": "^4.0.1",
36
+ "dargs": "^7.0.0",
34
37
  "lodash.template": "^4.0.2",
35
- "meow": "^4.0.0",
38
+ "meow": "^7.0.0",
36
39
  "split2": "^2.0.0",
37
- "through2": "^2.0.0"
38
- },
39
- "devDependencies": {
40
- "mkdirp": "^0.5.1",
41
- "shelljs": "^0.8.0"
40
+ "through2": "^3.0.0"
42
41
  },
43
42
  "scripts": {
44
- "lint": "eslint --fix .",
45
- "test": "npm run-script lint && mocha --timeout 30000",
46
43
  "test-windows": "mocha --timeout 30000"
47
44
  },
48
45
  "bin": {
49
46
  "git-raw-commits": "cli.js"
50
- }
47
+ },
48
+ "gitHead": "83643c5a0d2c4d7c9ba14cbf990ffbc577a51e8c"
51
49
  }