-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.releaserc.cjs
456 lines (441 loc) · 13 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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
// 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: {
"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",
{
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", section: "Miscellaneous" },
{ type: "refactor", section: "Miscellaneous" },
{ type: "perf", section: "Miscellaneous" },
{ type: "test", section: "Miscellaneous" },
],
},
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",
presetConfig: {
types: [
{
type: "feat",
scope: "dafny",
section: "Features -- All Languages",
hidden: false,
},
{
type: "feat",
scope: "java",
section: "Features -- Java",
hidden: false,
},
{
type: "feat",
scope: "dotnet",
section: "Features -- DotNet",
hidden: false,
},
{
type: "feat",
scope: "python",
section: "Features -- Python",
hidden: false,
},
{
type: "feat",
scope: "go",
section: "Features -- Go",
hidden: false,
},
{
type: "feat",
scope: "rust",
section: "Features -- Rust",
hidden: false,
},
{
type: "fix",
scope: "dafny",
section: "Fixes -- All Languages",
hidden: false,
},
{
type: "fix",
scope: "java",
section: "Fixes -- Java",
hidden: false,
},
{
type: "fix",
scope: "dotnet",
section: "Fixes -- DotNet",
hidden: false,
},
{
type: "fix",
scope: "python",
section: "Fixes -- Python",
hidden: false,
},
{ type: "fix", scope: "go", section: "Fixes -- Go", hidden: false },
{
type: "fix",
scope: "rust",
section: "Fixes -- Rust",
hidden: false,
},
{
type: "chore",
scope: "dafny",
section: "Maintenance -- All Languages",
hidden: false,
},
{
type: "chore",
scope: "java",
section: "Maintenance -- Java",
hidden: false,
},
{
type: "chore",
scope: "dotnet",
section: "Maintenance -- DotNet",
hidden: false,
},
{
type: "chore",
scope: "python",
section: "Maintenance -- Python",
hidden: false,
},
{
type: "chore",
scope: "go",
section: "Maintenance -- Go",
hidden: false,
},
{
type: "chore",
scope: "rust",
section: "Maintenance -- Rust",
hidden: false,
},
{
type: "chore",
section: "Miscellaneous",
hidden: false,
},
{
type: "docs",
scope: "dafny",
section: "Maintenance -- All Languages",
hidden: false,
},
{
type: "docs",
scope: "java",
section: "Maintenance -- Java",
hidden: false,
},
{
type: "docs",
scope: "dotnet",
section: "Maintenance -- DotNet",
hidden: false,
},
{
type: "docs",
scope: "python",
section: "Maintenance -- Python",
hidden: false,
},
{
type: "docs",
scope: "go",
section: "Maintenance -- Go",
hidden: false,
},
{
type: "docs",
scope: "rust",
section: "Maintenance -- Rust",
hidden: false,
},
{
type: "revert",
scope: "dafny",
section: "Fixes -- All Languages",
hidden: false,
},
{
type: "revert",
scope: "java",
section: "Fixes -- Java",
hidden: false,
},
{
type: "revert",
scope: "dotnet",
section: "Fixes -- DotNet",
hidden: false,
},
{
type: "revert",
scope: "python",
section: "Fixes -- Python",
hidden: false,
},
{
type: "revert",
scope: "go",
section: "Fixes -- Go",
hidden: false,
},
{
type: "revert",
scope: "rust",
section: "Fixes -- Rust",
hidden: false,
},
{ type: "style", section: "Miscellaneous", hidden: false },
{ type: "refactor", section: "Miscellaneous", hidden: false },
{ type: "perf", section: "Miscellaneous", hidden: false },
{ type: "test", section: "Miscellaneous", hidden: false },
],
},
},
],
// 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: "mplVersion=.*",
to: "mplVersion=${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,
}),
),
// 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: ${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}`,
);
}
}