@taiga-ui/auto-changelog-config 0.203.1 → 0.205.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/index.json +1 -1
- package/package.json +1 -1
- package/templates/changelog.hbs +8 -5
- package/templates/note.hbs +4 -0
package/index.json
CHANGED
package/package.json
CHANGED
package/templates/changelog.hbs
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
{{! prettier-ignore }}
|
|
3
|
-
All notable changes to this project will be documented in this file. See
|
|
4
|
-
|
|
3
|
+
All notable changes to this project will be documented in this file. See [`conventional
|
|
4
|
+
commits`](https://www.conventionalcommits.org/) guidelines.
|
|
5
5
|
|
|
6
|
-
{{! prettier-ignore }}
|
|
7
6
|
{{#each releases}}
|
|
8
|
-
|
|
7
|
+
{{#if tag}}
|
|
9
8
|
##{{#unless major}}#{{/unless}} [{{#replaceTitle}}{{title}}{{/replaceTitle}}]({{href}}) ({{isoDate}})
|
|
10
|
-
|
|
9
|
+
{{/if}}
|
|
11
10
|
|
|
12
11
|
{{#if summary}}
|
|
13
12
|
{{summary}}
|
|
@@ -27,6 +26,10 @@ All notable changes to this project will be documented in this file. See
|
|
|
27
26
|
- {{#replaceCommit}}{{subject}}{{/replaceCommit}} [({{shorthash}})]({{href}})
|
|
28
27
|
{{/commit-list}}
|
|
29
28
|
|
|
29
|
+
{{#commit-list this heading='### ⚠️ Deprecations' message='^deprecate:|^deprecate\(' exclude='[bB]reaking [cC]hange:|[bB]reaking:'}}
|
|
30
|
+
- {{#replaceCommit}}{{subject}}{{/replaceCommit}} [({{shorthash}})]({{href}})
|
|
31
|
+
{{/commit-list}}
|
|
32
|
+
|
|
30
33
|
{{/commit-parser}}
|
|
31
34
|
|
|
32
35
|
{{/each}}
|
package/templates/note.hbs
CHANGED
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
- {{#replaceCommit}}{{subject}}{{/replaceCommit}} [({{shorthash}})]({{href}})
|
|
23
23
|
{{/commit-list}}
|
|
24
24
|
|
|
25
|
+
{{#commit-list this heading='### ⚠️ Deprecations' message='^deprecate:|^deprecate\(' exclude='[bB]reaking [cC]hange:|[bB]reaking:'}}
|
|
26
|
+
- {{#replaceCommit}}{{subject}}{{/replaceCommit}} [({{shorthash}})]({{href}})
|
|
27
|
+
{{/commit-list}}
|
|
28
|
+
|
|
25
29
|
{{/commit-parser}}
|
|
26
30
|
|
|
27
31
|
{{/each}}
|