@gitkraken/provider-apis 0.27.3 → 0.28.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 +62 -62
- package/dist/index.providers.js +34 -34
- package/dist/providers/github/githubHelpers.d.ts +2 -1
- package/dist/providers/jira/jira.d.ts +7 -7
- package/dist/providers/jira/jiraHelpers.d.ts +7 -7
- package/dist/providers/jira/jiraServer.d.ts +7 -7
- package/dist/types/internalTypes/github.d.ts +21 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.28.0
|
|
4
|
+
|
|
5
|
+
- fix paging bug when fetching issues that was introduced by v0.27.1 (Jira Cloud)
|
|
6
|
+
|
|
7
|
+
### ⚠️ Breaking Changes
|
|
8
|
+
|
|
9
|
+
In order to fix the Jira Cloud paging bug, we needed to change the argument types and return types for both Jira Cloud and Jira Data Center issue fetching functions. The argument types have been changed to use `CursorPageInput` instead of `NumberedPageInput`, and the return types have been changed to use `CursorPageInfo` instead of `NumberedPageInfo`. The following functions have been affected:
|
|
10
|
+
|
|
11
|
+
Jira Cloud:
|
|
12
|
+
- `getIssuesForProject`
|
|
13
|
+
- `getIssuesForProjects`
|
|
14
|
+
- `getIssuesForResourceForCurrentUser`
|
|
15
|
+
|
|
16
|
+
Jira Data Center:
|
|
17
|
+
- `getIssuesForProject`
|
|
18
|
+
- `getIssuesForProjects`
|
|
19
|
+
- `getIssuesForResourceForCurrentUser`
|
|
20
|
+
|
|
21
|
+
## 0.27.4
|
|
22
|
+
|
|
23
|
+
- use `fullDatabaseId` instead of `databaseId` for PRs and issues internally (GitHub, GitHub Enterprise)
|
|
24
|
+
|
|
3
25
|
## 0.27.3
|
|
4
26
|
|
|
5
27
|
- added `getReposPermissionsForCurrentUser` (Bitbucket)
|