Socket
Socket
Sign inDemoInstall

release-it

Package Overview
Dependencies
Maintainers
1
Versions
400
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

release-it - npm Package Compare versions

Comparing version 14.14.0 to 14.14.1

CHANGELOG.md

3

lib/plugin/gitlab/GitLab.js

@@ -7,2 +7,3 @@ const fs = require('fs');

const _ = require('lodash');
const allSettled = require('promise.allsettled');
const Release = require('../GitRelease');

@@ -152,3 +153,3 @@ const { format, e } = require('../../util');

try {
await Promise.allSettled(requests).then(results => {
await allSettled(requests).then(results => {
for (const result of results) {

@@ -155,0 +156,0 @@ if (result.status === 'rejected') {

@@ -13,3 +13,3 @@ const _ = require('lodash');

const git = options.git || defaultConfig.git;
const gitOptions = _.pick(git, ['tagName', 'pushRepo', 'changelog']);
const gitOptions = _.pick(git, ['tagName', 'tagMatch', 'pushRepo', 'changelog']);
return _.defaults(baseOptions, gitOptions);

@@ -16,0 +16,0 @@ }

{
"name": "release-it",
"version": "14.14.0",
"version": "14.14.1",
"description": "Generic CLI tool to automate versioning and package publishing related tasks.",

@@ -70,3 +70,3 @@ "keywords": [

"import-cwd": "3.0.0",
"inquirer": "8.2.2",
"inquirer": "8.2.0",
"is-ci": "3.0.1",

@@ -80,3 +80,4 @@ "lodash": "4.17.21",

"parse-json": "5.2.0",
"semver": "7.3.5",
"promise.allsettled": "1.0.5",
"semver": "7.3.6",
"shelljs": "0.8.5",

@@ -93,13 +94,13 @@ "update-notifier": "5.1.0",

"ava": "3.15.0",
"eslint": "8.12.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-ava": "13.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"markdown-toc": "1.2.0",
"mock-fs": "5.1.2",
"mock-fs": "4.14.0",
"mock-stdio": "1.0.3",
"nock": "13.2.4",
"node-fetch": "2.6.7",
"prettier": "2.6.1",
"prettier": "2.6.2",
"proxyquire": "2.1.3",

@@ -106,0 +107,0 @@ "sinon": "13.0.1",

@@ -274,2 +274,10 @@ # Release It! 🚀

Note that arguments need to be quoted properly when used from the command line:
```bash
release-it --'hooks.after:release="echo Successfully released ${name} v${version} to ${repo.repository}."'
```
Using Inquirer.js inside custom hook scripts might cause issues (since release-it also uses this itself).
## Plugins

@@ -276,0 +284,0 @@

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