angular-docs-cn/dev-infra/release/publish/release-notes/templates/changelog.ejs

78 lines
1.3 KiB
Plaintext

<a name="<%- version %>"></a>
# <%- version %><% if (title) { %> "<%- title %>"<% } %> (<%- dateStamp %>)
<%_
const commitsInChangelog = commits.filter(includeInReleaseNotes());
for (const group of asCommitGroups(commitsInChangelog)) {
_%>
### <%- group.title %>
| Commit | Description |
| -- | -- |
<%_
for (const commit of group.commits) {
_%>
| <%- commit.shortHash %> | <%- commit.header %> |
<%_
}
}
_%>
<%_
const breakingChanges = commits.filter(contains('breakingChanges'));
if (breakingChanges.length) {
_%>
## Breaking Changes
<%_
for (const group of asCommitGroups(breakingChanges)) {
_%>
### <%- group.title %>
<%_
for (const commit of group.commits) {
_%>
<%- commit.breakingChanges[0].text %>
<%_
}
}
}
_%>
<%_
const deprecations = commits.filter(contains('deprecations'));
if (deprecations.length) {
_%>
## Deprecations
<%_
for (const group of asCommitGroups(deprecations)) {
_%>
### <%- group.title %>
<%_
for (const commit of group.commits) {
_%>
<%- commit.deprecations[0].text %>
<%_
}
}
}
_%>
<%_
const authors = commits.filter(unique('author')).map(c => c.author).sort();
if (authors.length === 1) {
_%>
## Special Thanks:
<%- authors[0]%>
<%_
}
if (authors.length > 1) {
_%>
## Special Thanks:
<%- authors.slice(0, -1).join(', ') %> and <%- authors.slice(-1)[0] %>
<%_
}
_%>