Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@codastic/release

Package Overview
Dependencies
Maintainers
3
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codastic/release - npm Package Compare versions

Comparing version 1.5.0 to 1.6.0

11

bin/update-changelog.js

@@ -128,3 +128,12 @@ #!/usr/bin/env node

return pullRequests.filter(({ commit }) => !commitExists[commit]);
// Search for any matching prefix length of the commit hash
// because git does not guarantee to always have 7 digit abbreviated commit hashes.
return pullRequests.filter(({ commit }) => {
for (let length = 1; length <= commit.length; length += 1) {
if (commitExists[commit.substr(0, length)]) {
return false;
}
}
return true;
});
}

@@ -131,0 +140,0 @@

### v1.6.0 / 2019-05-22 14:33:00
- Support varying length of abbreviated commit hashes in update changelog (i: Mario Volke, r: Jonathan Häberle, c: 566115c)
### v1.5.0 / 2018-11-30 07:44:53

@@ -3,0 +7,0 @@

2

package.json
{
"name": "@codastic/release",
"version": "1.5.0",
"version": "1.6.0",
"description": "A collection of release and changelog management script you can easily use via NPM.",

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

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