git-raw-commits 1.3.5 → 2.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 (3) hide show
  1. package/CHANGELOG.md +56 -0
  2. package/LICENSE.md +21 -0
  3. package/package.json +8 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,62 @@
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.3](https://github.com/conventional-changelog/conventional-changelog/compare/git-raw-commits@2.0.2...git-raw-commits@2.0.3) (2019-11-14)
7
+
8
+ **Note:** Version bump only for package git-raw-commits
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **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))
20
+
21
+
22
+
23
+
24
+
25
+ ## [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)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * 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))
31
+
32
+
33
+
34
+
35
+
36
+ <a name="2.0.0"></a>
37
+ # [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)
38
+
39
+
40
+ ### Chores
41
+
42
+ * **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))
43
+
44
+
45
+ ### BREAKING CHANGES
46
+
47
+ * **package:** Set the package's minimum required Node version to be the oldest LTS
48
+ currently supported by the Node Release working group. At this time,
49
+ that is Node 6 (which is in its Maintenance LTS phase).
50
+
51
+
52
+
53
+
54
+ <a name="1.3.6"></a>
55
+ ## [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)
56
+
57
+
58
+
59
+
60
+ **Note:** Version bump only for package git-raw-commits
61
+
6
62
  <a name="1.3.5"></a>
7
63
  ## [1.3.5](https://github.com/conventional-changelog/conventional-changelog/compare/git-raw-commits@1.3.4...git-raw-commits@1.3.5) (2018-03-22)
8
64
 
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ ### MIT License
2
+
3
+ Copyright © [conventional-changelog team](https://github.com/conventional-changelog)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9
+ of the Software, and to permit persons to whom the Software is furnished to do
10
+ so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-raw-commits",
3
- "version": "1.3.5",
3
+ "version": "2.0.3",
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": ">=6.9.0"
21
+ },
19
22
  "files": [
20
23
  "index.js",
21
24
  "cli.js"
@@ -32,20 +35,15 @@
32
35
  "dependencies": {
33
36
  "dargs": "^4.0.1",
34
37
  "lodash.template": "^4.0.2",
35
- "meow": "^4.0.0",
38
+ "meow": "^5.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": "79217815a7ce5f3d3f833961ce9a14bd454e5789"
51
49
  }