@semantic-release/github 11.0.2 → 11.0.4
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 +5 -0
- package/package.json +12 -12
package/lib/success.js
CHANGED
|
@@ -265,6 +265,11 @@ export default async function success(pluginConfig, context, { Octokit }) {
|
|
|
265
265
|
|
|
266
266
|
if (failComment === false || failTitle === false) {
|
|
267
267
|
logger.log("Skip closing issue.");
|
|
268
|
+
logger.warn(
|
|
269
|
+
`DEPRECATION: 'false' for 'failComment' or 'failTitle' is deprecated and will be removed in a future major version. Use 'failCommentCondition' instead.`,
|
|
270
|
+
);
|
|
271
|
+
} else if (failCommentCondition === false) {
|
|
272
|
+
logger.log("Skip closing issue.");
|
|
268
273
|
} else {
|
|
269
274
|
const srIssues = await findSRIssues(
|
|
270
275
|
octokit,
|
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": "11.0.
|
|
4
|
+
"version": "11.0.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
7
7
|
"ava": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"Matt Travi <npm@travi.org> (https://matt.travi.org/)"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@octokit/core": "^
|
|
26
|
-
"@octokit/plugin-paginate-rest": "^
|
|
27
|
-
"@octokit/plugin-retry": "^
|
|
28
|
-
"@octokit/plugin-throttling": "^
|
|
25
|
+
"@octokit/core": "^7.0.0",
|
|
26
|
+
"@octokit/plugin-paginate-rest": "^13.0.0",
|
|
27
|
+
"@octokit/plugin-retry": "^8.0.0",
|
|
28
|
+
"@octokit/plugin-throttling": "^11.0.0",
|
|
29
29
|
"@semantic-release/error": "^4.0.0",
|
|
30
30
|
"aggregate-error": "^5.0.0",
|
|
31
31
|
"debug": "^4.3.4",
|
|
@@ -40,18 +40,18 @@
|
|
|
40
40
|
"url-join": "^5.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"ava": "6.
|
|
43
|
+
"ava": "6.4.1",
|
|
44
44
|
"c8": "10.1.3",
|
|
45
45
|
"cpy": "11.1.0",
|
|
46
46
|
"cz-conventional-changelog": "3.3.0",
|
|
47
47
|
"fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
|
|
48
|
-
"lockfile-lint": "4.14.
|
|
48
|
+
"lockfile-lint": "4.14.1",
|
|
49
49
|
"ls-engines": "0.9.3",
|
|
50
|
-
"npm-run-all2": "
|
|
51
|
-
"prettier": "3.
|
|
50
|
+
"npm-run-all2": "8.0.4",
|
|
51
|
+
"prettier": "3.6.2",
|
|
52
52
|
"publint": "0.3.12",
|
|
53
|
-
"semantic-release": "24.2.
|
|
54
|
-
"sinon": "
|
|
53
|
+
"semantic-release": "24.2.7",
|
|
54
|
+
"sinon": "21.0.0",
|
|
55
55
|
"tempy": "3.1.0"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
@@ -127,5 +127,5 @@
|
|
|
127
127
|
"github>semantic-release/.github:renovate-config"
|
|
128
128
|
]
|
|
129
129
|
},
|
|
130
|
-
"packageManager": "npm@11.
|
|
130
|
+
"packageManager": "npm@11.4.1"
|
|
131
131
|
}
|