github-repository-provider 8.0.4 → 8.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-repository-provider",
3
- "version": "8.0.4",
3
+ "version": "8.0.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -29,9 +29,9 @@
29
29
  "lint:docs": "documentation lint ./src/**/*.mjs"
30
30
  },
31
31
  "dependencies": {
32
- "content-entry": "^6.0.0",
32
+ "content-entry": "^8.0.0",
33
33
  "fetch-link-util": "^1.0.14",
34
- "fetch-rate-limit-util": "^3.1.9",
34
+ "fetch-rate-limit-util": "^4.0.1",
35
35
  "matching-iterator": "^2.0.11",
36
36
  "one-time-execution-method": "^3.0.6",
37
37
  "repository-provider": "^32.6.9"
@@ -40,14 +40,14 @@
40
40
  "ava": "^5.2.0",
41
41
  "c8": "^7.13.0",
42
42
  "documentation": "^14.0.1",
43
- "etag-cache-leveldb": "^1.4.2",
43
+ "etag-cache-leveldb": "^2.0.0",
44
44
  "leveldown": "^6.1.1",
45
45
  "levelup": "^5.1.1",
46
46
  "repository-provider-test-support": "^2.3.0",
47
47
  "semantic-release": "^20.1.1"
48
48
  },
49
49
  "engines": {
50
- "node": ">=18.14.2"
50
+ "node": ">=18.15.0"
51
51
  },
52
52
  "repository": {
53
53
  "type": "git",
@@ -95,8 +95,8 @@ export class GithubProvider extends MultiGroupProvider {
95
95
  options.reporter = (url, ...args) => this.trace(url.toString(), ...args);
96
96
  options.cache = this.cache;
97
97
  options.agent = this.agent;
98
-
99
- return stateActionHandler(fetch, new URL(url, this.api), {
98
+
99
+ return stateActionHandler(new URL(url, this.api), {
100
100
  ...options,
101
101
  headers: {
102
102
  accept: "application/vnd.github+json",