github-repository-provider 8.0.7 → 8.0.8

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-repository-provider",
3
- "version": "8.0.7",
3
+ "version": "8.0.8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,10 +31,10 @@
31
31
  "dependencies": {
32
32
  "content-entry": "^8.0.1",
33
33
  "fetch-link-util": "^1.0.14",
34
- "fetch-rate-limit-util": "^4.0.1",
34
+ "fetch-rate-limit-util": "^4.0.2",
35
35
  "matching-iterator": "^2.0.11",
36
36
  "one-time-execution-method": "^3.0.6",
37
- "repository-provider": "^32.6.9"
37
+ "repository-provider": "^32.6.11"
38
38
  },
39
39
  "devDependencies": {
40
40
  "ava": "^5.2.0",
@@ -44,7 +44,7 @@
44
44
  "leveldown": "^6.1.1",
45
45
  "levelup": "^5.1.1",
46
46
  "repository-provider-test-support": "^2.3.1",
47
- "semantic-release": "^20.1.1"
47
+ "semantic-release": "^20.1.3"
48
48
  },
49
49
  "engines": {
50
50
  "node": ">=18.15.0"
@@ -106,12 +106,8 @@ export class GithubProvider extends MultiGroupProvider {
106
106
  });
107
107
  }
108
108
 
109
- fetchJSON(url, options={}) {
109
+ fetchJSON(url, options = {}) {
110
110
  options.postprocess = async response => {
111
- if(!response.ok) {
112
- console.log("failed",url, response.status);
113
- }
114
-
115
111
  return { response, json: await response.json() };
116
112
  };
117
113