27 Commits

Author SHA1 Message Date
d1099c1e69 chore(release): v1.7.0 2023-12-16 15:28:15 +02:00
f4a7a0d2bc feat(commands): add release script customizability (#12) 2023-12-16 15:22:43 +02:00
c80d763259 feat(config): add auto-signing options 2023-12-16 14:37:47 +02:00
498c830e34 feat: change tag message schema (#11) 2023-12-15 14:59:41 +02:00
f51bb88de4 chore(release): v1.6.0 2023-12-09 19:42:25 +02:00
a5626dbc54 feat: improve default 'stage all changes' behavior 2023-12-09 19:38:01 +02:00
4c892e8b11 docs(changelog): generate for v1.5.2 2023-08-23 23:37:08 +03:00
63a6c9feab chore(release): v1.5.2 2023-08-23 23:36:31 +03:00
8cb67f2cfd fix(commands): incorrect regex generation with specified scopes 2023-08-23 23:35:48 +03:00
8dbe266e39 Merge pull request 'Allow chore type in validation regex' (#9) from develop into main
Reviewed-on: technology/rcz#9
2023-08-23 19:54:05 +00:00
58f4dde9c9 docs(changelog): generate for v1.5.1 2023-08-23 22:53:43 +03:00
9586a567de chore(release): v1.5.1 2023-08-23 22:53:05 +03:00
6c663cf7fc fix(commands): allow chore type in validation regex 2023-08-23 22:52:54 +03:00
535a62857c docs(changelog): generate for v1.5.0 2023-08-23 22:48:52 +03:00
03f68e2912 Merge pull request 'Release v1.5.0' (#8) from develop into main
Reviewed-on: technology/rcz#8
2023-08-23 19:47:44 +00:00
71925553c1 chore(release): v1.5.0 2023-08-23 22:46:00 +03:00
53bb1437a0 fix(commands): allow chore type (#7)
allow chore type to permit validate subcommand usage together with release subcommand
2023-08-23 22:43:23 +03:00
92f8126abf feat(commands): add --amend option to commit sub-command 2023-08-22 17:43:30 +03:00
5080d71fb8 feat(config): allow more config file names
.rczrc.json and rcz.config.json can now be used as rcz configuration
2023-08-22 17:41:36 +03:00
56ad837b82 Merge pull request 'Add the ability to return only the code of validation command' (#6) from develop into main
Reviewed-on: technology/rcz#6
2023-08-21 15:37:11 +00:00
003c943a74 docs(changelog): generate for v1.4.0 2023-08-21 18:35:05 +03:00
77dfc9a73b chore(release): v1.4.0 2023-08-21 18:33:50 +03:00
8ab631549a feat(commands): add the ability to return code only for validation 2023-08-21 18:33:33 +03:00
2670f79e2f Merge pull request 'Release v1.3.0' (#5) from develop into main
Reviewed-on: technology/rcz#5
2023-08-21 15:14:26 +00:00
3afc2ed071 Merge branch 'main' into develop 2023-08-21 15:14:16 +00:00
45458d14e2 docs(changelog): generate for v1.3.0 2023-08-21 18:12:59 +03:00
d61c9ecf2e Merge pull request 'Make commit signing possible' (#3) from develop into main
Reviewed-on: technology/rcz#3
2023-08-20 15:13:30 +00:00
10 changed files with 243 additions and 96 deletions

8
.rczrc
View File

@@ -1,8 +0,0 @@
{
"scopes": [
"commands",
"changelog",
"readme",
"release"
]
}

3
.rczrc.json Normal file
View File

@@ -0,0 +1,3 @@
{
"scopes": ["commands", "changelog", "readme", "release", "config"]
}

17
.rczrc.onrelease.js Normal file
View File

@@ -0,0 +1,17 @@
const fs = require("fs");
const packageFile = fs.readFileSync("./package.json").toString();
const newPackageFile = packageFile.replace(
/"version": "[0-9]+.[0-9]+.[0-9]+"/,
`"version": "${__NEW_VERSION__}"`
);
fs.writeFileSync("./package.json", newPackageFile);
const indexFile = fs.readFileSync("./src/index.ts").toString();
const newIndexFile = indexFile.replace(
/version\("[0-9]+\.[0-9]+\.[0-9]+"\)/,
`version("${__NEW_VERSION__}")`
);
fs.writeFileSync("./src/index.ts", newIndexFile);

10
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"cSpell.words": [
"Acked",
"johndoe",
"onrelease",
"outro",
"rczrc",
"Resultium"
]
}

View File

@@ -2,6 +2,60 @@
Generation of this changelog is based on commits Generation of this changelog is based on commits
## v1.7.0
### Features
- [f4a7a0d2b] - **commands**: add release script customizability (#12)
- [c80d76325] - **config**: add auto-signing options
- [498c830e3] - change tag message schema (#11)
## v1.6.0
### Features
- [a5626dbc5] - improve default 'stage all changes' behavior
### Miscellaneous
- [4c892e8b1] - **changelog**: generate for v1.5.2
## v1.5.2
### Fixes
- [8cb67f2cf] - **commands**: incorrect regex generation with specified scopes
## v1.5.1
### Fixes
- [6c663cf7f] - **commands**: allow chore type in validation regex
## v1.5.0
### Features
- [92f8126ab] - **commands**: add --amend option to commit sub-command
- [5080d71fb] - **config**: allow more config file names
### Fixes
- [53bb1437a] - **commands**: allow chore type (#7)
## v1.4.0
### Features
- [8ab631549] - **commands**: add the ability to return code only for validation command
## v1.3.0
### Features
- [755da3bb5] - **commands**: add ability to write a footer
- [9311be80b] - **commands**: add commit message validation command (#4)
## v1.2.0 ## v1.2.0
### Features ### Features

View File

@@ -23,7 +23,7 @@ Resultium commit standardization library
## Configuration ## Configuration
You can create an `.rczrc` file in your root directory and specify available scopes and commit types You can create an `.rczrc`, `.rczrc.json` or `rcz.config.json` file in your root directory and specify available scopes and commit types
```json ```json
{ {
@@ -34,6 +34,31 @@ You can create an `.rczrc` file in your root directory and specify available sco
"value": "chore", "value": "chore",
"hint": "a routine action" "hint": "a routine action"
} }
] ],
"autoSignCommits": false,
"autoSignReleases": true
} }
``` ```
You are also able to create an onRelease event file, that is going to run before creation of a git tag and a release commit, when `rcz release` is run. The file is to be named `.rczrc.onrelease.js`. A sample can be seen below.
```js
const fs = require("fs"); // Require fileSystem
const packageFile = fs.readFileSync("./package.json").toString(); // Get package.json contents from the current working directory
const newPackageFile = packageFile.replace(
/"version": "[0-9]+.[0-9]+.[0-9]+"/,
`"version": "${__NEW_VERSION__}"`
); // Use RegExp to replace package.json version
fs.writeFileSync("./package.json", newPackageFile); // Write to package.json file its new content
const indexFile = fs.readFileSync("./src/index.ts").toString(); // Get index.ts file from source code directory
const newIndexFile = indexFile.replace(/version\("[0-9]+\.[0-9]+\.[0-9]+"\)/); // Replace class function call content with the new version
fs.writeFileSync("./src/index.ts", newIndexFile); // Write to source code index file
```
In your onRelease file you are provided with `__NEW_VERSION__` constant string which is the new version submitted in `rcz release` and `__IS_SIGNED__` constant which is a boolean telling whether the release (it's commit and tag) is going to be signed.
Bear in mind, **this script is going to be executed through `eval()` with no sanitation**, be careful with whatever you write.

View File

@@ -1,14 +0,0 @@
{
"version": "0.2",
"ignorePaths": [],
"dictionaryDefinitions": [],
"dictionaries": [],
"words": [
"Acked",
"johndoe",
"outro",
"rczrc"
],
"ignoreWords": [],
"import": []
}

View File

@@ -1,39 +1,39 @@
{ {
"name": "@resultium/rcz", "name": "@resultium/rcz",
"version": "1.3.0", "version": "1.7.0",
"description": "Resultium commit standardization library, based on conventional commits", "description": "Resultium commit standardization library, based on conventional commits",
"main": "./dist/index.js", "main": "./dist/index.js",
"bin": { "bin": {
"rcz": "./dist/index.js" "rcz": "./dist/index.js"
}, },
"files": [ "files": [
"dist" "dist"
], ],
"scripts": { "scripts": {
"build": "tsc" "build": "tsc"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://git.resultium.net/technology/rcz.git" "url": "https://git.resultium.net/technology/rcz.git"
}, },
"keywords": [ "keywords": [
"conventional", "conventional",
"commits" "commits"
], ],
"author": { "author": {
"name": "Resultium", "name": "Resultium",
"email": "contact@resultium.io", "email": "contact@resultium.io",
"url": "https://www.resultium.io" "url": "https://www.resultium.io"
}, },
"dependencies": { "dependencies": {
"@clack/prompts": "^0.7.0", "@clack/prompts": "^0.7.0",
"commander": "^11.0.0", "commander": "^11.0.0",
"semver": "^7.5.4", "semver": "^7.5.4",
"simple-git": "^3.19.1" "simple-git": "^3.19.1"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20.5.1", "@types/node": "^20.5.1",
"@types/semver": "^7.5.0", "@types/semver": "^7.5.0",
"typescript": "^5.1.6" "typescript": "^5.1.6"
} }
} }

View File

@@ -24,6 +24,18 @@ const GetConfig = async () => {
await fs.promises.readFile(path.join(process.cwd(), ".rczrc")) await fs.promises.readFile(path.join(process.cwd(), ".rczrc"))
).toString() ).toString()
) as Config; ) as Config;
} else if (fs.existsSync(path.join(process.cwd(), ".rczrc.json"))) {
return JSON.parse(
(
await fs.promises.readFile(path.join(process.cwd(), ".rczrc.json"))
).toString()
) as Config;
} else if (fs.existsSync(path.join(process.cwd(), "rcz.config.json"))) {
return JSON.parse(
(
await fs.promises.readFile(path.join(process.cwd(), "rcz.config.json"))
).toString()
) as Config;
} else { } else {
return null; return null;
} }
@@ -33,17 +45,19 @@ const program = new Command();
program program
.name("rcz") .name("rcz")
.description("Resultium commit standardization command-line interface") .description("Resultium commit standardization command-line interface")
.version("1.3.0"); .version("1.7.0");
program program
.command("commit") .command("commit")
.description("Create a conventional commit") .description("Create a conventional commit")
.option("-S, --sign", "sign the commit") .option("-S, --sign", "sign the commit")
.option("--amend", "amend commit message to the last commit")
.action(async (options) => { .action(async (options) => {
const sign = options.sign ? true : false;
const config = await GetConfig(); const config = await GetConfig();
const sign = config?.autoSignCommits || options.sign ? true : false;
const amend = options.amend ? true : false;
intro("Creating a conventional commit"); intro("Creating a conventional commit");
if (!fs.existsSync(path.join(process.cwd(), ".git"))) { if (!fs.existsSync(path.join(process.cwd(), ".git"))) {
@@ -51,10 +65,14 @@ program
process.exit(0); process.exit(0);
} }
const stageAll = await confirm({ const stageAll = amend
message: "Stage all changes?", ? null
initialValue: true, : await confirm({
}); message: "Stage all changes?",
initialValue: (await simpleGit().diff(["--cached"])).toString()
? false
: true,
});
if (isCancel(stageAll)) { if (isCancel(stageAll)) {
cancel("Commit creation cancelled"); cancel("Commit creation cancelled");
@@ -99,6 +117,11 @@ program
value: "refactor", value: "refactor",
hint: "code change that neither fixes a bug nor adds a feature", hint: "code change that neither fixes a bug nor adds a feature",
}, },
{
label: "chore",
value: "chore",
hint: "changes that are routinely, e.g. dependency update or a release commit",
},
], ],
}); });
@@ -192,14 +215,24 @@ program
if (stageAll) { if (stageAll) {
await simpleGit() await simpleGit()
.add(".") .add(".")
.commit(commitMessage, sign ? ["-S"] : []); .commit(
commitMessage,
sign ? (amend ? ["-S", "--amend"] : ["-S"]) : amend ? ["--amend"] : []
);
} else { } else {
await simpleGit().commit(commitMessage, sign ? ["-S"] : []); await simpleGit().commit(
commitMessage,
sign ? (amend ? ["-S", "--amend"] : ["-S"]) : amend ? ["--amend"] : []
);
} }
note(commitMessage); note(commitMessage);
outro("Finished creating a conventional commit, feel free to push"); outro(
`Finished ${
amend ? "amending" : "creating"
} a conventional commit, feel free to push`
);
}); });
program program
@@ -388,31 +421,50 @@ program
.argument("<version>", "new version formatted in SemVer") .argument("<version>", "new version formatted in SemVer")
.option("-S, --sign", "sign the release commit and tag") .option("-S, --sign", "sign the release commit and tag")
.action(async (string: string, options) => { .action(async (string: string, options) => {
const sign = options.sign ? true : false; const config = await GetConfig();
const sign = config?.autoSignReleases || options.sign ? true : false;
const version = string.replace("v", ""); const version = string.replace("v", "");
const packageFile = JSON.parse(
(
await fs.promises.readFile(path.join(process.cwd(), "package.json"))
).toString()
);
if (!packageFile) { const onReleaseFile = (
console.log("[rcz]: this directory does not have a package.json file"); await fs.promises.readFile(
path.join(process.cwd(), ".rczrc.onrelease.js")
)
).toString();
if (onReleaseFile) {
const releaseScript = `
const __NEW_VERSION__ = "${version}";
const __IS_SIGNED__ = ${sign};
${onReleaseFile}`;
eval(releaseScript);
} else {
const packageFile = JSON.parse(
(
await fs.promises.readFile(path.join(process.cwd(), "package.json"))
).toString()
);
if (!packageFile) {
console.log("[rcz]: this directory does not have a package.json file");
}
packageFile.version = version;
await fs.promises.writeFile(
path.join(process.cwd(), "package.json"),
JSON.stringify(packageFile, null, 4)
);
} }
packageFile.version = version;
await fs.promises.writeFile(
path.join(process.cwd(), "package.json"),
JSON.stringify(packageFile, null, 4)
);
await simpleGit() await simpleGit()
.add(".") .add(".")
.commit(`chore(release): v${version}`, sign ? ["-S"] : []) .commit(`chore(release): v${version}`, sign ? ["-S"] : [])
.tag( .tag(
sign sign
? [`-s`, `v${version}`, `-m`, `"Version ${version}"`] ? [`-s`, `v${version}`, `-m`, `"v${version}"`]
: [`-a`, `v${version}`, `-m`, `"Version ${version}"`] : [`-a`, `v${version}`, `-m`, `"v${version}"`]
); );
}); });
@@ -420,9 +472,11 @@ program
.command("validate") .command("validate")
.description("Validate whether a string fits given commit conventions") .description("Validate whether a string fits given commit conventions")
.argument("[message]", "string for validation") .argument("[message]", "string for validation")
.action(async (string: string) => { .option("-C, --code-only", "return code only")
.action(async (string: string, options) => {
try { try {
const message = string || fs.readFileSync(0, "utf-8"); const message = string || fs.readFileSync(0, "utf-8");
const codeOnly = options.codeOnly ? true : false;
const config = await GetConfig(); const config = await GetConfig();
@@ -432,18 +486,22 @@ program
const testRegex = new RegExp( const testRegex = new RegExp(
`(${ `(${
config?.types?.map((type) => type.value).join("|") || config?.types?.map((type) => type.value).join("|") ||
"feat|fix|build|ci|docs|perf|refactor" "feat|fix|build|ci|docs|perf|refactor|chore"
})(\\((${ })(\\((${
config?.scopes?.join("|") || "..*" config?.scopes ? [...config?.scopes, "release"].join("|") : "..*"
})\\))?!?: .* ?(\\(..*\\))?((\n\n..*)?(\n\n..*)?)?`, })\\))?!?: .* ?(\\(..*\\))?((\n\n..*)?(\n\n..*)?)?`,
"gm" "gm"
); );
console.log( if (codeOnly) {
testRegex.test(message) console.log(testRegex.test(message) ? 0 : 1);
? "[rcz]: valid message" } else {
: "[rcz]: invalid message" console.log(
); testRegex.test(message)
? "[rcz]: valid message"
: "[rcz]: invalid message"
);
}
} catch (err) { } catch (err) {
console.log("[rcz]: no stdin found"); console.log("[rcz]: no stdin found");
} }

View File

@@ -3,6 +3,8 @@ import { DefaultLogFields, ListLogLine } from "simple-git";
export interface Config { export interface Config {
types?: Array<Type>; types?: Array<Type>;
scopes?: Array<string>; scopes?: Array<string>;
autoSignCommits?: boolean;
autoSignReleases?: boolean;
} }
export interface Type { export interface Type {