-
Notifications
You must be signed in to change notification settings - Fork 12
/
.releaserc.cjs
161 lines (153 loc) · 4.9 KB
/
.releaserc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
/*
First run `make setup_semantic_release` to install the required dependencies.
Using this config semantic-release will search for the latest tag
evaluate all commits after that tag
generate release notes and a version bump.
It will commit these changes, push these changes, and publish a new version tag.
This file requires a `--branches` option to function.
This is to facilitate point releases if needed.
`npx semantic-release --branches main`
*/
// This project has several runtimes
// each one has files that need to be updated.
// We model all the files and the runtimes here in this structure
const Runtimes = {
java: {
"project.properties": {
dependencies: [],
},
},
net: {
"DynamoDbEncryption/runtimes/net/DynamoDbEncryption.csproj": {
dependencies: [],
assemblyInfo: "DynamoDbEncryption/runtimes/net/AssemblyInfo.cs",
},
},
};
/**
* @type {import('semantic-release').GlobalConfig}
*/
module.exports = {
branches: ["main"],
repositoryUrl: "[email protected]:aws/aws-database-encryption-sdk-dynamodb.git",
plugins: [
// Check the commits since the last release
[
"@semantic-release/commit-analyzer",
{
preset: "conventionalcommits",
parserOpts: {
noteKeywords: ["BREAKING CHANGE", "BREAKING CHANGES"],
},
presetConfig: {
types: [
{ type: "feat", section: "Features" },
{ type: "fix", section: "Fixes" },
{ type: "chore", section: "Maintenance" },
{ type: "docs", section: "Maintenance" },
{ type: "revert", section: "Fixes" },
{ type: "style", hidden: true },
{ type: "refactor", hidden: true },
{ type: "perf", hidden: true },
{ type: "test", hidden: true },
],
},
releaseRules: [
{ type: "docs", release: "patch" },
{ type: "revert", release: "patch" },
{ type: "chore", release: "patch" },
],
},
],
// Based on the commits generate release notes
[
"@semantic-release/release-notes-generator",
{
preset: "conventionalcommits",
parserOpts: {
noteKeywords: ["BREAKING CHANGE", "BREAKING CHANGES"],
},
presetConfig: {
types: [
{ type: "feat", section: "Features" },
{ type: "fix", section: "Fixes" },
{ type: "chore", section: "Maintenance" },
{ type: "docs", section: "Maintenance" },
{ type: "revert", section: "Fixes" },
{ type: "style", hidden: true },
{ type: "refactor", hidden: true },
{ type: "perf", hidden: true },
{ type: "test", hidden: true },
],
},
},
],
// Update the change log with the generated release notes
[
"@semantic-release/changelog",
{
changelogFile: "CHANGELOG.md",
changelogTitle: "# Changelog",
},
],
// Bump the various versions
[
"semantic-release-replace-plugin",
{
replacements: [
// Update the version for all Gradle Java projects
// Does not update the dependencies
{
files: Object.keys(Runtimes.java),
from: "projectJavaVersion=.*",
to: "projectJavaVersion=${nextRelease.version}",
results: Object.keys(Runtimes.java).map(CheckResults),
countMatches: true,
},
// Update the version for all DotNet projects
// Does not update the dependencies
{
files: Object.keys(Runtimes.net),
from: "<Version>.*</Version>",
to: "<Version>${nextRelease.version}</Version>",
results: Object.keys(Runtimes.net).map(CheckResults),
countMatches: true,
},
// Update the AssmeblyInfo.cs file of the DotNet projects
...Object.entries(Runtimes.net).flatMap(
([file, { assemblyInfo }]) => ({
files: assemblyInfo,
from: "assembly: AssemblyVersion(.*)",
to: 'assembly: AssemblyVersion("${nextRelease.version}")]',
results: [CheckResults(assemblyInfo)],
countMatches: true,
}),
),
],
},
],
// Commit and push changes the changelog and versions bumps
[
"@semantic-release/git",
{
assets: [
"CHANGELOG.md",
...Object.values(Runtimes).flatMap((r) => Object.keys(r)),
...Object.values(Runtimes.net).flatMap((r) => r.assemblyInfo),
],
message:
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
},
],
],
};
function CheckResults(file) {
return {
file,
hasChanged: true,
numMatches: 1,
numReplacements: 1,
};
}