chore(release): v3.9.4

releases/v3 v3.9.4
Conventional Changelog Action 2021-10-05 21:43:56 +00:00
parent efa2b14934
commit 9aae8fe9ef
11 changed files with 139 additions and 26 deletions

View File

@ -1,3 +1,12 @@
## [3.9.4](https://github.com/TriPSs/conventional-changelog-action/compare/v3.9.3...v3.9.4) (2021-10-05)
### Bug Fixes
* Make sure the angular preset is loaded ([2b646ec](https://github.com/TriPSs/conventional-changelog-action/commit/2b646ec8807a2e493c68cab23071c47d385acbd6))
## [3.9.3](https://github.com/TriPSs/conventional-changelog-action/compare/v3.9.2...v3.9.3) (2021-10-05) ## [3.9.3](https://github.com/TriPSs/conventional-changelog-action/compare/v3.9.2...v3.9.3) (2021-10-05)
@ -34,12 +43,3 @@
# [3.8.0](https://github.com/TriPSs/conventional-changelog-action/compare/v3.7.1...v3.8.0) (2021-09-29)
### Features
* use same permissions used at repo checkout ([c82c3a1](https://github.com/TriPSs/conventional-changelog-action/commit/c82c3a1b1de521412af47239e9d46a2c49e7c8c7)), closes [#115](https://github.com/TriPSs/conventional-changelog-action/issues/115)

View File

@ -1,7 +1,12 @@
* {{header}} *{{#if scope}} **{{scope}}:**
{{~/if}} {{#if subject}}
{{~subject}}
{{~else}}
{{~header}}
{{~/if}}
{{~!-- commit link --}} {{#if @root.linkReferences~}} {{~!-- commit link --}} {{#if @root.linkReferences~}}
([{{hash}}]( ([{{shortHash}}](
{{~#if @root.repository}} {{~#if @root.repository}}
{{~#if @root.host}} {{~#if @root.host}}
{{~@root.host}}/ {{~@root.host}}/
@ -15,7 +20,7 @@
{{~/if}}/ {{~/if}}/
{{~@root.commit}}/{{hash}})) {{~@root.commit}}/{{hash}}))
{{~else}} {{~else}}
{{~hash}} {{~shortHash}}
{{~/if}} {{~/if}}
{{~!-- commit references --}} {{~!-- commit references --}}

56
lib/commit1.hbs 100644
View File

@ -0,0 +1,56 @@
* {{header}}
{{~!-- commit link --}} {{#if @root.linkReferences~}}
([{{hash}}](
{{~#if @root.repository}}
{{~#if @root.host}}
{{~@root.host}}/
{{~/if}}
{{~#if @root.owner}}
{{~@root.owner}}/
{{~/if}}
{{~@root.repository}}
{{~else}}
{{~@root.repoUrl}}
{{~/if}}/
{{~@root.commit}}/{{hash}}))
{{~else}}
{{~hash}}
{{~/if}}
{{~!-- commit references --}}
{{~#if references~}}
, closes
{{~#each references}} {{#if @root.linkReferences~}}
[
{{~#if this.owner}}
{{~this.owner}}/
{{~/if}}
{{~this.repository}}#{{this.issue}}](
{{~#if @root.repository}}
{{~#if @root.host}}
{{~@root.host}}/
{{~/if}}
{{~#if this.repository}}
{{~#if this.owner}}
{{~this.owner}}/
{{~/if}}
{{~this.repository}}
{{~else}}
{{~#if @root.owner}}
{{~@root.owner}}/
{{~/if}}
{{~@root.repository}}
{{~/if}}
{{~else}}
{{~@root.repoUrl}}
{{~/if}}/
{{~@root.issue}}/{{this.issue}})
{{~else}}
{{~#if this.owner}}
{{~this.owner}}/
{{~/if}}
{{~this.repository}}#{{this.issue}}
{{~/if}}{{/each}}
{{~/if}}

View File

@ -4,7 +4,8 @@
### {{title}} ### {{title}}
{{#each notes}} {{#each notes}}
* {{text}} * {{#if commit.scope}}**{{commit.scope}}:** {{/if}}{{text}}
{{/each}} {{/each}}
{{/each}} {{/each}}
{{/if}} {{/if}}

10
lib/footer1.hbs 100644
View File

@ -0,0 +1,10 @@
{{#if noteGroups}}
{{#each noteGroups}}
### {{title}}
{{#each notes}}
* {{text}}
{{/each}}
{{/each}}
{{/if}}

View File

@ -1,9 +1,25 @@
## {{#if isPatch~}} <small> {{#if isPatch~}}
{{~/if~}} {{version}} ##
{{~#if title}} "{{title}}" {{~else~}}
#
{{~/if}} {{#if @root.linkCompare~}}
[{{version}}](
{{~#if @root.repository~}}
{{~#if @root.host}}
{{~@root.host}}/
{{~/if}}
{{~#if @root.owner}}
{{~@root.owner}}/
{{~/if}}
{{~@root.repository}}
{{~else}}
{{~@root.repoUrl}}
{{~/if~}} {{~/if~}}
{{~#if date}} ({{date}}) /compare/{{previousTag}}...{{currentTag}})
{{~/if~}} {{~else}}
{{~#if isPatch~}} </small> {{~version}}
{{~/if}} {{~/if}}
{{~#if title}} "{{title}}"
{{~/if}}
{{~#if date}} ({{date}})
{{/if}}

9
lib/header1.hbs 100644
View File

@ -0,0 +1,9 @@
## {{#if isPatch~}} <small>
{{~/if~}} {{version}}
{{~#if title}} "{{title}}"
{{~/if~}}
{{~#if date}} ({{date}})
{{~/if~}}
{{~#if isPatch~}} </small>
{{~/if}}

File diff suppressed because one or more lines are too long

View File

@ -1,11 +1,16 @@
{{> header}} {{> header}}
{{#each commitGroups}} {{#each commitGroups}}
{{#if title}}
### {{title}}
{{/if}}
{{#each commits}} {{#each commits}}
{{> commit root=@root}} {{> commit root=@root}}
{{/each}} {{/each}}
{{/each}}
{{/each}}
{{> footer}} {{> footer}}

11
lib/template1.hbs 100644
View File

@ -0,0 +1,11 @@
{{> header}}
{{#each commitGroups}}
{{#each commits}}
{{> commit root=@root}}
{{/each}}
{{/each}}
{{> footer}}

View File

@ -1,6 +1,6 @@
{ {
"name": "conventional-changelog-action", "name": "conventional-changelog-action",
"version": "3.9.3", "version": "3.9.4",
"description": "Github Action that generates a changelog with the Conventional Changelog CLI", "description": "Github Action that generates a changelog with the Conventional Changelog CLI",
"keywords": [ "keywords": [
"actions", "actions",
@ -46,4 +46,4 @@
"@vercel/ncc": "^0.31.1", "@vercel/ncc": "^0.31.1",
"husky": "4.3.6" "husky": "4.3.6"
} }
} }