- Notifications
You must be signed in to change notification settings - Fork81
💡 semantic-release plugin to analyze commits with conventional-changelog
License
semantic-release/commit-analyzer
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
semantic-release plugin to analyze commits withconventional-changelog
| Step | Description |
|---|---|
analyzeCommits | Determine the type of release by analyzing commits withconventional-changelog. |
Tip
You do not need to directly depend on this package if you are usingsemantic-release.semantic-release already depends on this package, and defining your own direct dependency can result in conflicts when you updatesemantic-release.
$ npm install @semantic-release/commit-analyzer -D
The plugin can be configured in thesemantic-release configuration file:
{"plugins": [ ["@semantic-release/commit-analyzer", {"preset":"angular","releaseRules": [ {"type":"docs","scope":"README","release":"patch" }, {"type":"refactor","release":"patch" }, {"type":"style","release":"patch" } ],"parserOpts": {"noteKeywords": ["BREAKING CHANGE","BREAKING CHANGES"] } } ],"@semantic-release/release-notes-generator" ]}With this example:
- the commits that contains
BREAKING CHANGEorBREAKING CHANGESin their body will be considered breaking changes. - the commits with a 'docs'
type, a 'README'scopewill be associated with apatchrelease - the commits with a 'refactor'
typewill be associated with apatchrelease - the commits with a 'style'
typewill be associated with apatchrelease
Note: Your commits must be formattedexactly as specified by the chosen convention. For example theAngular Commit Message Conventions require theBREAKING CHANGE keyword to be followed by a colon (:) and to be in thefooter of the commit message.
| Option | Description | Default |
|---|---|---|
preset | conventional-changelog preset (possible values:angular,atom,codemirror,ember,eslint,express,jquery,jshint,conventionalcommits). | angular |
config | npm package name of a customconventional-changelog preset. | - |
parserOpts | Additionalconventional-commits-parser options that will extends the ones loaded bypreset orconfig. This is convenient to use aconventional-changelog preset with some customizations without having to create a new module. | - |
releaseRules | An external module, a path to a module or anArray of rules. SeereleaseRules. | SeereleaseRules |
presetConfig | Additional configuration passed to theconventional-changelog preset. Used for example withconventional-changelog-conventionalcommits. | - |
Notes: in order to use apreset it must be installed (for example to use theeslint preset you must install it withnpm install conventional-changelog-eslint -D)
Note:config will be overwritten by the values ofpreset. You should use eitherpreset orconfig, but not both.
Note: Individual properties ofparserOpts will override ones loaded with an explicitly setpreset orconfig. Ifpreset orconfig are not set, only the properties set inparserOpts will be used.
Note: For presets that expects a configuration object, such asconventionalcommits, thepresetConfig optionmust be set.
Release rules are used when deciding if the commits since the last release warrant a new release. If you define custom release rules thedefault rules will be used if nothing matched. Those rules will be matched against the commit objects resulting ofconventional-commits-parser parsing. Each rule property can be defined as aglob.
This is anArray of rule objects. A rule object has arelease property and 1 or more criteria.
{"plugins": [ ["@semantic-release/commit-analyzer", {"preset":"angular","releaseRules": [ {"type":"docs","scope":"README","release":"patch" }, {"type":"refactor","scope":"core-*","release":"minor" }, {"type":"refactor","release":"patch" }, {"scope":"no-release","release":false } ] } ],"@semantic-release/release-notes-generator" ]}Each commit will be compared with each rule and when it matches, the commit will be associated with the release type in the rule'srelease property. If a commit match multiple rules, the highest release type (major >minor >patch) is associated with the commit.
Seerelease types for the release types hierarchy.
With the previous example:
- Commits with
type'docs' andscope'README' will be associated with apatchrelease. - Commits with
type'refactor' andscopestarting with 'core-' (i.e. 'core-ui', 'core-rules', ...) will be associated with aminorrelease. - Other commits with
type'refactor' (withoutscopeor with ascopenot matching the globcore-*) will be associated with apatchrelease. - Commits with scope
no-releasewill not be associated with a release type.
If a commit doesn't match any rule inreleaseRules it will be evaluated against thedefault release rules.
With the previous example:
- Commits with a breaking change will be associated with a
majorrelease. - Commits with
type'feat' will be associated with aminorrelease. - Commits with
type'fix' will be associated with apatchrelease. - Commits with
type'perf' will be associated with apatchrelease. - Commits with scope
no-releasewill not be associated with a release type even if they have a breaking change or thetype'feat', 'fix' or 'perf'.
If a commit doesn't match any rules inreleaseRules or indefault release rules then no release type will be associated with the commit.
With the previous example:
- Commits with
type'style' will not be associated with a release type. - Commits with
type'test' will not be associated with a release type. - Commits with
type'chore' will not be associated with a release type.
If there is multiple commits that match one or more rules, the one with the highest release type will determine the global release type.
Considering the following commits:
docs(README): Add more details to the API docsfeat(API): Add a new method to the public API
With the previous example the release type determined by the plugin will beminor.
The properties to set in the rules will depends on the commit style chosen. For exampleconventional-changelog-angular use the commit propertiestype,scope andsubject butconventional-changelog-eslint usestag andmessage.
For example witheslint preset:
{"plugins": [ ["@semantic-release/commit-analyzer", {"preset":"eslint","releaseRules": [ {"tag":"Docs","message":"*README*","release":"patch" }, {"tag":"New","release":"patch" } ] } ],"@semantic-release/release-notes-generator" ]}With this configuration:
- Commits with
tag'Docs', that contains 'README' in their header message will be associated with apatchrelease. - Commits with
tag'New' will be associated with apatchrelease. - Commits with
tag'Breaking' will be associated with amajorrelease (perdefault release rules). - Commits with
tag'Fix' will be associated with apatchrelease (perdefault release rules). - Commits with
tag'Update' will be associated with aminorrelease (perdefault release rules). - All other commits will not be associated with a release type.
releaseRules can also reference a module, either by it'snpm name or path:
{"plugins": [ ["@semantic-release/commit-analyzer", {"preset":"angular","releaseRules":"./config/release-rules.cjs" } ],"@semantic-release/release-notes-generator" ]}// File: config/release-rules.cjsmodule.exports=[{type:"docs",scope:"README",release:"patch"},{type:"refactor",scope:"core-*",release:"minor"},{type:"refactor",release:"patch"},];
About
💡 semantic-release plugin to analyze commits with conventional-changelog
Topics
Resources
License
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.