github-repository-provider 9.1.5 → 9.1.7

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": "9.1.5",
3
+ "version": "9.1.7",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -35,22 +35,22 @@
35
35
  "lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
36
36
  },
37
37
  "dependencies": {
38
- "content-entry": "^13.0.7",
38
+ "content-entry": "^13.1.0",
39
39
  "fetch-link-util": "^1.1.3",
40
40
  "fetch-rate-limit-util": "^4.5.2",
41
41
  "matching-iterator": "^2.1.3",
42
42
  "one-time-execution-method": "^3.1.3",
43
- "repository-provider": "^35.3.7"
43
+ "repository-provider": "^35.3.10"
44
44
  },
45
45
  "devDependencies": {
46
- "@types/node": "^22.15.14",
46
+ "@types/node": "^22.15.16",
47
47
  "ava": "^6.3.0",
48
48
  "c8": "^10.1.3",
49
49
  "documentation": "^14.0.3",
50
50
  "etag-cache-leveldb": "^2.1.13",
51
51
  "leveldown": "^6.1.1",
52
52
  "levelup": "^5.1.1",
53
- "repository-provider-test-support": "^3.1.17",
53
+ "repository-provider-test-support": "^3.1.19",
54
54
  "semantic-release": "^24.2.3",
55
55
  "typescript": "^5.8.3"
56
56
  },
@@ -161,7 +161,7 @@ export class GithubBranch extends Branch {
161
161
  class LazyBufferContentEntry extends BufferContentEntry {
162
162
  constructor(name, mode, branch) {
163
163
  super(name);
164
- Object.defineProperty(this, "mode", { value: mode });
164
+ this.mode = mode;
165
165
  this.branch = branch;
166
166
  }
167
167