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

auto-release-cli

Package Overview
Dependencies
Maintainers
2
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auto-release-cli - npm Package Compare versions

Comparing version 2.5.0 to 2.5.1

12

CHANGELOG.md

@@ -0,1 +1,13 @@

# v2.5.1 (Wed Jan 16 2019)
#### 🐛 Bug Fix
- `auto label`: must sort PRs first because they can get merged out of order [#197](https://github.com/intuit/auto-release/pull/197) ([@hipstersmoothie](https://github.com/hipstersmoothie))
#### Authors: 1
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
---
# v2.5.0 (Wed Jan 16 2019)

@@ -2,0 +14,0 @@

6

dist/main.js

@@ -212,3 +212,7 @@ #!/usr/bin/env node

pulls = _b.sent();
lastMerged = pulls.find(function (pull) { return !!pull.merged_at; });
lastMerged = pulls
.sort(function (a, b) {
return new Date(b.merged_at).getTime() - new Date(a.merged_at).getTime();
})
.find(function (pull) { return !!pull.merged_at; });
if (lastMerged) {

@@ -215,0 +219,0 @@ labels = lastMerged.labels.map(function (label) { return label.name; });

2

package.json
{
"name": "auto-release-cli",
"description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels",
"version": "2.5.0",
"version": "2.5.1",
"main": "dist/main.js",

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

Sorry, the diff of this file is not supported yet

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