git-raw-commits 2.0.9 → 2.0.10
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.
- package/CHANGELOG.md +8 -0
- package/index.js +1 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.10](https://www.github.com/conventional-changelog/conventional-changelog/compare/v2.0.9...v2.0.10) (2021-01-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* align lodash dependency across packages ([#737](https://www.github.com/conventional-changelog/conventional-changelog/issues/737)) ([d9feeb6](https://www.github.com/conventional-changelog/conventional-changelog/commit/d9feeb605de28c00ef55b5c8e229efd1289dd6e8))
|
|
12
|
+
* revert normalize git show signature option to false ([c4d9042](https://www.github.com/conventional-changelog/conventional-changelog/commit/c4d9042ae83aa2c823dca181dd72e5a8b3163c1e))
|
|
13
|
+
|
|
6
14
|
### [2.0.9](https://www.github.com/conventional-changelog/conventional-changelog/compare/git-raw-commits@2.0.8...v2.0.9) (2020-12-29)
|
|
7
15
|
|
|
8
16
|
|
package/index.js
CHANGED
|
@@ -4,7 +4,7 @@ const dargs = require('dargs')
|
|
|
4
4
|
const execFile = require('child_process').execFile
|
|
5
5
|
const split = require('split2')
|
|
6
6
|
const stream = require('stream')
|
|
7
|
-
const template = require('lodash
|
|
7
|
+
const template = require('lodash/template')
|
|
8
8
|
const through = require('through2')
|
|
9
9
|
|
|
10
10
|
const DELIMITER = '------------------------ >8 ------------------------'
|
|
@@ -19,7 +19,6 @@ function normalizeGitOpts (gitOpts) {
|
|
|
19
19
|
gitOpts = gitOpts || {}
|
|
20
20
|
gitOpts.format = gitOpts.format || '%B'
|
|
21
21
|
gitOpts.from = gitOpts.from || ''
|
|
22
|
-
gitOpts.showSignature = gitOpts.showSignature || false
|
|
23
22
|
gitOpts.to = gitOpts.to || 'HEAD'
|
|
24
23
|
return gitOpts
|
|
25
24
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-raw-commits",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.10",
|
|
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"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"dargs": "^7.0.0",
|
|
37
|
-
"lodash
|
|
37
|
+
"lodash": "^4.17.15",
|
|
38
38
|
"meow": "^8.0.0",
|
|
39
39
|
"split2": "^3.0.0",
|
|
40
40
|
"through2": "^4.0.0"
|