@semantic-release/github 5.5.4 → 5.5.8
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/lib/success.js +4 -1
- package/package.json +4 -4
package/lib/success.js
CHANGED
|
@@ -55,7 +55,10 @@ module.exports = async (pluginConfig, context) => {
|
|
|
55
55
|
) || shas.includes((await github.pullRequests.get({owner, repo, pull_number: number})).data.merge_commit_sha)
|
|
56
56
|
);
|
|
57
57
|
|
|
58
|
-
debug(
|
|
58
|
+
debug(
|
|
59
|
+
'found pull requests: %O',
|
|
60
|
+
prs.map(pr => pr.number)
|
|
61
|
+
);
|
|
59
62
|
|
|
60
63
|
// Parse the release commits message and PRs body to find resolved issues/PRs via comment keyworkds
|
|
61
64
|
const issues = [...prs.map(pr => pr.body), ...commits.map(commit => commit.message)].reduce((issues, message) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semantic-release/github",
|
|
3
3
|
"description": "semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues",
|
|
4
|
-
"version": "5.5.
|
|
4
|
+
"version": "5.5.8",
|
|
5
5
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
6
6
|
"ava": {
|
|
7
7
|
"helpers": [
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"dir-glob": "^3.0.0",
|
|
25
25
|
"fs-extra": "^8.0.0",
|
|
26
26
|
"globby": "^10.0.0",
|
|
27
|
-
"http-proxy-agent": "^
|
|
28
|
-
"https-proxy-agent": "^
|
|
27
|
+
"http-proxy-agent": "^3.0.0",
|
|
28
|
+
"https-proxy-agent": "^4.0.0",
|
|
29
29
|
"issue-parser": "^5.0.0",
|
|
30
30
|
"lodash": "^4.17.4",
|
|
31
31
|
"mime": "^2.4.3",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"xo": "^0.25.2"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
|
-
"node": ">=8.
|
|
51
|
+
"node": ">=8.16"
|
|
52
52
|
},
|
|
53
53
|
"files": [
|
|
54
54
|
"lib",
|