release-please
Advanced tools
Comparing version 13.18.3 to 13.18.4
@@ -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) { |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
722711
13604