forked from semantic-release/semantic-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
357 lines (310 loc) · 13.2 KB
/
index.js
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
import { createRequire } from "node:module";
import { pick } from "lodash-es";
import * as marked from "marked";
import envCi from "env-ci";
import { hookStd } from "hook-std";
import semver from "semver";
import AggregateError from "aggregate-error";
import hideSensitive from "./lib/hide-sensitive.js";
import getConfig from "./lib/get-config.js";
import verify from "./lib/verify.js";
import getNextVersion from "./lib/get-next-version.js";
import getCommits from "./lib/get-commits.js";
import getLastRelease from "./lib/get-last-release.js";
import getReleaseToAdd from "./lib/get-release-to-add.js";
import { extractErrors, makeTag, getFilesToCommit } from "./lib/utils.js";
import getGitAuthUrl from "./lib/get-git-auth-url.js";
import getBranches from "./lib/branches/index.js";
import getLogger from "./lib/get-logger.js";
import { addNote, branchExists, checkout, createBranch, forceUpdateBranch, getGitHead, getTagHead, isBranchUpToDate, push, pushBranch, pushNotes, tag, verifyAuth } from "./lib/git.js";
import { execa } from "execa";
import getError from "./lib/get-error.js";
import { COMMIT_EMAIL, COMMIT_NAME } from "./lib/definitions/constants.js";
const require = createRequire(import.meta.url);
const pkg = require("./package.json");
let markedOptionsSet = false;
async function terminalOutput(text) {
if (!markedOptionsSet) {
const { default: TerminalRenderer } = await import("marked-terminal"); // eslint-disable-line node/no-unsupported-features/es-syntax
marked.setOptions({ renderer: new TerminalRenderer() });
markedOptionsSet = true;
}
return marked.parse(text);
}
/* eslint complexity: off */
async function run(context, plugins) {
const { cwd, env, options, logger, envCi } = context;
const { isCi, branch, prBranch, isPr } = envCi;
const ciBranch = isPr ? prBranch : branch;
if (options.getChangelog) {
// When getting changelog, run in dry-run mode
options.dryRun = true;
options.skipGitPush = true;
} else if (!isCi && !options.dryRun && !options.noCi) {
logger.warn("This run was not triggered in a known CI environment, running in dry-run mode.");
options.dryRun = true;
} else {
// When running on CI, set the commits author and committer info and prevent the `git` CLI to prompt for username/password. See #703.
Object.assign(env, {
GIT_AUTHOR_NAME: COMMIT_NAME,
GIT_AUTHOR_EMAIL: COMMIT_EMAIL,
GIT_COMMITTER_NAME: COMMIT_NAME,
GIT_COMMITTER_EMAIL: COMMIT_EMAIL,
...env,
GIT_ASKPASS: "echo",
GIT_TERMINAL_PROMPT: 0,
});
}
if (isCi && isPr && !options.noCi) {
logger.log("This run was triggered by a pull request and therefore a new version won't be published.");
return false;
}
// Verify config
await verify(context);
options.repositoryUrl = await getGitAuthUrl({ ...context, branch: { name: ciBranch } });
context.branches = await getBranches(options.repositoryUrl, ciBranch, context);
context.branch = context.branches.find(({ name }) => name === ciBranch);
if (!context.branch) {
logger.log(
`This test run was triggered on the branch ${ciBranch}, while semantic-release is configured to only publish from ${context.branches
.map(({ name }) => name)
.join(", ")}, therefore a new version won't be published.`
);
return false;
}
logger[options.dryRun ? "warn" : "success"](
`Run automated release from branch ${ciBranch} on repository ${options.originalRepositoryURL}${
options.dryRun ? " in dry-run mode" : ""
}`
);
try {
try {
await verifyAuth(options.repositoryUrl, context.branch.name, { cwd, env });
} catch (error) {
if (!(await isBranchUpToDate(options.repositoryUrl, context.branch.name, { cwd, env }))) {
logger.log(
`The local branch ${context.branch.name} is behind the remote one, therefore a new version won't be published.`
);
return false;
}
throw error;
}
} catch (error) {
logger.error(`The command "${error.command}" failed with the error message ${error.stderr}.`);
throw getError("EGITNOPERMISSION", context);
}
logger.success(`Allowed to push to the Git repository`);
await plugins.verifyConditions(context);
const errors = [];
context.releases = [];
const releaseToAdd = getReleaseToAdd(context);
if (releaseToAdd) {
const { lastRelease, currentRelease, nextRelease } = releaseToAdd;
nextRelease.gitHead = await getTagHead(nextRelease.gitHead, { cwd, env });
currentRelease.gitHead = await getTagHead(currentRelease.gitHead, { cwd, env });
if (context.branch.mergeRange && !semver.satisfies(nextRelease.version, context.branch.mergeRange)) {
errors.push(getError("EINVALIDMAINTENANCEMERGE", { ...context, nextRelease }));
} else {
const commits = await getCommits({ ...context, lastRelease, nextRelease });
nextRelease.notes = await plugins.generateNotes({ ...context, commits, lastRelease, nextRelease });
if (options.dryRun) {
logger.warn(`Skip ${nextRelease.gitTag} tag creation in dry-run mode`);
} else if (options.skipGitPush) {
logger.log("Skipping git tag push due to --skip-git-push flag");
logger.success(`Ready to add ${nextRelease.channel ? `channel ${nextRelease.channel}` : "default channel"} to tag ${nextRelease.gitTag}`);
} else {
await addNote({ channels: [...currentRelease.channels, nextRelease.channel] }, nextRelease.gitTag, {
cwd,
env,
});
await push(options.repositoryUrl, { cwd, env }, { skipGitPush: options.skipGitPush });
await pushNotes(options.repositoryUrl, nextRelease.gitTag, {
cwd,
env,
}, { skipGitPush: options.skipGitPush });
logger.success(
`Add ${nextRelease.channel ? `channel ${nextRelease.channel}` : "default channel"} to tag ${
nextRelease.gitTag
}`
);
}
context.branch.tags.push({
version: nextRelease.version,
channel: nextRelease.channel,
gitTag: nextRelease.gitTag,
gitHead: nextRelease.gitHead,
});
const releases = await plugins.addChannel({ ...context, commits, lastRelease, currentRelease, nextRelease });
context.releases.push(...releases);
await plugins.success({ ...context, lastRelease, commits, nextRelease, releases });
}
}
if (errors.length > 0) {
throw new AggregateError(errors);
}
context.lastRelease = getLastRelease(context);
if (context.lastRelease.gitHead) {
context.lastRelease.gitHead = await getTagHead(context.lastRelease.gitHead, { cwd, env });
}
if (context.lastRelease.gitTag) {
logger.log(
`Found git tag ${context.lastRelease.gitTag} associated with version ${context.lastRelease.version} on branch ${context.branch.name}`
);
} else {
logger.log(`No git tag version found on branch ${context.branch.name}`);
}
context.commits = await getCommits(context);
const nextRelease = {
type: await plugins.analyzeCommits(context),
channel: context.branch.channel || null,
gitHead: await getGitHead({ cwd, env }),
};
if (!nextRelease.type) {
logger.log("There are no relevant changes, so no new version is released.");
return context.releases.length > 0 ? { releases: context.releases } : false;
}
context.nextRelease = nextRelease;
nextRelease.version = getNextVersion(context);
nextRelease.gitTag = makeTag(options.tagFormat, nextRelease.version);
nextRelease.name = nextRelease.gitTag;
if (context.branch.type !== "prerelease" && !semver.satisfies(nextRelease.version, context.branch.range)) {
throw getError("EINVALIDNEXTVERSION", {
...context,
validBranches: context.branches.filter(
({ type, accept }) => type !== "prerelease" && accept.includes(nextRelease.type)
),
});
}
await plugins.verifyRelease(context);
// Generate changelog content while on main branch
nextRelease.notes = await plugins.generateNotes(context);
const releaseBranchName = `release-please--branches--${ciBranch}`;
let exists = false;
try {
exists = await branchExists(releaseBranchName, { cwd, env });
} catch (error) {
logger.log(`Error checking branch existence: ${error.message}`);
}
if (options.dryRun) {
logger.warn(`Skip ${nextRelease.gitTag} tag creation in dry-run mode`);
} else {
// Store current branch to return to it later
const currentBranch = ciBranch;
// Clean any untracked files
await execa("git", ["clean", "-f"], { cwd, env });
// Handle release branch
if (exists) {
logger.log(`Release branch ${releaseBranchName} exists, updating to match ${ciBranch}`);
await forceUpdateBranch(releaseBranchName, ciBranch, { cwd, env });
} else {
logger.log(`Creating release branch ${releaseBranchName} from ${ciBranch}`);
await createBranch(releaseBranchName, ciBranch, { cwd, env });
}
// Switch to release branch
await checkout(releaseBranchName, { cwd, env });
// Prepare changelog and commit it
await plugins.prepare(context);
// Commit files configured in plugins
const filesToCommit = getFilesToCommit(options.plugins);
if (filesToCommit.length > 0) {
await execa("git", ["add", ...filesToCommit], { cwd, env });
const commitMessage = `chore(main): update files for release ${nextRelease.version}`;
await execa("git", ["commit", "-m", commitMessage], { cwd, env });
logger.log(`Committed files: ${filesToCommit.join(', ')}`);
}
// Push only to release branch
await pushBranch(options.repositoryUrl, `HEAD:${releaseBranchName}`, true, { cwd, env });
logger.success(`Updated release branch ${releaseBranchName}`);
// Switch back to original branch
await checkout(currentBranch, { cwd, env });
if (options.skipGitPush) {
logger.log("Skipping git tag push due to --skip-git-push flag");
logger.success(`Ready to push tag ${nextRelease.gitTag}`);
} else {
// Create the tag before calling the publish plugins as some require the tag to exists
await tag(nextRelease.gitTag, nextRelease.gitHead, { cwd, env });
await addNote({ channels: [nextRelease.channel] }, nextRelease.gitTag, { cwd, env });
await push(options.repositoryUrl, { cwd, env }, { skipGitPush: options.skipGitPush });
await pushNotes(options.repositoryUrl, nextRelease.gitTag, { cwd, env }, { skipGitPush: options.skipGitPush });
logger.success(`Created tag ${nextRelease.gitTag}`);
}
}
const releases = await plugins.publish(context);
context.releases.push(...releases);
await plugins.success({ ...context, releases });
logger.success(options.skipGitPush
? `Ready to push release ${nextRelease.version} on ${nextRelease.channel ? nextRelease.channel : "default"} channel`
: `Published release ${nextRelease.version} on ${nextRelease.channel ? nextRelease.channel : "default"} channel`);
if (options.getChangelog) {
// Output raw markdown changelog and exit
if (nextRelease.notes) {
context.stdout.write("CHANGELOG-in-markdown-below\n");
context.stdout.write(nextRelease.notes);
return pick(context, ["lastRelease", "commits", "nextRelease", "releases"]);
}
} else if (options.dryRun) {
logger.log(`Release note for version ${nextRelease.version}:`);
if (nextRelease.notes) {
context.stdout.write(await terminalOutput(nextRelease.notes));
}
}
return pick(context, ["lastRelease", "commits", "nextRelease", "releases"]);
}
async function logErrors({ logger, stderr }, err) {
const errors = extractErrors(err).sort((error) => (error.semanticRelease ? -1 : 0));
for (const error of errors) {
if (error.semanticRelease) {
logger.error(`${error.code} ${error.message}`);
if (error.details) {
stderr.write(await terminalOutput(error.details)); // eslint-disable-line no-await-in-loop
}
} else {
logger.error("An error occurred while running semantic-release: %O", error);
}
}
}
async function callFail(context, plugins, err) {
const errors = extractErrors(err).filter((err) => err.semanticRelease);
if (errors.length > 0) {
try {
await plugins.fail({ ...context, errors });
} catch (error) {
await logErrors(context, error);
}
}
}
export default async (cliOptions = {}, { cwd = process.cwd(), env = process.env, stdout, stderr } = {}) => {
const { unhook } = hookStd(
{ silent: false, streams: [process.stdout, process.stderr, stdout, stderr].filter(Boolean) },
hideSensitive(env)
);
const context = {
cwd,
env,
stdout: stdout || process.stdout,
stderr: stderr || process.stderr,
envCi: envCi({ env, cwd }),
};
context.logger = getLogger(context);
context.logger.log(`Running ${pkg.name} version ${pkg.version}`);
try {
const { plugins, options } = await getConfig(context, cliOptions);
if (options.skipGitPush) {
context.logger.warn("Git tag push operations will be skipped due to --skip-git-push flag");
}
options.originalRepositoryURL = options.repositoryUrl;
context.options = options;
try {
const result = await run(context, plugins);
unhook();
return result;
} catch (error) {
await callFail(context, plugins, error);
throw error;
}
} catch (error) {
await logErrors(context, error);
unhook();
throw error;
}
};