@gitkraken/provider-apis 0.17.3 → 0.17.5
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/CHANGELOG.md +18 -0
- package/dist/index.js +166 -145
- package/dist/providers/gitProvider.d.ts +5 -0
- package/dist/providers/github/github.d.ts +19 -0
- package/dist/providers/github/githubHelpers.d.ts +11 -2
- package/dist/providers/github/githubTypes.d.ts +1 -1
- package/dist/providers/issueProvider.d.ts +3 -3
- package/dist/providers/jira/jira.d.ts +6 -0
- package/dist/providers/jira/sharedHelpers.d.ts +6 -0
- package/dist/providers/jiraServer/jiraServer.d.ts +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.17.5
|
|
4
|
+
|
|
5
|
+
- added `getIssue` (Jira Cloud and Jira Server)
|
|
6
|
+
|
|
7
|
+
- fixed GitHub Enterprise versions older than 3.5.0 throwing when fetching pull requests
|
|
8
|
+
|
|
9
|
+
## 0.17.4
|
|
10
|
+
|
|
11
|
+
- added `getPullRequestForRepo` (GitHub)
|
|
12
|
+
- added `getPullRequestByGraphQLId` (GitHub)
|
|
13
|
+
- added `getFileContents` (GitHub)
|
|
14
|
+
- fix normalization of `repository` in `GitPullRequest` (Bitbucket)
|
|
15
|
+
|
|
16
|
+
## 0.17.3
|
|
17
|
+
|
|
18
|
+
- added `login` field to `repository` object in `GitPullRequest` type (Azure DevOps, BitBucket)
|
|
19
|
+
- made `login` field required for `repository` object in `GitPullRequest` type (since all providers support it now)
|
|
20
|
+
|
|
3
21
|
## 0.17.2
|
|
4
22
|
|
|
5
23
|
- add a `forceIsFetch` config option for cases where the native `fetch` function has been overridden but still uses `fetch` under the hood
|