
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@wroud/conventional-commits-bump
Advanced tools
A utility for determining version bump types (major, minor, patch) based on conventional commit messages, facilitating semantic versioning in your projects.
@wroud/conventional-commits-bump is a utility designed to determine the appropriate version bump type based on conventional commits. This library helps automate the versioning process by analyzing commit messages and categorizing them as major, minor, or patch updates.
Install via npm:
npm install @wroud/conventional-commits-bump @wroud/conventional-commits-parser
Use the getConventionalCommitsBump function to analyze an array of conventional commits and determine the appropriate version bump:
import type { IConventionalCommit } from "@wroud/conventional-commits-parser";
import { getConventionalCommitsBump } from "@wroud/conventional-commits-bump";
const commits: IConventionalCommit[] = [
{ type: "feat", breakingChanges: [] },
{ type: "fix", breakingChanges: [] },
];
const bump = getConventionalCommitsBump(commits);
console.log(bump); // Output: "minor"
fix type commits should be translated to PATCH releases.feat type commits should be translated to MINOR releases.In this example, if any commit includes breaking changes, the bump will be "major". If there are no breaking changes but a commit of type "feat" is present, it will result in a "minor" bump; otherwise, it will return "patch" if there are any "fix" commits.
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 utility for determining version bump types (major, minor, patch) based on conventional commit messages, facilitating semantic versioning in your projects.
We found that @wroud/conventional-commits-bump 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.