2020-12-23 14:39:46 +01:00
|
|
|
'use strict';
|
2020-12-23 19:28:23 +01:00
|
|
|
|
2021-01-18 09:53:15 +01:00
|
|
|
// As of v14, Node.js does not exit when there is an unhandled Promise rejection. Convert an
|
|
|
|
// unhandled rejection into an uncaught exception, which does cause Node.js to exit.
|
|
|
|
process.on('unhandledRejection', (err) => { throw err; });
|
|
|
|
|
2020-12-23 14:39:46 +01:00
|
|
|
const fs = require('fs');
|
2021-01-18 09:53:15 +01:00
|
|
|
const childProcess = require('child_process');
|
2021-02-15 21:47:47 +01:00
|
|
|
const path = require('path');
|
2021-02-03 13:08:43 +01:00
|
|
|
const semver = require('semver');
|
2020-12-23 14:39:46 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Usage
|
|
|
|
|
2021-02-05 00:43:27 +01:00
|
|
|
node src/bin/release.js patch
|
2020-12-23 14:39:46 +01:00
|
|
|
|
|
|
|
*/
|
2021-02-05 00:43:27 +01:00
|
|
|
const usage =
|
|
|
|
'node src/bin/release.js [patch/minor/major] -- example: "node src/bin/release.js patch"';
|
2020-12-23 14:39:46 +01:00
|
|
|
|
|
|
|
const release = process.argv[2];
|
|
|
|
|
2021-01-18 09:53:15 +01:00
|
|
|
if (!release) {
|
2020-12-23 14:39:46 +01:00
|
|
|
console.log(usage);
|
|
|
|
throw new Error('No release type included');
|
|
|
|
}
|
|
|
|
|
2021-02-15 21:47:47 +01:00
|
|
|
const cwd = path.join(fs.realpathSync(__dirname), '../../');
|
|
|
|
process.chdir(cwd);
|
|
|
|
|
2021-02-15 21:54:21 +01:00
|
|
|
// Run command capturing stdout. Trailing newlines are stripped (like the shell does).
|
|
|
|
const runc =
|
|
|
|
(cmd, opts = {}) => childProcess.execSync(cmd, {encoding: 'utf8', ...opts}).replace(/\n+$/, '');
|
2021-02-15 22:07:37 +01:00
|
|
|
// Run command without capturing stdout.
|
|
|
|
const run = (cmd, opts = {}) => childProcess.execSync(cmd, {stdio: 'inherit', ...opts});
|
2021-02-15 21:51:07 +01:00
|
|
|
|
2021-02-15 19:56:00 +01:00
|
|
|
const readJson = (filename) => JSON.parse(fs.readFileSync(filename, {encoding: 'utf8', flag: 'r'}));
|
2021-02-15 20:04:47 +01:00
|
|
|
const writeJson = (filename, obj) => {
|
|
|
|
let json = JSON.stringify(obj, null, 2);
|
|
|
|
if (json !== '' && !json.endsWith('\n')) json += '\n';
|
|
|
|
fs.writeFileSync(filename, json);
|
|
|
|
};
|
2021-02-15 19:56:00 +01:00
|
|
|
|
2021-02-15 21:54:21 +01:00
|
|
|
const assertWorkDirClean = (opts = {}) => {
|
|
|
|
opts.cwd = runc('git rev-parse --show-cdup', opts) || cwd;
|
|
|
|
const m = runc('git diff-files --name-status', opts);
|
|
|
|
if (m !== '') throw new Error(`modifications in working directory ${opts.cwd}:\n${m}`);
|
|
|
|
const u = runc('git ls-files -o --exclude-standard', opts);
|
|
|
|
if (u !== '') throw new Error(`untracked files in working directory ${opts.cwd}:\n${u}`);
|
|
|
|
const s = runc('git diff-index --cached --name-status HEAD', opts);
|
|
|
|
if (s !== '') throw new Error(`uncommitted changes in working directory ${opts.cwd}:\n${s}`);
|
|
|
|
};
|
|
|
|
|
|
|
|
const assertBranchCheckedOut = (branch, opts = {}) => {
|
|
|
|
const b = runc('git symbolic-ref HEAD', opts);
|
|
|
|
if (b !== `refs/heads/${branch}`) {
|
|
|
|
const d = opts.cwd ? path.resolve(cwd, opts.cwd) : cwd;
|
|
|
|
throw new Error(`${branch} must be checked out (cwd: ${d})`);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const assertUpstreamOk = (branch, opts = {}) => {
|
|
|
|
const upstream = runc(`git rev-parse --symbolic-full-name ${branch}@{u}`, opts);
|
|
|
|
if (!(new RegExp(`^refs/remotes/[^/]+/${branch}`)).test(upstream)) {
|
|
|
|
throw new Error(`${branch} should track origin/${branch}; see git branch --set-upstream-to`);
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
run(`git merge-base --is-ancestor ${branch} ${branch}@{u}`);
|
|
|
|
} catch (err) {
|
|
|
|
if (err.status !== 1) throw err;
|
|
|
|
throw new Error(`${branch} is ahead of origin/${branch}; do you need to push?`);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const dirExists = (dir) => {
|
|
|
|
try {
|
|
|
|
return fs.statSync(dir).isDirectory();
|
|
|
|
} catch (err) {
|
|
|
|
if (err.code !== 'ENOENT') throw err;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Sanity checks for Etherpad repo.
|
|
|
|
assertWorkDirClean();
|
|
|
|
assertBranchCheckedOut('develop');
|
|
|
|
assertUpstreamOk('develop');
|
|
|
|
assertUpstreamOk('master');
|
|
|
|
|
|
|
|
// Sanity checks for documentation repo.
|
|
|
|
if (!dirExists('../ether.github.com')) {
|
|
|
|
throw new Error('please clone documentation repo: ' +
|
|
|
|
'(cd .. && git clone git@github.com:ether/ether.github.com.git)');
|
|
|
|
}
|
|
|
|
assertWorkDirClean({cwd: '../ether.github.com/'});
|
|
|
|
assertBranchCheckedOut('master', {cwd: '../ether.github.com/'});
|
|
|
|
assertUpstreamOk('master', {cwd: '../ether.github.com/'});
|
|
|
|
|
2020-12-23 14:39:46 +01:00
|
|
|
const changelog = fs.readFileSync('CHANGELOG.md', {encoding: 'utf8', flag: 'r'});
|
2021-02-15 19:56:00 +01:00
|
|
|
const pkg = readJson('./src/package.json');
|
|
|
|
const currentVersion = pkg.version;
|
2020-12-23 14:39:46 +01:00
|
|
|
|
|
|
|
const newVersion = semver.inc(currentVersion, release);
|
2021-01-18 09:53:15 +01:00
|
|
|
if (!newVersion) {
|
2020-12-23 14:39:46 +01:00
|
|
|
console.log(usage);
|
|
|
|
throw new Error('Unable to generate new version from input');
|
|
|
|
}
|
|
|
|
|
|
|
|
const changelogIncludesVersion = changelog.indexOf(newVersion) !== -1;
|
|
|
|
|
2021-01-18 09:53:15 +01:00
|
|
|
if (!changelogIncludesVersion) {
|
2021-02-07 20:27:10 +01:00
|
|
|
throw new Error(`No changelog record for ${newVersion}, please create changelog record`);
|
2020-12-23 14:39:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Okay looks good, lets create the package.json and package-lock.json');
|
|
|
|
|
2021-02-15 19:56:00 +01:00
|
|
|
pkg.version = newVersion;
|
2020-12-23 14:39:46 +01:00
|
|
|
|
2021-02-15 19:56:00 +01:00
|
|
|
writeJson('./src/package.json', pkg);
|
2020-12-23 14:39:46 +01:00
|
|
|
|
|
|
|
// run npm version `release` where release is patch, minor or major
|
2021-02-15 21:51:07 +01:00
|
|
|
run('npm install --package-lock-only', {cwd: 'src/'});
|
2020-12-23 14:39:46 +01:00
|
|
|
// run npm install --package-lock-only <-- required???
|
|
|
|
|
2021-02-15 19:56:41 +01:00
|
|
|
// Many users will be using the latest LTS version of npm, and the latest LTS version of npm uses
|
|
|
|
// lockfileVersion 1. Enforce v1 so that users don't see a (benign) compatibility warning.
|
|
|
|
if (readJson('./src/package-lock.json').lockfileVersion !== 1) {
|
|
|
|
throw new Error('Please regenerate package-lock.json with npm v6.x.');
|
|
|
|
}
|
|
|
|
|
2021-02-15 21:51:07 +01:00
|
|
|
run('git add src/package.json');
|
|
|
|
run('git add src/package-lock.json');
|
|
|
|
run('git commit -m "bump version"');
|
2020-12-23 14:39:46 +01:00
|
|
|
|
2020-12-23 17:51:23 +01:00
|
|
|
|
2021-02-15 21:51:07 +01:00
|
|
|
run('make docs');
|
|
|
|
run(`cp -R out/doc/ ../ether.github.com/doc/v${newVersion}`);
|
2020-12-23 14:39:46 +01:00
|
|
|
|
|
|
|
console.log('Once merged into master please run the following commands');
|
2021-02-15 11:20:04 +01:00
|
|
|
console.log(`git checkout master && git tag -a ${newVersion} -m ${newVersion} && git push origin master`);
|
|
|
|
console.log(`cd ../ether.github.com && git add . && git commit -m '${newVersion} docs' && git push`);
|
|
|
|
console.log('bin/buildForWindows.sh');
|
2021-01-18 09:53:15 +01:00
|
|
|
console.log('Visit https://github.com/ether/etherpad-lite/releases/new and create a new release ' +
|
|
|
|
`with 'master' as the target and the version is ${newVersion}. Include the windows ` +
|
|
|
|
'zip as an asset');
|
|
|
|
console.log(`Once the new docs are uploaded then modify the download
|
2021-02-15 11:20:04 +01:00
|
|
|
links (replace ${currentVersion} with ${newVersion} on etherpad.org and then pull master onto develop`);
|
2020-12-23 14:39:46 +01:00
|
|
|
console.log('Finally go public with an announcement via our comms channels :)');
|