release-please 13.18.6 → 13.18.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/build/src/manifest.js +15 -14
- package/build/src/util/pull-request-title.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
[1]: https://www.npmjs.com/package/release-please?activeTab=versions
|
|
6
6
|
|
|
7
|
+
## [13.18.7](https://github.com/googleapis/release-please/compare/v13.18.6...v13.18.7) (2022-06-30)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* correctly parse the changelog-type from the manifest config ([#1498](https://github.com/googleapis/release-please/issues/1498)) ([452f084](https://github.com/googleapis/release-please/commit/452f084ef8f664830c560472802e5942804df02d))
|
|
13
|
+
* pull request title component can include '/' ([#1499](https://github.com/googleapis/release-please/issues/1499)) ([19a8e82](https://github.com/googleapis/release-please/commit/19a8e8263500dedd32f3b555a9f00f8627f27a6d))
|
|
14
|
+
|
|
7
15
|
## [13.18.6](https://github.com/googleapis/release-please/compare/v13.18.5...v13.18.6) (2022-06-27)
|
|
8
16
|
|
|
9
17
|
|
package/build/src/manifest.js
CHANGED
|
@@ -933,7 +933,7 @@ async function latestReleaseVersion(github, targetBranch, releaseFilter, config,
|
|
|
933
933
|
return candidateTagVersion.sort((a, b) => b.compare(a))[0];
|
|
934
934
|
}
|
|
935
935
|
function mergeReleaserConfig(defaultConfig, pathConfig) {
|
|
936
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v;
|
|
936
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w;
|
|
937
937
|
return {
|
|
938
938
|
releaseType: (_b = (_a = pathConfig.releaseType) !== null && _a !== void 0 ? _a : defaultConfig.releaseType) !== null && _b !== void 0 ? _b : 'node',
|
|
939
939
|
bumpMinorPreMajor: (_c = pathConfig.bumpMinorPreMajor) !== null && _c !== void 0 ? _c : defaultConfig.bumpMinorPreMajor,
|
|
@@ -941,19 +941,20 @@ function mergeReleaserConfig(defaultConfig, pathConfig) {
|
|
|
941
941
|
changelogSections: (_e = pathConfig.changelogSections) !== null && _e !== void 0 ? _e : defaultConfig.changelogSections,
|
|
942
942
|
changelogPath: (_f = pathConfig.changelogPath) !== null && _f !== void 0 ? _f : defaultConfig.changelogPath,
|
|
943
943
|
changelogHost: (_g = pathConfig.changelogHost) !== null && _g !== void 0 ? _g : defaultConfig.changelogHost,
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
944
|
+
changelogType: (_h = pathConfig.changelogType) !== null && _h !== void 0 ? _h : defaultConfig.changelogType,
|
|
945
|
+
releaseAs: (_j = pathConfig.releaseAs) !== null && _j !== void 0 ? _j : defaultConfig.releaseAs,
|
|
946
|
+
skipGithubRelease: (_k = pathConfig.skipGithubRelease) !== null && _k !== void 0 ? _k : defaultConfig.skipGithubRelease,
|
|
947
|
+
draft: (_l = pathConfig.draft) !== null && _l !== void 0 ? _l : defaultConfig.draft,
|
|
948
|
+
prerelease: (_m = pathConfig.prerelease) !== null && _m !== void 0 ? _m : defaultConfig.prerelease,
|
|
949
|
+
component: (_o = pathConfig.component) !== null && _o !== void 0 ? _o : defaultConfig.component,
|
|
950
|
+
packageName: (_p = pathConfig.packageName) !== null && _p !== void 0 ? _p : defaultConfig.packageName,
|
|
951
|
+
versionFile: (_q = pathConfig.versionFile) !== null && _q !== void 0 ? _q : defaultConfig.versionFile,
|
|
952
|
+
extraFiles: (_r = pathConfig.extraFiles) !== null && _r !== void 0 ? _r : defaultConfig.extraFiles,
|
|
953
|
+
includeComponentInTag: (_s = pathConfig.includeComponentInTag) !== null && _s !== void 0 ? _s : defaultConfig.includeComponentInTag,
|
|
954
|
+
includeVInTag: (_t = pathConfig.includeVInTag) !== null && _t !== void 0 ? _t : defaultConfig.includeVInTag,
|
|
955
|
+
tagSeparator: (_u = pathConfig.tagSeparator) !== null && _u !== void 0 ? _u : defaultConfig.tagSeparator,
|
|
956
|
+
pullRequestTitlePattern: (_v = pathConfig.pullRequestTitlePattern) !== null && _v !== void 0 ? _v : defaultConfig.pullRequestTitlePattern,
|
|
957
|
+
separatePullRequests: (_w = pathConfig.separatePullRequests) !== null && _w !== void 0 ? _w : defaultConfig.separatePullRequests,
|
|
957
958
|
};
|
|
958
959
|
}
|
|
959
960
|
/**
|
|
@@ -34,7 +34,7 @@ function generateMatchPattern(pullRequestTitlePattern) {
|
|
|
34
34
|
.replace('[', '\\[') // TODO: handle all regex escaping
|
|
35
35
|
.replace(']', '\\]')
|
|
36
36
|
.replace('${scope}', '(\\((?<branch>[\\w-./]+)\\))?')
|
|
37
|
-
.replace('${component}', ' ?(?<component>[\\w
|
|
37
|
+
.replace('${component}', ' ?(?<component>[\\w-./]*)?')
|
|
38
38
|
.replace('${version}', 'v?(?<version>[0-9].*)')
|
|
39
39
|
.replace('${branch}', '(?<branch>[\\w-./]+)?')}$`);
|
|
40
40
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "release-please",
|
|
3
|
-
"version": "13.18.
|
|
3
|
+
"version": "13.18.7",
|
|
4
4
|
"description": "generate release PRs based on the conventionalcommits.org spec",
|
|
5
5
|
"main": "./build/src/index.js",
|
|
6
6
|
"bin": "./build/src/bin/release-please.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@octokit/types": "6.
|
|
40
|
+
"@octokit/types": "^6.1.0",
|
|
41
41
|
"@types/chai": "^4.1.7",
|
|
42
42
|
"@types/diff": "^5.0.2",
|
|
43
43
|
"@types/iarna__toml": "^2.0.1",
|