🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

conventional-changelog-core

Package Overview
Dependencies
Maintainers
4
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conventional-changelog-core - npm Package Compare versions

Comparing version

to
5.0.2

17

lib/merge-config.js

@@ -56,2 +56,18 @@ 'use strict'

function omitUndefinedValueProps (obj) {
if (!obj) {
return {}
}
const omittedObj = {}
for (const key in obj) {
if (obj[key] !== undefined) {
omittedObj[key] = obj[key]
}
}
return omittedObj
}
async function mergeConfig (options, context, gitRawCommitsOpts, parserOpts, writerOpts, gitRawExecOpts) {

@@ -61,2 +77,3 @@ let configPromise

options = omitUndefinedValueProps(options)
context = context || {}

@@ -63,0 +80,0 @@ gitRawCommitsOpts = gitRawCommitsOpts || {}

2

package.json
{
"name": "conventional-changelog-core",
"version": "5.0.1",
"version": "5.0.2",
"description": "conventional-changelog core",

@@ -5,0 +5,0 @@ "repository": {