mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Fix create release PR to cherry-pick commits Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix create release PR to cherry-pick commits Signed-off-by: Sebastian Malton <sebastian@malton.name> * release v6.0.2-alpha.0 Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix Badges being too small when scrollable and not expandable (#5987) Signed-off-by: Sebastian Malton <sebastian@malton.name> * Remove Tabs hover line width transition (#6020) Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix distribution detector erroneously depending on previous metadata (#6023) Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> * Override @astronautlabs/jsonpath's underscore version (#6044) * Override @astronautlabs/jsonpath's underscore version Signed-off-by: Sebastian Malton <sebastian@malton.name> * Remove use of buggy 'yarn check' Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> * Don't error out if we can't find resources from helm in our cluster, and handle "blank" output from kubectl gracefully. (#6039) * Use official node-fetch 2.x (#6049) * Fix UI for scaling ReplicaSets (#6052) * Use color-scheme: auto on all iframes (#6074) Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Use abort-controller package to fix typing issues (#6077) * Use default export to fix issue with package lying with types (#6081) Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> * Switch ubuntu CI to ubuntu-20.04 (#6078) Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix <Select/> text overflow below baseline (#6085) * Fix: do not crop <Select/> single value Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix: do not crop namespace selector placeholder Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Align working dir input height with others Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Linter fix Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Prevent massed remounting of dock tabs when dock height changes (#6104) * Update injectable to make withInjectables have authentic React reconciliation Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Make some dock tabs have primitive props to have them React reconcile properly Currently tab objects that are stored in a storage change reference on every change of dock height, making them less usable as React prop for causing involuntary remounting. Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Fix node conditions column text-align (#6092) Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Make cluster #app component transparent (#6076) until theme ready Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix badge not expanding on click when appropriate (#6029) * Fix badge not expanding on click when appropriate Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix snapshots Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix snapshots Signed-off-by: Sebastian Malton <sebastian@malton.name> * Update other snapshots Signed-off-by: Sebastian Malton <sebastian@malton.name> * Remove unneccessary code Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> * Disable fail-fast on the testing CI jobs (#6080) - There are several reasons why these might fail that are irrelavent to the other pipelines. So we should just let them continue Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> Co-authored-by: Alex Andreev <alex.andreev.email@gmail.com> Co-authored-by: Michael Pearson <mipearson@gmail.com> Co-authored-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> Co-authored-by: Carlos René Mederos Arias <krlosmederos@gmail.com> Co-authored-by: Janne Savolainen <janne.savolainen@live.fi>
272 lines
7.4 KiB
TypeScript
Executable File
272 lines
7.4 KiB
TypeScript
Executable File
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import child_process from "child_process";
|
|
import commandLineArgs from "command-line-args";
|
|
import fse from "fs-extra";
|
|
import { basename } from "path";
|
|
import { createInterface } from "readline";
|
|
import semver from "semver";
|
|
import { inspect, promisify } from "util";
|
|
|
|
const {
|
|
SemVer,
|
|
valid: semverValid,
|
|
rcompare: semverRcompare,
|
|
lte: semverLte,
|
|
} = semver;
|
|
const exec = promisify(child_process.exec);
|
|
const execFile = promisify(child_process.execFile);
|
|
|
|
const options = commandLineArgs([
|
|
{
|
|
name: "type",
|
|
defaultOption: true,
|
|
},
|
|
{
|
|
name: "preid",
|
|
},
|
|
]);
|
|
|
|
const validReleaseValues = [
|
|
"major",
|
|
"minor",
|
|
"patch",
|
|
];
|
|
const validPrereleaseValues = [
|
|
"premajor",
|
|
"preminor",
|
|
"prepatch",
|
|
"prerelease",
|
|
];
|
|
const validPreidValues = [
|
|
"alpha",
|
|
"beta",
|
|
];
|
|
|
|
const errorMessages = {
|
|
noReleaseType: `No release type provided. Valid options are: ${[...validReleaseValues, ...validPrereleaseValues].join(", ")}`,
|
|
invalidRelease: (invalid) => `Invalid release type was provided (value was "${invalid}"). Valid options are: ${[...validReleaseValues, ...validPrereleaseValues].join(", ")}`,
|
|
noPreid: `No preid was provided. Use '--preid' to specify. Valid options are: ${validPreidValues.join(", ")}`,
|
|
invalidPreid: (invalid) => `Invalid preid was provided (value was "${invalid}"). Valid options are: ${validPreidValues.join(", ")}`,
|
|
wrongCwd: "It looks like you are running this script from the 'scripts' directory. This script assumes it is run from the root of the git repo",
|
|
};
|
|
|
|
if (!options.type) {
|
|
console.error(errorMessages.noReleaseType);
|
|
process.exit(1);
|
|
}
|
|
|
|
if (validReleaseValues.includes(options.type)) {
|
|
// do nothing, is valid
|
|
} else if (validPrereleaseValues.includes(options.type)) {
|
|
if (!options.preid) {
|
|
console.error(errorMessages.noPreid);
|
|
process.exit(1);
|
|
}
|
|
|
|
if (!validPreidValues.includes(options.preid)) {
|
|
console.error(errorMessages.invalidPreid(options.preid));
|
|
process.exit(1);
|
|
}
|
|
} else {
|
|
console.error(errorMessages.invalidRelease(options.type));
|
|
process.exit(1);
|
|
}
|
|
|
|
if (basename(process.cwd()) === "scripts") {
|
|
console.error(errorMessages.wrongCwd);
|
|
}
|
|
|
|
|
|
const currentVersion = new SemVer((await fse.readJson("./package.json")).version);
|
|
|
|
console.log(`current version: ${currentVersion.format()}`);
|
|
console.log("fetching tags...");
|
|
await exec("git fetch --tags --force");
|
|
|
|
const actualTags = (await exec("git tag --list", { encoding: "utf-8" })).stdout.split(/\r?\n/).map(line => line.trim());
|
|
const [previousReleasedVersion] = actualTags
|
|
.map((value) => semverValid(value))
|
|
.filter((v): v is string => typeof v === "string")
|
|
.sort((l, r) => semverRcompare(l, r))
|
|
.filter(version => semverLte(version, currentVersion));
|
|
|
|
const npmVersionArgs = [
|
|
"npm",
|
|
"version",
|
|
options.type,
|
|
];
|
|
|
|
if (options.preid) {
|
|
npmVersionArgs.push(`--preid=${options.preid}`);
|
|
}
|
|
|
|
npmVersionArgs.push("--git-tag-version false");
|
|
|
|
await exec(npmVersionArgs.join(" "));
|
|
|
|
const newVersion = new SemVer((await fse.readJson("./package.json")).version);
|
|
const newVersionMilestone = `${newVersion.major}.${newVersion.minor}.${newVersion.patch}`;
|
|
|
|
console.log(`new version: ${newVersion.format()}`);
|
|
|
|
const getMergedPrsArgs = [
|
|
"gh",
|
|
"pr",
|
|
"list",
|
|
"--limit=500", // Should be big enough, if not we need to release more often ;)
|
|
"--state=merged",
|
|
"--base=master",
|
|
"--json mergeCommit,title,author,labels,number,milestone,mergedAt",
|
|
];
|
|
|
|
interface GithubPrData {
|
|
author: {
|
|
login: string;
|
|
};
|
|
labels: {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
color: string;
|
|
}[];
|
|
mergeCommit: {
|
|
oid: string;
|
|
};
|
|
mergedAt: string;
|
|
milestone: {
|
|
number: number;
|
|
title: string;
|
|
description: string;
|
|
dueOn: null | string;
|
|
};
|
|
number: number;
|
|
title: string;
|
|
}
|
|
|
|
console.log("retreiving last 500 PRs to create release PR body...");
|
|
const mergedPrs = JSON.parse((await exec(getMergedPrsArgs.join(" "), { encoding: "utf-8" })).stdout) as GithubPrData[];
|
|
const milestoneRelevantPrs = mergedPrs.filter(pr => pr.milestone?.title === newVersionMilestone);
|
|
const relaventPrsQuery = await Promise.all(
|
|
milestoneRelevantPrs.map(async pr => ({
|
|
pr,
|
|
stdout: (await exec(`git tag v${previousReleasedVersion} --no-contains ${pr.mergeCommit.oid}`)).stdout,
|
|
})),
|
|
);
|
|
const relaventPrs = relaventPrsQuery
|
|
.filter(query => query.stdout)
|
|
.map(query => query.pr)
|
|
.filter(pr => pr.labels.every(label => label.name !== "skip-changelog"))
|
|
.map(pr => ({ ...pr, mergedAt: new Date(pr.mergedAt) }))
|
|
.sort((left, right) => {
|
|
const leftAge = left.mergedAt.valueOf();
|
|
const rightAge = right.mergedAt.valueOf();
|
|
|
|
if (leftAge === rightAge) {
|
|
return 0;
|
|
}
|
|
|
|
if (leftAge > rightAge) {
|
|
return 1;
|
|
}
|
|
|
|
return -1;
|
|
});
|
|
|
|
console.log(inspect(relaventPrs, false, null, true));
|
|
|
|
const enhancementPrLabelName = "enhancement";
|
|
const bugfixPrLabelName = "bug";
|
|
|
|
const enhancementPrs = relaventPrs.filter(pr => pr.labels.some(label => label.name === enhancementPrLabelName));
|
|
const bugfixPrs = relaventPrs.filter(pr => pr.labels.some(label => label.name === bugfixPrLabelName));
|
|
const maintenencePrs = relaventPrs.filter(pr => pr.labels.every(label => label.name !== bugfixPrLabelName && label.name !== enhancementPrLabelName));
|
|
|
|
console.log("Found:");
|
|
console.log(`${enhancementPrs.length} enhancement PRs`);
|
|
console.log(`${bugfixPrs.length} bug fix PRs`);
|
|
console.log(`${maintenencePrs.length} maintenence PRs`);
|
|
|
|
const prBodyLines = [
|
|
`## Changes since ${previousReleasedVersion}`,
|
|
"",
|
|
];
|
|
|
|
function getPrEntry(pr) {
|
|
return `- ${pr.title} (**[#${pr.number}](https://github.com/lensapp/lens/pull/${pr.number})**) https://github.com/${pr.author.login}`;
|
|
}
|
|
|
|
if (enhancementPrs.length > 0) {
|
|
prBodyLines.push(
|
|
"## 🚀 Features",
|
|
"",
|
|
...enhancementPrs.map(getPrEntry),
|
|
"",
|
|
);
|
|
}
|
|
|
|
if (bugfixPrs.length > 0) {
|
|
prBodyLines.push(
|
|
"## 🐛 Bug Fixes",
|
|
"",
|
|
...bugfixPrs.map(getPrEntry),
|
|
"",
|
|
);
|
|
}
|
|
|
|
if (maintenencePrs.length > 0) {
|
|
prBodyLines.push(
|
|
"## 🧰 Maintenance",
|
|
"",
|
|
...maintenencePrs.map(getPrEntry),
|
|
"",
|
|
);
|
|
}
|
|
|
|
const prBody = prBodyLines.join("\n");
|
|
const prBase = newVersion.patch === 0
|
|
? "master"
|
|
: `release/v${newVersion.major}.${newVersion.minor}`;
|
|
const createPrArgs = [
|
|
"pr",
|
|
"create",
|
|
"--base", prBase,
|
|
"--title", `release ${newVersion.format()}`,
|
|
"--label", "skip-changelog",
|
|
"--body-file", "-",
|
|
];
|
|
|
|
const rl = createInterface(process.stdin);
|
|
|
|
if (prBase !== "master") {
|
|
console.log("Cherry-picking commits to current branch");
|
|
|
|
for (const pr of relaventPrs) {
|
|
try {
|
|
const promise = exec(`git cherry-pick ${pr.mergeCommit.oid}`);
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
promise.child.stdout!.pipe(process.stdout);
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
promise.child.stderr!.pipe(process.stderr);
|
|
|
|
await promise;
|
|
} catch {
|
|
console.error(`Failed to cherry-pick ${pr.mergeCommit.oid}, please resolve conflicts and then press enter here:`);
|
|
await new Promise<void>(resolve => rl.on("line", () => resolve()));
|
|
}
|
|
}
|
|
}
|
|
|
|
const createPrProcess = execFile("gh", createPrArgs);
|
|
|
|
createPrProcess.child.stdout?.pipe(process.stdout);
|
|
createPrProcess.child.stderr?.pipe(process.stderr);
|
|
|
|
createPrProcess.child.stdin?.write(prBody);
|
|
createPrProcess.child.stdin?.end();
|
|
|
|
await createPrProcess;
|