conventional-changelog-writer 3.0.9 → 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/CHANGELOG.md +40 -2
- package/README.md +0 -2
- package/package.json +5 -2
- package/templates/header.hbs +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,45 @@
|
|
|
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
|
-
|
|
6
|
+
<a name="4.0.0"></a>
|
|
7
|
+
# [4.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-writer@3.0.9...conventional-changelog-writer@4.0.0) (2018-05-29)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Chores
|
|
11
|
+
|
|
12
|
+
* **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))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Code Refactoring
|
|
16
|
+
|
|
17
|
+
* remove anchor from header templates ([#301](https://github.com/conventional-changelog/conventional-changelog/issues/301)) ([346f24f](https://github.com/conventional-changelog/conventional-changelog/commit/346f24f)), closes [#186](https://github.com/conventional-changelog/conventional-changelog/issues/186)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### BREAKING CHANGES
|
|
21
|
+
|
|
22
|
+
* **package:** Set the package's minimum required Node version to be the oldest LTS
|
|
23
|
+
currently supported by the Node Release working group. At this time,
|
|
24
|
+
that is Node 6 (which is in its Maintenance LTS phase).
|
|
25
|
+
* Anchor tags are removed from the changelog header templates. The
|
|
26
|
+
rendered Markdown will no longer contain anchor tags proceeding the
|
|
27
|
+
version number header that constitutes the changelog header. This means
|
|
28
|
+
that consumers of rendered markdown will not be able to use a URL that
|
|
29
|
+
has been constructed to contain a version number anchor tag reference,
|
|
30
|
+
since the anchor tag won't exist in the rendered markdown.
|
|
31
|
+
|
|
32
|
+
It's stronly recomended consumers use the full URL path to the release
|
|
33
|
+
page for a given version, as that URL is a permalink to that verison,
|
|
34
|
+
contains all relavent release information, and does not, otherwise, rely
|
|
35
|
+
on the anchor tag being excessible from the current page view.
|
|
36
|
+
|
|
37
|
+
As an example, for version `2.0.0` of a GitHub project, the following
|
|
38
|
+
URL should be used:
|
|
39
|
+
- https://github.com/conventional-changelog/releaser-tools/releases/tag/v2.0.0
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
<a name="3.0.9"></a>
|
|
7
45
|
## [3.0.9](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-writer@3.0.8...conventional-changelog-writer@3.0.9) (2018-03-28)
|
|
8
46
|
|
|
9
47
|
|
|
@@ -14,7 +52,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
14
52
|
|
|
15
53
|
|
|
16
54
|
|
|
17
|
-
|
|
55
|
+
<a name="3.0.8"></a>
|
|
18
56
|
## [3.0.8](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-writer@3.0.7...conventional-changelog-writer@3.0.8) (2018-03-27)
|
|
19
57
|
|
|
20
58
|
|
package/README.md
CHANGED
|
@@ -48,7 +48,6 @@ Each chunk should be a commit. Json object is also **valid**. Parts of the objec
|
|
|
48
48
|
The downstream might look something like this:
|
|
49
49
|
|
|
50
50
|
```js
|
|
51
|
-
<a name="0.0.1"></a>
|
|
52
51
|
## 0.0.1 "this is a title" (2015-05-29)
|
|
53
52
|
|
|
54
53
|
|
|
@@ -341,7 +340,6 @@ $ conventional-changelog-writer commits.ldjson -o options.js
|
|
|
341
340
|
The output might look something like this
|
|
342
341
|
|
|
343
342
|
```md
|
|
344
|
-
<a name="1.0.0"></a>
|
|
345
343
|
# 1.0.0 (2015-04-09)
|
|
346
344
|
|
|
347
345
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conventional-changelog-writer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Write logs based on conventional commits and templates",
|
|
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",
|
|
@@ -34,7 +37,7 @@
|
|
|
34
37
|
],
|
|
35
38
|
"dependencies": {
|
|
36
39
|
"compare-func": "^1.3.1",
|
|
37
|
-
"conventional-commits-filter": "^
|
|
40
|
+
"conventional-commits-filter": "^2.0.0",
|
|
38
41
|
"dateformat": "^3.0.0",
|
|
39
42
|
"handlebars": "^4.0.2",
|
|
40
43
|
"json-stringify-safe": "^5.0.1",
|
package/templates/header.hbs
CHANGED