github-repository-provider 7.25.39 → 7.25.40

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": "7.25.39",
3
+ "version": "7.25.40",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,12 +31,12 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "content-entry": "^4.1.4",
34
- "fetch-link-util": "^1.0.5",
35
- "fetch-rate-limit-util": "^2.4.9",
36
- "matching-iterator": "^2.0.2",
34
+ "fetch-link-util": "^1.0.6",
35
+ "fetch-rate-limit-util": "^2.4.10",
36
+ "matching-iterator": "^2.0.3",
37
37
  "node-fetch": "3.2.0",
38
38
  "one-time-execution-method": "^2.0.11",
39
- "repository-provider": "^27.0.0"
39
+ "repository-provider": "^27.0.1"
40
40
  },
41
41
  "devDependencies": {
42
42
  "ava": "^4.0.1",
@@ -103,7 +103,9 @@ export class GithubProvider extends MultiGroupProvider {
103
103
  ...options.headers
104
104
  }
105
105
  },
106
- responseHandler
106
+ responseHandler,
107
+ undefined,
108
+ (url, ...args) => this.info(url.toString(), ...args)
107
109
  );
108
110
  }
109
111