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.3.1 to 2.3.2

12

CHANGELOG.md

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

# v2.3.2 (Tue Jan 15 2019)
#### 🐛 Bug Fix
- Pad color to be 6 digits long [#189](https://github.com/intuit/auto-release/pull/189) ([@adierkens](https://github.com/adierkens))
#### Authors: 1
- Adam Dierkens ([@adierkens](https://github.com/adierkens))
---
# v2.3.1 (Sun Jan 13 2019)

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

1

dist/git.d.ts

@@ -12,2 +12,3 @@ import GHub from '@octokit/rest';

}
export declare function getRandomColor(): string;
export default class GitHub {

@@ -14,0 +15,0 @@ readonly ghub: GHub;

@@ -80,2 +80,8 @@ "use strict";

var gitlog = util_1.promisify(gitlog_1.default);
function getRandomColor() {
return Math.floor(Math.random() * 16777215)
.toString(16)
.padStart(6, '0');
}
exports.getRandomColor = getRandomColor;
var GitHubAPIError = /** @class */ (function (_super) {

@@ -366,3 +372,3 @@ __extends(GitHubAPIError, _super);

repo: this.options.repo,
color: Math.floor(Math.random() * 16777215).toString(16),
color: getRandomColor(),
description: github_release_1.defaultLabelsDescriptions.get(label)

@@ -369,0 +375,0 @@ })];

2

package.json
{
"name": "auto-release-cli",
"description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels",
"version": "2.3.1",
"version": "2.3.2",
"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