@semantic-release/github 7.2.1 → 8.0.0
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/get-fail-comment.js +3 -3
- package/lib/publish.js +1 -1
- package/package.json +9 -9
package/lib/get-fail-comment.js
CHANGED
|
@@ -19,9 +19,9 @@ module.exports = (branch, errors) => `## :rotating_light: The automated release
|
|
|
19
19
|
branch.name
|
|
20
20
|
}\` branch failed. :rotating_light:
|
|
21
21
|
|
|
22
|
-
I recommend you give this issue a high priority, so other packages depending on you
|
|
22
|
+
I recommend you give this issue a high priority, so other packages depending on you can benefit from your bug fixes and new features again.
|
|
23
23
|
|
|
24
|
-
You can find below the list of errors reported by **semantic-release**. Each one of them has to be resolved in order to automatically publish your package. I’m sure you can
|
|
24
|
+
You can find below the list of errors reported by **semantic-release**. Each one of them has to be resolved in order to automatically publish your package. I’m sure you can fix this 💪.
|
|
25
25
|
|
|
26
26
|
Errors are usually caused by a misconfiguration or an authentication problem. With each error reported below you will find explanation and guidance to help you to resolve it.
|
|
27
27
|
|
|
@@ -29,7 +29,7 @@ Once all the errors are resolved, **semantic-release** will release your package
|
|
|
29
29
|
branch.name
|
|
30
30
|
}\` branch. You can also manually restart the failed CI job that runs **semantic-release**.
|
|
31
31
|
|
|
32
|
-
If you are not sure how to resolve this, here
|
|
32
|
+
If you are not sure how to resolve this, here are some links that can help you:
|
|
33
33
|
- [Usage documentation](${USAGE_DOC_URL})
|
|
34
34
|
- [Frequently Asked Questions](${FAQ_URL})
|
|
35
35
|
- [Support channels](${GET_HELP_URL})
|
package/lib/publish.js
CHANGED
|
@@ -5,7 +5,7 @@ const mime = require('mime');
|
|
|
5
5
|
const debug = require('debug')('semantic-release:github');
|
|
6
6
|
const {RELEASE_NAME} = require('./definitions/constants');
|
|
7
7
|
const parseGithubUrl = require('./parse-github-url');
|
|
8
|
-
const globAssets = require('./glob-assets
|
|
8
|
+
const globAssets = require('./glob-assets');
|
|
9
9
|
const resolveConfig = require('./resolve-config');
|
|
10
10
|
const getClient = require('./get-client');
|
|
11
11
|
const isPrerelease = require('./is-prerelease');
|
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": "
|
|
4
|
+
"version": "8.0.0",
|
|
5
5
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
6
6
|
"ava": {
|
|
7
7
|
"files": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"bottleneck": "^2.18.1",
|
|
23
23
|
"debug": "^4.0.0",
|
|
24
24
|
"dir-glob": "^3.0.0",
|
|
25
|
-
"fs-extra": "^
|
|
25
|
+
"fs-extra": "^10.0.0",
|
|
26
26
|
"globby": "^11.0.0",
|
|
27
27
|
"http-proxy-agent": "^4.0.0",
|
|
28
28
|
"https-proxy-agent": "^5.0.0",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"ava": "3.15.0",
|
|
38
38
|
"clear-module": "4.1.1",
|
|
39
|
-
"codecov": "3.8.
|
|
40
|
-
"nock": "13.
|
|
39
|
+
"codecov": "3.8.3",
|
|
40
|
+
"nock": "13.1.3",
|
|
41
41
|
"nyc": "15.1.0",
|
|
42
42
|
"proxy": "1.0.2",
|
|
43
43
|
"proxyquire": "2.1.3",
|
|
44
|
-
"semantic-release": "
|
|
44
|
+
"semantic-release": "18.0.0-beta.2",
|
|
45
45
|
"server-destroy": "1.0.1",
|
|
46
|
-
"sinon": "
|
|
47
|
-
"tempy": "1.0.
|
|
46
|
+
"sinon": "11.1.2",
|
|
47
|
+
"tempy": "1.0.1",
|
|
48
48
|
"xo": "0.36.1"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
|
-
"node": ">=
|
|
51
|
+
"node": ">=14.17"
|
|
52
52
|
},
|
|
53
53
|
"files": [
|
|
54
54
|
"lib",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"all": true
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
|
-
"semantic-release": ">=
|
|
84
|
+
"semantic-release": ">=18.0.0-beta.1"
|
|
85
85
|
},
|
|
86
86
|
"prettier": {
|
|
87
87
|
"printWidth": 120,
|