github-repository-provider 7.33.35 → 7.33.36

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.33.35",
3
+ "version": "7.33.36",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -36,7 +36,7 @@
36
36
  "matching-iterator": "^2.0.11",
37
37
  "node-fetch": "^3.3.0",
38
38
  "one-time-execution-method": "^3.0.6",
39
- "repository-provider": "^32.5.1"
39
+ "repository-provider": "^32.6.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "ava": "^5.1.0",
@@ -46,7 +46,7 @@
46
46
  "leveldown": "^6.1.1",
47
47
  "levelup": "^5.1.1",
48
48
  "repository-provider-test-support": "^2.2.32",
49
- "semantic-release": "^19.0.5"
49
+ "semantic-release": "^20.0.2"
50
50
  },
51
51
  "engines": {
52
52
  "node": ">=16.19.0"
@@ -193,7 +193,7 @@ export class GithubRepository extends Repository {
193
193
  * @return {string} github https url
194
194
  */
195
195
  get url() {
196
- return `${this.provider.url}${this.fullName}.git`;
196
+ return `${this.provider.url}${this.fullName}`;
197
197
  }
198
198
 
199
199
  /**
@@ -217,7 +217,7 @@ export class GithubRepository extends Repository {
217
217
  * @return {string}
218
218
  */
219
219
  get api() {
220
- return `repos/${this.slug}`;
220
+ return `${this.provider.api}/repos/${this.slug}`;
221
221
  }
222
222
 
223
223
  /**