-
Notifications
You must be signed in to change notification settings - Fork 11
/
.releaserc.cjs
250 lines (237 loc) · 7.62 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
// 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: {
"AwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts": {
dependencies: [],
},
"TestVectorsAwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts":
{
dependencies: [],
},
},
net: {
"AwsCryptographicMaterialProviders/runtimes/net/MPL.csproj": {
dependencies: [],
assemblyInfo:
"AwsCryptographicMaterialProviders/runtimes/net/AssemblyInfo.cs",
},
"ComAmazonawsKms/runtimes/net/AWS-KMS.csproj": {
dependencies: [],
assemblyInfo: "ComAmazonawsKms/runtimes/net/AssemblyInfo.cs",
},
"ComAmazonawsDynamodb/runtimes/net/ComAmazonawsDynamodb.csproj": {
dependencies: [],
assemblyInfo: "ComAmazonawsDynamodb/runtimes/net/AssemblyInfo.cs",
},
"AwsCryptographyPrimitives/runtimes/net/Crypto.csproj": {
dependencies: [],
assemblyInfo: "AwsCryptographyPrimitives/runtimes/net/AssemblyInfo.cs",
},
"StandardLibrary/runtimes/net/STD.csproj": {
dependencies: [],
assemblyInfo: "StandardLibrary/runtimes/net/AssemblyInfo.cs",
},
},
// Any change to the size of the `dependencies` list
// must be accounted for in `CheckDependencyReplacementResults`.
python: {
"AwsCryptographicMaterialProviders/runtimes/python/pyproject.toml": {
dependencies: [
"AwsCryptographyPrimitives",
"ComAmazonawsKms",
"ComAmazonawsDynamodb",
"StandardLibrary",
],
},
"AwsCryptographyPrimitives/runtimes/python/pyproject.toml": {
dependencies: ["StandardLibrary"],
},
"ComAmazonawsKms/runtimes/python/pyproject.toml": {
dependencies: ["StandardLibrary"],
},
"ComAmazonawsDynamodb/runtimes/python/pyproject.toml": {
dependencies: ["StandardLibrary"],
},
"StandardLibrary/runtimes/python/pyproject.toml": {
dependencies: [],
},
},
};
/**
* @type {import('semantic-release').GlobalConfig}
*/
module.exports = {
branches: ["main"],
repositoryUrl:
"[email protected]:aws/aws-cryptographic-material-providers-library.git",
plugins: [
// Check the commits since the last release
"@semantic-release/commit-analyzer",
// Based on the commits generate release notes
"@semantic-release/release-notes-generator",
// 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: 'version = ".*"',
to: 'version = "${nextRelease.version}"',
results: Object.keys(Runtimes.java).map(CheckResults),
countMatches: true,
},
// Now update the Gradle Java dependencies
...Object.entries(Runtimes.java).flatMap(([file, { dependencies }]) =>
dependencies.map((dependency) => ({
files: [file],
from: `implementation("${dependency}:.*")`,
to:
`implementation("${dependency}:` + '${nextRelease.version}" />',
results: [CheckResults(file)],
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,
}),
),
// Update the version in pyproject.toml for all Python projects
// Does not update the dependencies
{
files: Object.keys(Runtimes.python),
from: 'version = ".*"',
to: 'version = "${nextRelease.version}"',
results: Object.keys(Runtimes.python).map(CheckResults),
countMatches: true,
},
// Now update the local filesystem dependencies to PyPI dependencies
// pinned to the minor MPL version
{
files: Object.keys(Runtimes.python),
from: "{path =.*",
to: '"${nextRelease.version}"',
results: Object.keys(Runtimes.python).map(
CheckDependencyReplacementResults,
),
countMatches: true,
},
],
},
],
[
// Re-transpile Python code to update .dtr files as part of the release commit
"@semantic-release/exec",
{
prepareCmd:
"make -C TestVectorsAwsCryptographicMaterialProviders transpile_python",
},
],
// 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),
"**/runtimes/python/**/*.dtr",
],
message:
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
},
],
],
};
function CheckResults(file) {
return {
file,
hasChanged: true,
numMatches: 1,
numReplacements: 1,
};
}
// For dependency replacement.
// If the runtime defines dependencies,
// assert the expected number of dependencies were replaced.
function CheckDependencyReplacementResults(file) {
if (file.includes("AwsCryptographicMaterialProviders")) {
return {
file,
hasChanged: true,
numMatches: 4,
numReplacements: 4,
};
} else if (file.includes("StandardLibrary")) {
return {
file,
hasChanged: false,
numMatches: 0,
numReplacements: 0,
};
} else if (file.includes("AwsCryptographyPrimitives")) {
return {
file,
hasChanged: true,
numMatches: 1,
numReplacements: 1,
};
} else if (file.includes("ComAmazonawsKms")) {
return {
file,
hasChanged: true,
numMatches: 1,
numReplacements: 1,
};
} else if (file.includes("ComAmazonawsDynamodb")) {
return {
file,
hasChanged: true,
numMatches: 1,
numReplacements: 1,
};
} else {
throw new Error(
`No known dependency replacement result specification for file ${file}`,
);
}
}