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

light-release

Package Overview
Dependencies
Maintainers
0
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

light-release - npm Package Compare versions

Comparing version 2.7.1 to 2.7.2

.release-notes/2.7.2/release.html

5

CHANGELOG.md

@@ -0,1 +1,6 @@

## [2.7.2] - February 18, 2025
### Changes
- Release notes generated for version [2.7.2](.release-notes/2.7.2/release.md)
## [2.7.1] - February 12, 2025

@@ -2,0 +7,0 @@

6

lib/git-utils.js

@@ -30,4 +30,4 @@ const { execSync } = require('child_process');

const commitLogCommand = lastCommitHash ? `git log ${lastCommitHash}..HEAD --pretty=format:"\$\$\$\$§§§§%H|%s%b|%ae|%an|%cd\$\$\$\$" --numstat` :
'git log --pretty=format:"\$\$\$\$§§§§%H|%s%b|%ae|%an|%cd\$\$\$\$" --numstat';
const commitLogCommand = lastCommitHash ? `git log ${lastCommitHash}..HEAD --pretty=format:"££££§§§§%H|%s%b|%ae|%an|%cd££££" --numstat` :
'git log --pretty=format:"££££§§§§%H|%s%b|%ae|%an|%cd££££" --numstat';
const commitLog = execSync(commitLogCommand, { encoding: 'utf8' });

@@ -37,3 +37,3 @@ const commits = [];

commitLog.split('\$\$\$\$').forEach((line) => {
commitLog.split('££££').forEach((line) => {
if (line.includes('§§§§')) {

@@ -40,0 +40,0 @@ const [hash, message, email, author, date] = line.split('|');

{
"name": "light-release",
"version": "2.7.1",
"version": "2.7.2",
"description": "A lightweight tool to automate your release process, compatible with conventional commit messages. It reads your commit history, determines the release type, and generates release notes without unnecessary dependencies.",

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

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