@semantic-release/github 11.0.1 → 11.0.2
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/README.md +6 -2
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -19,6 +19,10 @@
|
|
|
19
19
|
|
|
20
20
|
## Install
|
|
21
21
|
|
|
22
|
+
> [!TIP]
|
|
23
|
+
> You do not need to directly depend on this package if you are using `semantic-release`.
|
|
24
|
+
> `semantic-release` already depends on this package, and defining your own direct dependency can result in conflicts when you update `semantic-release`.
|
|
25
|
+
|
|
22
26
|
```bash
|
|
23
27
|
$ npm install @semantic-release/github -D
|
|
24
28
|
```
|
|
@@ -185,7 +189,7 @@ The `successComment` `This ${issue.pull_request ? 'pull request' : 'issue'} is i
|
|
|
185
189
|
|
|
186
190
|
#### successCommentCondition
|
|
187
191
|
|
|
188
|
-
|
|
192
|
+
A [Lodash template](https://lodash.com/docs#template) string that should evaluate to a truthy or falsy variable. The following variables are available:
|
|
189
193
|
|
|
190
194
|
| Parameter | Description |
|
|
191
195
|
| ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
@@ -226,7 +230,7 @@ The `failComment` `This release from branch ${branch.name} had failed due to the
|
|
|
226
230
|
|
|
227
231
|
#### failCommentCondition
|
|
228
232
|
|
|
229
|
-
|
|
233
|
+
A [Lodash template](https://lodash.com/docs#template) string that should evaluate to a truthy or falsy variable. The following variables are available:
|
|
230
234
|
|
|
231
235
|
| Parameter | Description |
|
|
232
236
|
| ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
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.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
7
7
|
"ava": {
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@octokit/core": "^6.0.0",
|
|
26
|
-
"@octokit/plugin-paginate-rest": "^
|
|
26
|
+
"@octokit/plugin-paginate-rest": "^12.0.0",
|
|
27
27
|
"@octokit/plugin-retry": "^7.0.0",
|
|
28
|
-
"@octokit/plugin-throttling": "^
|
|
28
|
+
"@octokit/plugin-throttling": "^10.0.0",
|
|
29
29
|
"@semantic-release/error": "^4.0.0",
|
|
30
30
|
"aggregate-error": "^5.0.0",
|
|
31
31
|
"debug": "^4.3.4",
|
|
@@ -41,17 +41,17 @@
|
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"ava": "6.2.0",
|
|
44
|
-
"c8": "10.1.
|
|
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
48
|
"lockfile-lint": "4.14.0",
|
|
49
49
|
"ls-engines": "0.9.3",
|
|
50
|
-
"npm-run-all2": "7.0.
|
|
51
|
-
"prettier": "3.
|
|
52
|
-
"publint": "0.
|
|
53
|
-
"semantic-release": "24.2.
|
|
54
|
-
"sinon": "
|
|
50
|
+
"npm-run-all2": "7.0.2",
|
|
51
|
+
"prettier": "3.5.3",
|
|
52
|
+
"publint": "0.3.12",
|
|
53
|
+
"semantic-release": "24.2.3",
|
|
54
|
+
"sinon": "20.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@
|
|
130
|
+
"packageManager": "npm@11.3.0"
|
|
131
131
|
}
|