@gitkraken/provider-apis 0.13.1 → 0.14.0
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 +22 -0
- package/dist/index.js +188 -101
- package/dist/providers/azureDevops/azureDevOps.d.ts +34 -0
- package/dist/providers/bitbucket/bitbucket.d.ts +5 -0
- package/dist/providers/bitbucketServer/bitbucketServer.d.ts +24 -0
- package/dist/providers/bitbucketServer/bitbucketServerTypes.d.ts +7 -0
- package/dist/providers/gitProvider.d.ts +43 -6
- package/dist/providers/github/github.d.ts +20 -0
- package/dist/providers/github/githubTypes.d.ts +18 -9
- package/dist/providers/gitlab/gitlab.d.ts +25 -0
- package/dist/providers/issueProvider.d.ts +6 -0
- package/dist/providers/jira/jira.d.ts +55 -0
- package/dist/providers/trello/trello.d.ts +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.14.0
|
|
4
|
+
|
|
5
|
+
- added `setIssueAssignees` (GitHub, GitLab, and Trello)
|
|
6
|
+
- added `setIssueAssignee` (Azure DevOps and Jira)
|
|
7
|
+
- added `setPullRequestReviewers` (GitHub, GitLab, Bitbucket, and Bitbucket Server)
|
|
8
|
+
- added `addPullRequestReviewer` (Azure DevOps)
|
|
9
|
+
- added `removePullRequestReviewer` (Azure DevOps)
|
|
10
|
+
- added `closePullRequest` (Bitbucket Server)
|
|
11
|
+
- added `mergePullRequest` (Bitbucket Server)
|
|
12
|
+
- added `getMergeStrategies` (Bitbucket Server)
|
|
13
|
+
- added `headCommit.buildStatuses` field to `GitPullRequest` (GitHub and GitLab)
|
|
14
|
+
|
|
15
|
+
### ⚠️ Breaking Changes
|
|
16
|
+
|
|
17
|
+
- replaced `headCommit.buildStatus` with `headCommit.buildStatuses` in `GitPullRequest` (GitHub)
|
|
18
|
+
|
|
19
|
+
## 0.13.2
|
|
20
|
+
|
|
21
|
+
- added `setPullRequestAssignees` (GitHub and GitLab)
|
|
22
|
+
- added `setIssueArchived` (Trello)
|
|
23
|
+
- updated `getIssuesForProject` to only return open issues (Jira)
|
|
24
|
+
|
|
3
25
|
## 0.13.1
|
|
4
26
|
|
|
5
27
|
- added `getAzurePullRequestLastMergeStatus` (Azure DevOps)
|