Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@khala/commit-analyzer-wildcard
Advanced tools
Commit analyzer for semantic-release based on wildcards
Wildcard commit analyzer for semantic-release to find substrings in each commit message.
> npm install -D @khala/commit-analyzer-wildcard
> yarn add -D @khala/commit-analyzer-wildcard
Then add it to your release
options
package.json
{
"release": {
"analyzeCommits": "@khala/commit-analyzer-wildcard/analyzer"
}
}
.releaserc
{
"analyzeCommits": "@khala/commit-analyzer-wildcard/analyzer"
}
Simply add some special characters to any of your commit messages and new release will be triggered
<x.x.x>
or <x.x.?>
or <x.?.x>
or <x.?.?>
<?.x.x>
or <?.x.?>
<?.?.x>
<no>
To trigger automatic release add this to package.json
and install semantic-release
{
"scripts": {
"release": "semantic-release"
}
}
Settings for travis is
after_success:
- npm run release
To change default patterns you can pass your own in your release option.
{
"release": {
"analyzeCommits": [
{
"path": "@khala/commit-analyzer-wildcard/analyzer",
"patterns": {
"major": "<x.[x|?].[x|?]>",
"minor": "<?.x.[x|?]>",
"patch": "<?.?.x>",
"noRelease": "<no>"
}
}
]
}
}
Each pattern is transfered into Regular Expression and searched in each commit message.
FAQs
Commit analyzer for semantic-release based on wildcards
We found that @khala/commit-analyzer-wildcard demonstrated a not healthy version release cadence and project activity because the last version was released 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.