
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@wroud/conventional-commits-changelog
Advanced tools
A TypeScript library for generating markdown changelogs from conventional commit messages, providing a structured and consistent format for documenting project updates.
@wroud/conventional-commits-changelog is a TypeScript library designed to generate changelogs in markdown format based on conventional commit messages. It provides a structured and consistent format for documenting changes, helping developers keep track of notable updates and modifications in their projects.
Install via npm:
npm install @wroud/conventional-commits-changelog @wroud/conventional-commits-parser
To generate a changelog, you first need to parse your conventional commit messages. Here's an example of how to use the library:
import {
createConventionalChangelog,
createConventionalChangelogHeader,
} from "@wroud/conventional-commits-changelog";
import { getGitCommits } from "@wroud/git";
async function generateChangelog(version: string, compareUrl?: string) {
const commitGenerator = getGitCommits();
const commits: any[] = []; // Adjust type as needed
for await (const commitInfo of commitGenerator) {
commits.push(commitInfo);
}
const header = createConventionalChangelogHeader(version, compareUrl);
const changelog = createConventionalChangelog(commits);
// Combine header and changelog output
const output: string[] = [];
for (const line of header) {
output.push(line);
}
for await (const line of changelog) {
output.push(line);
}
console.log(output.join("\n"));
}
// Example usage
generateChangelog(
"1.0.0",
"https://github.com/Wroud/foundation/compare/git-v0.1.1...git-v0.1.2",
);
All notable changes to this project will be documented in the CHANGELOG file.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A TypeScript library for generating markdown changelogs from conventional commit messages, providing a structured and consistent format for documenting project updates.
The npm package @wroud/conventional-commits-changelog receives a total of 2 weekly downloads. As such, @wroud/conventional-commits-changelog popularity was classified as not popular.
We found that @wroud/conventional-commits-changelog demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.