conventional-changelog 3.1.21 → 3.1.25

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 CHANGED
@@ -3,6 +3,37 @@
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
+ ### [3.1.25](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-v3.1.24...conventional-changelog-v3.1.25) (2021-12-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **docs:** update list of available presets ([#871](https://github.com/conventional-changelog/conventional-changelog/issues/871)) ([2799851](https://github.com/conventional-changelog/conventional-changelog/commit/2799851f1915a42cb8498cf8959875badd07fd32))
12
+
13
+ ## [3.1.24](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog@3.1.23...conventional-changelog@3.1.24) (2020-11-05)
14
+
15
+ **Note:** Version bump only for package conventional-changelog
16
+
17
+
18
+
19
+
20
+
21
+ ## [3.1.23](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog@3.1.22...conventional-changelog@3.1.23) (2020-08-12)
22
+
23
+ **Note:** Version bump only for package conventional-changelog
24
+
25
+
26
+
27
+
28
+
29
+ ## [3.1.22](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog@3.1.21...conventional-changelog@3.1.22) (2020-06-20)
30
+
31
+ **Note:** Version bump only for package conventional-changelog
32
+
33
+
34
+
35
+
36
+
6
37
  ## [3.1.21](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog@3.1.20...conventional-changelog@3.1.21) (2020-05-08)
7
38
 
8
39
  **Note:** Version bump only for package conventional-changelog
package/README.md CHANGED
@@ -42,7 +42,7 @@ See the [conventional-changelog-core](https://github.com/conventional-changelog/
42
42
 
43
43
  ##### preset
44
44
 
45
- Type: `string` Possible values: `'angular', 'atom', 'codemirror', 'ember', 'eslint', 'express', 'jquery', 'jscs', 'jshint'`
45
+ Type: `string` Possible values: `'angular', 'atom', 'codemirror', 'conventionalcommits', 'ember', 'eslint', 'express', 'jquery', 'jshint'`
46
46
 
47
47
  It's recommended to use a preset so you don't have to define everything yourself. Presets are names of built-in `config`.
48
48
 
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
- var conventionalChangelogCore = require('conventional-changelog-core')
4
- var conventionalChangelogPresetLoader = require('conventional-changelog-preset-loader')
3
+ const conventionalChangelogCore = require('conventional-changelog-core')
4
+ const conventionalChangelogPresetLoader = require('conventional-changelog-preset-loader')
5
5
 
6
6
  function conventionalChangelog (options, context, gitRawCommitsOpts, parserOpts, writerOpts) {
7
7
  options.warn = options.warn || function () {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conventional-changelog",
3
- "version": "3.1.21",
3
+ "version": "3.1.25",
4
4
  "description": "Generate a changelog from git metadata",
5
5
  "repository": {
6
6
  "type": "git",
@@ -35,20 +35,19 @@
35
35
  },
36
36
  "homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog#readme",
37
37
  "dependencies": {
38
- "conventional-changelog-angular": "^5.0.10",
39
- "conventional-changelog-atom": "^2.0.7",
40
- "conventional-changelog-codemirror": "^2.0.7",
41
- "conventional-changelog-conventionalcommits": "^4.3.0",
42
- "conventional-changelog-core": "^4.1.7",
43
- "conventional-changelog-ember": "^2.0.8",
44
- "conventional-changelog-eslint": "^3.0.8",
45
- "conventional-changelog-express": "^2.0.5",
46
- "conventional-changelog-jquery": "^3.0.10",
47
- "conventional-changelog-jshint": "^2.0.7",
38
+ "conventional-changelog-angular": "^5.0.12",
39
+ "conventional-changelog-atom": "^2.0.8",
40
+ "conventional-changelog-codemirror": "^2.0.8",
41
+ "conventional-changelog-conventionalcommits": "^4.5.0",
42
+ "conventional-changelog-core": "^4.2.1",
43
+ "conventional-changelog-ember": "^2.0.9",
44
+ "conventional-changelog-eslint": "^3.0.9",
45
+ "conventional-changelog-express": "^2.0.6",
46
+ "conventional-changelog-jquery": "^3.0.11",
47
+ "conventional-changelog-jshint": "^2.0.9",
48
48
  "conventional-changelog-preset-loader": "^2.3.4"
49
49
  },
50
50
  "scripts": {
51
51
  "test-windows": "mocha --timeout 30000"
52
- },
53
- "gitHead": "c5ae3ab67c59e04f79eb19d317c92800df618435"
52
+ }
54
53
  }