bitbucket-repository-provider 4.1.24 → 4.1.26

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": "bitbucket-repository-provider",
3
- "version": "4.1.24",
3
+ "version": "4.1.26",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,13 +35,13 @@
35
35
  "matching-iterator": "^2.0.4",
36
36
  "node-fetch": "^3.2.4",
37
37
  "one-time-execution-method": "^3.0.1",
38
- "repository-provider": "^30.3.2"
38
+ "repository-provider": "^31.1.1"
39
39
  },
40
40
  "devDependencies": {
41
41
  "ava": "^4.2.0",
42
42
  "c8": "^7.11.3",
43
43
  "documentation": "^13.2.5",
44
- "repository-provider-test-support": "^2.1.24",
44
+ "repository-provider-test-support": "^2.1.25",
45
45
  "semantic-release": "^19.0.2"
46
46
  },
47
47
  "engines": {
@@ -107,13 +107,6 @@ export class BitbucketBranch extends Branch {
107
107
  get entryClass() {
108
108
  return BufferContentEntry;
109
109
  }
110
-
111
- // TODO move into base object
112
- get api()
113
- {
114
- return this.owner.api;
115
- }
116
-
117
110
  }
118
111
 
119
112
  class LazyBufferContentEntry extends BufferContentEntryMixin(ContentEntry) {
@@ -121,6 +121,6 @@ export class BitbucketPullRequest extends PullRequest {
121
121
 
122
122
  get url()
123
123
  {
124
- return `${this.provider.url}/${this.destination.slug}pull-requests/${this.name}`;
124
+ return `${this.provider.url}/${this.destination.slug}/pull-requests/${this.name}`;
125
125
  }
126
126
  }