New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

elgg-conventional-changelog

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elgg-conventional-changelog - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

8

lib/git.js

@@ -11,2 +11,4 @@ var extend = require('lodash.assign');

var isWin = /^win/.test(process.platform);
function getLog(options, done) {

@@ -55,3 +57,3 @@ var log = {};

options.exclude.map(function(tag) {
return "^" + tag;
return (isWin ? "^^" : "^") + tag;
}).join(' ')

@@ -102,3 +104,3 @@ );

options.exclude.map(function(tag) {
return "^" + tag;
return (isWin ? "^^" : "^") + tag;
}).join(' ')

@@ -118,3 +120,3 @@ );

var COMMIT_PATTERN = /^(\w*)(\(([\w\$\.\-\*]*)\))?\: (.*)$/;
var MAX_SUBJECT_LENGTH = 80;
var MAX_SUBJECT_LENGTH = 160;
function parseRawCommit(raw, options) {

@@ -121,0 +123,0 @@ if (!raw) {

{
"name": "elgg-conventional-changelog",
"version": "0.1.2",
"version": "0.1.3",
"description": "Generate a markdown changelog from git commit metadata",

@@ -5,0 +5,0 @@ "main": "index.js",

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