Socket
Socket
Sign inDemoInstall

@semantic-release/commit-analyzer

Package Overview
Dependencies
Maintainers
5
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@semantic-release/commit-analyzer - npm Package Compare versions

Comparing version 6.3.1 to 6.3.2

11

index.js

@@ -33,3 +33,12 @@ const {isUndefined} = require('lodash');

filter(
commits.map(({message, ...commitProps}) => ({rawMsg: message, message, ...commitProps, ...parser(message, config)}))
commits
.filter(({message, hash}) => {
if (!message.trim()) {
debug('Skip commit %s with empty message', hash);
return false;
}
return true;
})
.map(({message, ...commitProps}) => ({rawMsg: message, message, ...commitProps, ...parser(message, config)}))
).every(({rawMsg, ...commit}) => {

@@ -36,0 +45,0 @@ logger.log(`Analyzing commit: %s`, rawMsg);

2

package.json
{
"name": "@semantic-release/commit-analyzer",
"description": "semantic-release plugin to analyze commits with conventional-changelog",
"version": "6.3.1",
"version": "6.3.2",
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",

@@ -6,0 +6,0 @@ "ava": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc