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

gitlab-releaser

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitlab-releaser - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

3

.gitlab/gitlab-releaser.json

@@ -17,2 +17,5 @@ {

"releases": {
"1.0.1": {
"milestones": [""]
},
"0.5.0": {

@@ -19,0 +22,0 @@ "tag_name": "0.5.0",

# Changelog
## v1.0.1 (2020-12-27)
### Fixed
- Updated to latest dependencies, including resolving vulnerabilities
## v1.0.0 (2020-11-21)

@@ -4,0 +10,0 @@

4

lib/schema.js

@@ -5,3 +5,3 @@ 'use strict';

const path = require('path');
const ajv = require('ajv');
const Ajv = require('ajv').default;

@@ -21,3 +21,3 @@ const schemaDirectory = 'schemas';

const schema = JSON.parse(fs.readFileSync(path.join(__dirname, '..', schemaDirectory, schemaFile)));
const validate = ajv().compile(schema);
const validate = new Ajv().compile(schema);
return validate(data);

@@ -24,0 +24,0 @@ };

{
"name": "gitlab-releaser",
"version": "1.0.0",
"version": "1.0.1",
"description": "Generate arguments for GitLab release-cli command",

@@ -34,12 +34,12 @@ "bin": "./bin/gitlab-releaser.js",

"devDependencies": {
"@aarongoldenthal/eslint-config-standard": "^6.0.0",
"bin-tester": "^1.1.1",
"eslint": "^7.14.0",
"@aarongoldenthal/eslint-config-standard": "^6.1.0",
"bin-tester": "^1.2.0",
"eslint": "^7.16.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-sonarjs": "^0.5.0",
"husky": "^4.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"markdownlint-cli": "^0.25.0"
"markdownlint-cli": "^0.26.0"
},

@@ -74,8 +74,8 @@ "jest": {

"dependencies": {
"ajv": "^6.12.6",
"ci-logger": "^3.0.1",
"commander": "^6.2.0",
"gitlab-ci-env": "^3.2.0",
"releaselog": "^1.0.4"
"ajv": "^7.0.2",
"ci-logger": "^3.0.2",
"commander": "^6.2.1",
"gitlab-ci-env": "^3.3.0",
"releaselog": "^1.0.5"
}
}
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