@semantic-release/github 9.0.4 → 9.0.6
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/definitions/retry.js +2 -1
- package/package.json +6 -6
package/lib/definitions/retry.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Default
|
|
2
|
+
* Default retry config for octokit retry plugin
|
|
3
3
|
*/
|
|
4
4
|
export const RETRY_CONF = {
|
|
5
5
|
// By default, Octokit does not retry on 404s.
|
|
6
6
|
// But we want to retry on 404s to account for replication lag.
|
|
7
7
|
doNotRetry: [400, 401, 403, 422],
|
|
8
|
+
retries: 3,
|
|
8
9
|
};
|
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": "9.0.
|
|
4
|
+
"version": "9.0.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
7
7
|
"ava": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@octokit/plugin-retry": "^6.0.0",
|
|
26
26
|
"@octokit/plugin-throttling": "^7.0.0",
|
|
27
27
|
"@semantic-release/error": "^4.0.0",
|
|
28
|
-
"aggregate-error": "^
|
|
28
|
+
"aggregate-error": "^5.0.0",
|
|
29
29
|
"debug": "^4.3.4",
|
|
30
30
|
"dir-glob": "^3.0.1",
|
|
31
31
|
"globby": "^13.1.4",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"ava": "5.3.1",
|
|
42
|
-
"c8": "8.0.
|
|
42
|
+
"c8": "8.0.1",
|
|
43
43
|
"cpy": "10.1.0",
|
|
44
44
|
"fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
|
|
45
|
-
"prettier": "3.0.
|
|
46
|
-
"semantic-release": "21.
|
|
47
|
-
"sinon": "
|
|
45
|
+
"prettier": "3.0.3",
|
|
46
|
+
"semantic-release": "21.1.1",
|
|
47
|
+
"sinon": "16.0.0",
|
|
48
48
|
"tempy": "3.1.0"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|