Gathering detailed insights and metrics for conventional-changelog-conventionalcommits
Gathering detailed insights and metrics for conventional-changelog-conventionalcommits
Gathering detailed insights and metrics for conventional-changelog-conventionalcommits
Gathering detailed insights and metrics for conventional-changelog-conventionalcommits
@mattclough/conventional-changelog-conventionalcommits
conventional-changelog conventionalcommits.org preset
@avolantis/conventional-changelog-conventionalcommits
Shared conventional changelog preset for Avolantis commit conventions
conventional-changelog-conventionalcommits-factorio
conventional-changelog preset for factorio mod changelogs
@xunnamius/conventional-changelog-projector
⛔️ [DEPRECATED] conventional-changelog @xunnamius/projector preset originally forked from conventional-changelog-conventionalcommits
Generate changelogs and release notes from a project's commit messages and metadata.
npm install conventional-changelog-conventionalcommits
Typescript
Module System
Min. Node Version
Node Version
NPM Version
99.8
Supply Chain
96.9
Quality
88.6
Maintenance
100
Vulnerability
100
License
conventional-changelog: v7.1.1
Updated on Jul 10, 2025
conventional-changelog-conventionalcommits: v9.1.0
Updated on Jul 10, 2025
conventional-changelog-writer: v8.2.0
Updated on Jul 09, 2025
conventional-commits-parser: v6.2.0
Updated on Jun 09, 2025
conventional-recommended-bump: v11.2.0
Updated on Jun 07, 2025
conventional-changelog: v7.1.0
Updated on Jun 07, 2025
TypeScript (77.48%)
JavaScript (20.23%)
Handlebars (2.29%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
ISC License
8,156 Stars
1,786 Commits
729 Forks
54 Watchers
3 Branches
152 Contributors
Updated on Jul 11, 2025
Latest Version
9.1.0
Package Id
conventional-changelog-conventionalcommits@9.1.0
Unpacked Size
16.69 kB
Size
5.91 kB
File Count
13
NPM Version
10.8.2
Node Version
20.19.3
Published on
Jul 10, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
A concrete implementation of the specification described at conventionalcommits.org for automated CHANGELOG generation and version management.
1# yarn 2yarn add -D conventional-changelog-conventionalcommits 3# pnpm 4pnpm add -D conventional-changelog-conventionalcommits 5# npm 6npm i -D conventional-changelog-conventionalcommits
Use the Conventional Changelog CLI Usage with the -p conventionalcommits
option.
If you want to use this package directly and pass options, you can use the Conventional Changelog CLI Usage and with the --config
or -n
parameter, pass a js config that looks like this:
1import createPreset from 'conventional-changelog-conventionalcommits' 2 3createPreset({ 4 issuePrefixes: ['TEST-'], 5 issueUrlFormat: 'https://myBugTracker.com/{{prefix}}{{id}}' 6}).then((config) => { 7 // do something with the config 8})
or json config like that:
1{ 2 "options": { 3 "preset": { 4 "name": "conventionalcommits", 5 "issuePrefixes": ["TEST-"], 6 "issueUrlFormat": "https://myBugTracker.com/{{prefix}}{{id}}" 7 } 8 } 9}
This last json config way passes the preset
object to the conventional-changelog-preset-loader
package, that in turn, passes this same preset
object as the config for the conventional-changelog-conventionalcommits
.
See conventional-changelog-config-spec for available configuration options.
Option | Description |
---|---|
ignoreCommits | Regular expression to match and exclude commits from the changelog. Commits matching this pattern will be ignored. |
types | Array of commit type objects defining which types to include in the changelog. Hidden types are excluded from the changelog but may still trigger version bumps. Default value accessible via DEFAULT_COMMIT_TYPES export. |
bumpStrict | When true , version bumps occur only for breaking changes or non-hidden commit types. When false (default), any commit can trigger a version bump. |
scope | String or array of scope names to filter commits. Only commits with matching scopes will be included. When scopeOnly is false (default), commits without any scope are also included. |
scopeOnly | When true and scope is specified, excludes commits that have no scope. When false (default), includes both scoped and unscooped commits when filtering by scope. |
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
30 commit(s) and 7 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
1 existing vulnerabilities detected
Details
Reason
Found 2/25 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More