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

release-please

Package Overview
Dependencies
Maintainers
2
Versions
383
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

release-please - npm Package Compare versions

Comparing version 13.18.3 to 13.18.4

2

build/src/bin/release-please.js

@@ -496,2 +496,4 @@ #!/usr/bin/env node

token: argv.token,
apiUrl: argv.apiUrl,
graphqlUrl: argv.graphqlUrl,
});

@@ -498,0 +500,0 @@ return github;

@@ -23,2 +23,15 @@ "use strict";

const path_1 = require("path");
const CHANGELOG_SECTIONS = [
{ type: 'feat', section: 'Features' },
{ type: 'fix', section: 'Bug Fixes' },
{ type: 'perf', section: 'Performance Improvements' },
{ type: 'revert', section: 'Reverts' },
{ type: 'docs', section: 'Documentation' },
{ type: 'style', section: 'Styles', hidden: true },
{ type: 'chore', section: 'Miscellaneous Chores', hidden: true },
{ type: 'refactor', section: 'Code Refactoring', hidden: true },
{ type: 'test', section: 'Tests', hidden: true },
{ type: 'build', section: 'Build System', hidden: true },
{ type: 'ci', section: 'Continuous Integration', hidden: true },
];
const REGEN_PR_REGEX = /.*auto-regenerate.*/;

@@ -30,3 +43,6 @@ const REGEN_ISSUE_REGEX = /(?<prefix>.*)\(#(?<pr>.*)\)(\n|$)/;

options.changelogPath = (_a = options.changelogPath) !== null && _a !== void 0 ? _a : 'CHANGES.md';
super(options);
super({
...options,
changelogSections: CHANGELOG_SECTIONS,
});
}

@@ -33,0 +49,0 @@ async buildUpdates(options) {

10

package.json
{
"name": "release-please",
"version": "13.18.3",
"version": "13.18.4",
"description": "generate release PRs based on the conventionalcommits.org spec",

@@ -46,6 +46,6 @@ "main": "./build/src/index.js",

"@types/jsonpath": "^0.2.0",
"@types/lerna__collect-updates": "^4.0.0",
"@types/lerna__package": "^4.0.2",
"@types/lerna__package-graph": "^4.0.1",
"@types/lerna__run-topologically": "^4.0.0",
"@types/lerna__collect-updates": "^5.0.0",
"@types/lerna__package": "^5.0.0",
"@types/lerna__package-graph": "^5.0.0",
"@types/lerna__run-topologically": "^5.0.0",
"@types/mocha": "^9.0.0",

@@ -52,0 +52,0 @@ "@types/node": "^16.0.0",

Sorry, the diff of this file is too big to display

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