github-repository-provider 7.25.13 → 7.25.17
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/package.json +7 -7
- package/src/github-branch.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-repository-provider",
|
|
3
|
-
"version": "7.25.
|
|
3
|
+
"version": "7.25.17",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -30,20 +30,20 @@
|
|
|
30
30
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"content-entry": "^4.1.
|
|
33
|
+
"content-entry": "^4.1.2",
|
|
34
34
|
"fetch-link-util": "^1.0.4",
|
|
35
|
-
"fetch-rate-limit-util": "^2.4.
|
|
35
|
+
"fetch-rate-limit-util": "^2.4.7",
|
|
36
36
|
"matching-iterator": "^2.0.0",
|
|
37
|
-
"node-fetch": "3.
|
|
37
|
+
"node-fetch": "3.2.0",
|
|
38
38
|
"one-time-execution-method": "^2.0.9",
|
|
39
|
-
"repository-provider": "^26.
|
|
39
|
+
"repository-provider": "^26.3.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"ava": "^4.0.1",
|
|
43
43
|
"c8": "^7.11.0",
|
|
44
44
|
"documentation": "^13.2.5",
|
|
45
|
-
"repository-provider-test-support": "^1.9.
|
|
46
|
-
"semantic-release": "^
|
|
45
|
+
"repository-provider-test-support": "^1.9.8",
|
|
46
|
+
"semantic-release": "^19.0.2"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
49
|
"node": ">=14.18.3"
|
package/src/github-branch.mjs
CHANGED
|
@@ -15,7 +15,7 @@ export class GithubBranch extends Branch {
|
|
|
15
15
|
* Writes content into the branch
|
|
16
16
|
* {@link https://developer.github.com/v3/git/blobs/#get-a-blob}
|
|
17
17
|
* @param {ConentEntry} entry
|
|
18
|
-
* @return {Promise<
|
|
18
|
+
* @return {Promise<ContentEntry>} written content with sha values set
|
|
19
19
|
*/
|
|
20
20
|
async writeEntry(entry) {
|
|
21
21
|
const { json } = await this.provider.fetchJSON(
|