standard-changelog 2.0.27 → 4.0.0
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/README.md +4 -4
- package/{cli.js → cli.mjs} +55 -45
- package/index.js +4 -5
- package/package.json +12 -19
- package/CHANGELOG.md +0 -365
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Standard CHANGELOG
|
|
2
2
|
|
|
3
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage Status][
|
|
3
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage Status][coverage-image]][coverage-url]
|
|
4
4
|
|
|
5
5
|
> An opinionated approach to CHANGELOG generation using angular commit conventions.
|
|
6
6
|
|
|
@@ -48,7 +48,7 @@ $ standard-changelog --help
|
|
|
48
48
|
|
|
49
49
|
## API
|
|
50
50
|
|
|
51
|
-
See the [conventional-changelog](https://github.com/
|
|
51
|
+
See the [conventional-changelog](https://github.com/conventional-changelog/conventional-changelog) docs with the angular preset.
|
|
52
52
|
|
|
53
53
|
## License
|
|
54
54
|
|
|
@@ -60,5 +60,5 @@ MIT
|
|
|
60
60
|
[travis-url]: https://travis-ci.org/conventional-changelog/standard-changelog
|
|
61
61
|
[daviddm-image]: https://david-dm.org/conventional-changelog/standard-changelog.svg?theme=shields.io
|
|
62
62
|
[daviddm-url]: https://david-dm.org/conventional-changelog/standard-changelog
|
|
63
|
-
[
|
|
64
|
-
[
|
|
63
|
+
[coverage-image]: https://coveralls.io/repos/github/conventional-changelog/conventional-changelog/badge.svg?branch=master
|
|
64
|
+
[coverage-url]: https://coveralls.io/github/conventional-changelog/conventional-changelog?branch=master
|
package/{cli.js → cli.mjs}
RENAMED
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
import {
|
|
3
|
+
createReadStream,
|
|
4
|
+
createWriteStream
|
|
5
|
+
} from 'fs'
|
|
6
|
+
import {
|
|
7
|
+
readFile,
|
|
8
|
+
rm
|
|
9
|
+
} from 'fs/promises'
|
|
10
|
+
import { resolve } from 'path'
|
|
11
|
+
import { pathToFileURL } from 'url'
|
|
12
|
+
import { Readable } from 'stream'
|
|
13
|
+
import addStream from 'add-stream'
|
|
14
|
+
import pc from 'picocolors'
|
|
15
|
+
import tempfile from 'tempfile'
|
|
16
|
+
import meow from 'meow'
|
|
17
|
+
import standardChangelog from './index.js'
|
|
18
|
+
|
|
19
|
+
function relativeResolve (filePath) {
|
|
20
|
+
return pathToFileURL(resolve(process.cwd(), filePath))
|
|
21
|
+
}
|
|
13
22
|
|
|
14
23
|
const cli = meow(`
|
|
15
24
|
Usage
|
|
@@ -29,55 +38,56 @@ const cli = meow(`
|
|
|
29
38
|
-l, --lerna-package Generate a changelog for a specific lerna package (:pkg-name@1.0.0)
|
|
30
39
|
--commit-path Generate a changelog scoped to a specific directory
|
|
31
40
|
`, {
|
|
41
|
+
importMeta: import.meta,
|
|
32
42
|
booleanDefault: undefined,
|
|
33
43
|
flags: {
|
|
34
44
|
infile: {
|
|
35
|
-
|
|
45
|
+
shortFlag: 'i',
|
|
36
46
|
default: 'CHANGELOG.md',
|
|
37
47
|
type: 'string'
|
|
38
48
|
},
|
|
39
49
|
help: {
|
|
40
|
-
|
|
50
|
+
shortFlag: 'h'
|
|
41
51
|
},
|
|
42
52
|
outfile: {
|
|
43
|
-
|
|
53
|
+
shortFlag: 'o',
|
|
44
54
|
type: 'string'
|
|
45
55
|
},
|
|
46
|
-
|
|
47
|
-
|
|
56
|
+
sameFile: {
|
|
57
|
+
shortFlag: 's',
|
|
48
58
|
default: true,
|
|
49
59
|
type: 'boolean'
|
|
50
60
|
},
|
|
51
61
|
preset: {
|
|
52
|
-
|
|
62
|
+
shortFlag: 'p',
|
|
53
63
|
type: 'string'
|
|
54
64
|
},
|
|
55
65
|
pkg: {
|
|
56
|
-
|
|
66
|
+
shortFlag: 'k',
|
|
57
67
|
type: 'string'
|
|
58
68
|
},
|
|
59
69
|
append: {
|
|
60
|
-
|
|
70
|
+
shortFlag: 'a',
|
|
61
71
|
type: 'boolean'
|
|
62
72
|
},
|
|
63
|
-
|
|
64
|
-
|
|
73
|
+
releaseCount: {
|
|
74
|
+
shortFlag: 'r',
|
|
65
75
|
type: 'number'
|
|
66
76
|
},
|
|
67
77
|
verbose: {
|
|
68
|
-
|
|
78
|
+
shortFlag: 'v',
|
|
69
79
|
type: 'boolean'
|
|
70
80
|
},
|
|
71
81
|
context: {
|
|
72
|
-
|
|
82
|
+
shortFlag: 'c',
|
|
73
83
|
type: 'string'
|
|
74
84
|
},
|
|
75
|
-
|
|
76
|
-
|
|
85
|
+
firstRelease: {
|
|
86
|
+
shortFlag: 'f',
|
|
77
87
|
type: 'boolean'
|
|
78
88
|
},
|
|
79
|
-
|
|
80
|
-
|
|
89
|
+
lernaPackage: {
|
|
90
|
+
shortFlag: 'l',
|
|
81
91
|
type: 'string'
|
|
82
92
|
}
|
|
83
93
|
}
|
|
@@ -90,15 +100,15 @@ const outfile = sameFile ? (flags.outfile || infile) : flags.outfile
|
|
|
90
100
|
const append = flags.append
|
|
91
101
|
const releaseCount = flags.firstRelease ? 0 : flags.releaseCount
|
|
92
102
|
|
|
93
|
-
const options =
|
|
103
|
+
const options = {
|
|
94
104
|
preset: flags.preset,
|
|
95
105
|
pkg: {
|
|
96
106
|
path: flags.pkg
|
|
97
107
|
},
|
|
98
|
-
append
|
|
99
|
-
releaseCount
|
|
108
|
+
append,
|
|
109
|
+
releaseCount,
|
|
100
110
|
lernaPackage: flags.lernaPackage
|
|
101
|
-
}
|
|
111
|
+
}
|
|
102
112
|
|
|
103
113
|
if (flags.verbose) {
|
|
104
114
|
options.warn = console.warn.bind(console)
|
|
@@ -108,23 +118,23 @@ let templateContext
|
|
|
108
118
|
|
|
109
119
|
function outputError (err) {
|
|
110
120
|
if (flags.verbose) {
|
|
111
|
-
console.error(
|
|
121
|
+
console.error(pc.gray(err.stack))
|
|
112
122
|
} else {
|
|
113
|
-
console.error(
|
|
123
|
+
console.error(pc.red(err.toString()))
|
|
114
124
|
}
|
|
115
125
|
process.exit(1)
|
|
116
126
|
}
|
|
117
127
|
|
|
118
128
|
try {
|
|
119
129
|
if (flags.context) {
|
|
120
|
-
templateContext =
|
|
130
|
+
templateContext = JSON.parse(await readFile(relativeResolve(flags.context), 'utf8'))
|
|
121
131
|
}
|
|
122
132
|
} catch (err) {
|
|
123
133
|
outputError(err)
|
|
124
134
|
}
|
|
125
135
|
|
|
126
136
|
const changelogStream = standardChangelog(options, templateContext, flags.commitPath ? { path: flags.commitPath } : {})
|
|
127
|
-
.on('error',
|
|
137
|
+
.on('error', (err) => {
|
|
128
138
|
outputError(err)
|
|
129
139
|
})
|
|
130
140
|
|
|
@@ -132,8 +142,8 @@ standardChangelog.createIfMissing(infile)
|
|
|
132
142
|
|
|
133
143
|
let readStream = null
|
|
134
144
|
if (releaseCount !== 0) {
|
|
135
|
-
readStream =
|
|
136
|
-
.on('error',
|
|
145
|
+
readStream = createReadStream(infile)
|
|
146
|
+
.on('error', (err) => {
|
|
137
147
|
outputError(err)
|
|
138
148
|
})
|
|
139
149
|
} else {
|
|
@@ -143,10 +153,10 @@ if (releaseCount !== 0) {
|
|
|
143
153
|
|
|
144
154
|
if (options.append) {
|
|
145
155
|
changelogStream
|
|
146
|
-
.pipe(
|
|
156
|
+
.pipe(createWriteStream(outfile, {
|
|
147
157
|
flags: 'a'
|
|
148
158
|
}))
|
|
149
|
-
.on('finish',
|
|
159
|
+
.on('finish', () => {
|
|
150
160
|
standardChangelog.checkpoint('appended changes to %s', [outfile])
|
|
151
161
|
})
|
|
152
162
|
} else {
|
|
@@ -154,13 +164,13 @@ if (options.append) {
|
|
|
154
164
|
|
|
155
165
|
changelogStream
|
|
156
166
|
.pipe(addStream(readStream))
|
|
157
|
-
.pipe(
|
|
158
|
-
.on('finish',
|
|
159
|
-
|
|
160
|
-
.pipe(
|
|
161
|
-
.on('finish',
|
|
167
|
+
.pipe(createWriteStream(tmp))
|
|
168
|
+
.on('finish', () => {
|
|
169
|
+
createReadStream(tmp)
|
|
170
|
+
.pipe(createWriteStream(outfile))
|
|
171
|
+
.on('finish', () => {
|
|
162
172
|
standardChangelog.checkpoint('output changes to %s', [outfile])
|
|
163
|
-
|
|
173
|
+
rm(tmp, { recursive: true })
|
|
164
174
|
})
|
|
165
175
|
})
|
|
166
176
|
}
|
package/index.js
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
const conventionalChangelogCore = require('conventional-changelog-core')
|
|
4
4
|
const angular = require('conventional-changelog-angular')
|
|
5
5
|
const fs = require('fs')
|
|
6
|
-
const
|
|
7
|
-
const chalk = require('chalk')
|
|
6
|
+
const pc = require('picocolors')
|
|
8
7
|
const figures = require('figures')
|
|
9
8
|
const sprintf = require('sprintf-js').sprintf
|
|
10
9
|
|
|
@@ -16,7 +15,7 @@ function conventionalChangelog (options, context, gitRawCommitsOpts, parserOpts,
|
|
|
16
15
|
|
|
17
16
|
conventionalChangelog.createIfMissing = function (infile) {
|
|
18
17
|
try {
|
|
19
|
-
accessSync(infile, fs.F_OK)
|
|
18
|
+
fs.accessSync(infile, fs.F_OK)
|
|
20
19
|
} catch (err) {
|
|
21
20
|
if (err.code === 'ENOENT') {
|
|
22
21
|
conventionalChangelog.checkpoint('created %s', [infile])
|
|
@@ -26,8 +25,8 @@ conventionalChangelog.createIfMissing = function (infile) {
|
|
|
26
25
|
}
|
|
27
26
|
|
|
28
27
|
conventionalChangelog.checkpoint = function (msg, args) {
|
|
29
|
-
console.info(
|
|
30
|
-
return
|
|
28
|
+
console.info(pc.green(figures.tick) + ' ' + sprintf(msg, args.map(function (arg) {
|
|
29
|
+
return pc.bold(arg)
|
|
31
30
|
})))
|
|
32
31
|
}
|
|
33
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "standard-changelog",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Generate a changelog from git metadata with Angular commit convention",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
|
|
@@ -19,28 +19,21 @@
|
|
|
19
19
|
],
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"engines": {
|
|
22
|
-
"node": ">=
|
|
22
|
+
"node": ">=16"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"index.js",
|
|
26
|
-
"cli.
|
|
26
|
+
"cli.mjs"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"add-stream": "^1.0.0",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"rimraf": "^3.0.0",
|
|
38
|
-
"sprintf-js": "^1.1.1",
|
|
39
|
-
"tempfile": "^3.0.0"
|
|
30
|
+
"figures": "^3.2.0",
|
|
31
|
+
"meow": "^12.0.1",
|
|
32
|
+
"picocolors": "^1.0.0",
|
|
33
|
+
"sprintf-js": "^1.1.2",
|
|
34
|
+
"tempfile": "^5.0.0",
|
|
35
|
+
"conventional-changelog-core": "^6.0.0",
|
|
36
|
+
"conventional-changelog-angular": "^7.0.0"
|
|
40
37
|
},
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
},
|
|
44
|
-
"bin": "cli.js",
|
|
45
|
-
"gitHead": "cc567b98facf71315f4b1620d81ce01d155efaca"
|
|
46
|
-
}
|
|
38
|
+
"bin": "cli.mjs"
|
|
39
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,365 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [2.0.27](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.26...standard-changelog@2.0.27) (2020-11-05)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package standard-changelog
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## [2.0.26](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.25...standard-changelog@2.0.26) (2020-08-12)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package standard-changelog
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## [2.0.25](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.24...standard-changelog@2.0.25) (2020-06-20)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package standard-changelog
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
## [2.0.24](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.23...standard-changelog@2.0.24) (2020-05-08)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package standard-changelog
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## [2.0.23](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.19...standard-changelog@2.0.23) (2020-05-08)
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### Bug Fixes
|
|
42
|
-
|
|
43
|
-
* **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))
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## [2.0.19](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.18...standard-changelog@2.0.19) (2019-11-21)
|
|
50
|
-
|
|
51
|
-
**Note:** Version bump only for package standard-changelog
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## [2.0.18](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.17...standard-changelog@2.0.18) (2019-11-14)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
* add types for cli flags ([#551](https://github.com/conventional-changelog/conventional-changelog/issues/551)) ([bf1d64a](https://github.com/conventional-changelog/conventional-changelog/commit/bf1d64aeaf8f262d4b2beec02d2aebb78df7343b))
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
## [2.0.17](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.16...standard-changelog@2.0.17) (2019-11-07)
|
|
69
|
-
|
|
70
|
-
**Note:** Version bump only for package standard-changelog
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
## [2.0.16](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.15...standard-changelog@2.0.16) (2019-10-24)
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
### Bug Fixes
|
|
80
|
-
|
|
81
|
-
* **deps:** update dependency rimraf to v3 ([#514](https://github.com/conventional-changelog/conventional-changelog/issues/514)) ([c7e1706](https://github.com/conventional-changelog/conventional-changelog/commit/c7e17062a7a38a194164c47d0e88fcbe3fb6490c))
|
|
82
|
-
* **deps:** update lodash to fix security issues ([#535](https://github.com/conventional-changelog/conventional-changelog/issues/535)) ([ac43f51](https://github.com/conventional-changelog/conventional-changelog/commit/ac43f51de1f3b597c32f7f8442917a2d06199018))
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
## [2.0.14](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.13...standard-changelog@2.0.14) (2019-10-02)
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
### Bug Fixes
|
|
92
|
-
|
|
93
|
-
* **deps:** update dependency tempfile to v3 ([#459](https://github.com/conventional-changelog/conventional-changelog/issues/459)) ([c0bac28](https://github.com/conventional-changelog/conventional-changelog/commit/c0bac28))
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
## [2.0.13](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.12...standard-changelog@2.0.13) (2019-07-29)
|
|
100
|
-
|
|
101
|
-
**Note:** Version bump only for package standard-changelog
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
## [2.0.12](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.11...standard-changelog@2.0.12) (2019-05-18)
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
### Bug Fixes
|
|
111
|
-
|
|
112
|
-
* **deps:** update dependency figures to v3 ([#453](https://github.com/conventional-changelog/conventional-changelog/issues/453)) ([099b5b5](https://github.com/conventional-changelog/conventional-changelog/commit/099b5b5))
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
## [2.0.11](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.10...standard-changelog@2.0.11) (2019-05-05)
|
|
119
|
-
|
|
120
|
-
**Note:** Version bump only for package standard-changelog
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
## [2.0.10](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.9...standard-changelog@2.0.10) (2019-04-11)
|
|
127
|
-
|
|
128
|
-
**Note:** Version bump only for package standard-changelog
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
## [2.0.9](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.8...standard-changelog@2.0.9) (2019-04-11)
|
|
135
|
-
|
|
136
|
-
**Note:** Version bump only for package standard-changelog
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
## [2.0.8](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.7...standard-changelog@2.0.8) (2019-04-10)
|
|
143
|
-
|
|
144
|
-
**Note:** Version bump only for package standard-changelog
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
## [2.0.7](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.6...standard-changelog@2.0.7) (2019-02-14)
|
|
151
|
-
|
|
152
|
-
**Note:** Version bump only for package standard-changelog
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
## [2.0.6](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.5...standard-changelog@2.0.6) (2018-11-01)
|
|
159
|
-
|
|
160
|
-
**Note:** Version bump only for package standard-changelog
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
## [2.0.5](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.4...standard-changelog@2.0.5) (2018-11-01)
|
|
167
|
-
|
|
168
|
-
**Note:** Version bump only for package standard-changelog
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
## [2.0.4](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.3...standard-changelog@2.0.4) (2018-11-01)
|
|
175
|
-
|
|
176
|
-
**Note:** Version bump only for package standard-changelog
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
## [2.0.3](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.2...standard-changelog@2.0.3) (2018-11-01)
|
|
183
|
-
|
|
184
|
-
**Note:** Version bump only for package standard-changelog
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
## [2.0.2](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.1...standard-changelog@2.0.2) (2018-11-01)
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
### Bug Fixes
|
|
194
|
-
|
|
195
|
-
* 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))
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
<a name="2.0.1"></a>
|
|
202
|
-
## [2.0.1](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@2.0.0...standard-changelog@2.0.1) (2018-08-21)
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
**Note:** Version bump only for package standard-changelog
|
|
208
|
-
|
|
209
|
-
<a name="2.0.0"></a>
|
|
210
|
-
# [2.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@1.0.19...standard-changelog@2.0.0) (2018-05-29)
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
### Chores
|
|
214
|
-
|
|
215
|
-
* **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))
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
### BREAKING CHANGES
|
|
219
|
-
|
|
220
|
-
* **package:** Set the package's minimum required Node version to be the oldest LTS
|
|
221
|
-
currently supported by the Node Release working group. At this time,
|
|
222
|
-
that is Node 6 (which is in its Maintenance LTS phase).
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
<a name="1.0.19"></a>
|
|
228
|
-
## [1.0.19](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@1.0.18...standard-changelog@1.0.19) (2018-04-16)
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
**Note:** Version bump only for package standard-changelog
|
|
234
|
-
|
|
235
|
-
<a name="1.0.18"></a>
|
|
236
|
-
## [1.0.18](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@1.0.17...standard-changelog@1.0.18) (2018-03-28)
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
**Note:** Version bump only for package standard-changelog
|
|
242
|
-
|
|
243
|
-
<a name="1.0.17"></a>
|
|
244
|
-
## [1.0.17](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@1.0.16...standard-changelog@1.0.17) (2018-03-27)
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
**Note:** Version bump only for package standard-changelog
|
|
250
|
-
|
|
251
|
-
<a name="1.0.16"></a>
|
|
252
|
-
## [1.0.16](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@1.0.15...standard-changelog@1.0.16) (2018-03-27)
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
**Note:** Version bump only for package standard-changelog
|
|
258
|
-
|
|
259
|
-
<a name="1.0.15"></a>
|
|
260
|
-
## [1.0.15](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@1.0.14...standard-changelog@1.0.15) (2018-03-27)
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
**Note:** Version bump only for package standard-changelog
|
|
266
|
-
|
|
267
|
-
<a name="1.0.14"></a>
|
|
268
|
-
## [1.0.14](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@1.0.13...standard-changelog@1.0.14) (2018-03-22)
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
**Note:** Version bump only for package standard-changelog
|
|
274
|
-
|
|
275
|
-
<a name="1.0.13"></a>
|
|
276
|
-
## [1.0.13](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@1.0.12...standard-changelog@1.0.13) (2018-02-24)
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
**Note:** Version bump only for package standard-changelog
|
|
282
|
-
|
|
283
|
-
<a name="1.0.12"></a>
|
|
284
|
-
## [1.0.12](https://github.com/conventional-changelog/conventional-changelog/compare/standard-changelog@1.0.11...standard-changelog@1.0.12) (2018-02-20)
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
**Note:** Version bump only for package standard-changelog
|
|
290
|
-
|
|
291
|
-
<a name="1.0.11"></a>
|
|
292
|
-
## [1.0.11](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.10...standard-changelog@1.0.11) (2018-02-13)
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
**Note:** Version bump only for package standard-changelog
|
|
298
|
-
|
|
299
|
-
<a name="1.0.10"></a>
|
|
300
|
-
## [1.0.10](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.9...standard-changelog@1.0.10) (2018-02-13)
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
**Note:** Version bump only for package standard-changelog
|
|
306
|
-
|
|
307
|
-
<a name="1.0.9"></a>
|
|
308
|
-
## [1.0.9](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.8...standard-changelog@1.0.9) (2018-02-05)
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
**Note:** Version bump only for package standard-changelog
|
|
314
|
-
|
|
315
|
-
<a name="1.0.8"></a>
|
|
316
|
-
## [1.0.8](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.7...standard-changelog@1.0.8) (2018-01-29)
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
**Note:** Version bump only for package standard-changelog
|
|
322
|
-
|
|
323
|
-
<a name="1.0.7"></a>
|
|
324
|
-
## [1.0.7](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.6...standard-changelog@1.0.7) (2017-12-18)
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
**Note:** Version bump only for package standard-changelog
|
|
330
|
-
|
|
331
|
-
<a name="1.0.6"></a>
|
|
332
|
-
## [1.0.6](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.5...standard-changelog@1.0.6) (2017-12-08)
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
**Note:** Version bump only for package standard-changelog
|
|
338
|
-
|
|
339
|
-
<a name="1.0.5"></a>
|
|
340
|
-
## [1.0.5](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.4...standard-changelog@1.0.5) (2017-11-13)
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
**Note:** Version bump only for package standard-changelog
|
|
346
|
-
|
|
347
|
-
<a name="1.0.4"></a>
|
|
348
|
-
## [1.0.4](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.3...standard-changelog@1.0.4) (2017-10-01)
|
|
349
|
-
|
|
350
|
-
<a name="1.0.3"></a>
|
|
351
|
-
## [1.0.3](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.2...standard-changelog@1.0.3) (2017-09-01)
|
|
352
|
-
|
|
353
|
-
<a name="1.0.2"></a>
|
|
354
|
-
## [1.0.2](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.1...standard-changelog@1.0.2) (2017-07-17)
|
|
355
|
-
|
|
356
|
-
<a name="1.0.1"></a>
|
|
357
|
-
## [1.0.1](https://github.com/stevemao/standard-changelog/compare/standard-changelog@1.0.0...standard-changelog@1.0.1) (2017-03-11)
|
|
358
|
-
|
|
359
|
-
<a name="0.0.1"></a>
|
|
360
|
-
## 0.0.1 (2016-01-30)
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
### Features
|
|
364
|
-
|
|
365
|
-
* init ([df41edb](https://github.com/stevemao/standard-changelog/commit/df41edb)), closes [ajoslin/conventional-changelog#84](https://github.com/ajoslin/conventional-changelog/issues/84)
|