@gitkraken/provider-apis 0.47.0 → 0.48.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 +10 -0
- package/dist/index.js +12 -12
- package/dist/index.providers.js +9 -9
- package/dist/providers/github/github.d.ts +23 -0
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.48.0
|
|
4
|
+
|
|
5
|
+
- Added `getPullRequestDiff` to GitHub (requests the PR resource with the `application/vnd.github.diff` media type and returns the unified diff, with GitHub Enterprise `baseUrl` support)
|
|
6
|
+
- Added `reviewPullRequest` to GitHub (maps the `APPROVE`/`REQUEST_CHANGES`/`COMMENT` event to the existing approve/request-changes/comment review methods)
|
|
7
|
+
- Taught `fetchWrapper` to parse `application/vnd.github.diff` and `application/vnd.github.patch` content types as text
|
|
8
|
+
|
|
9
|
+
## 0.47.1
|
|
10
|
+
|
|
11
|
+
- Bumped vulnerable dev-only transitive dependencies (`handlebars` → 4.7.9, `serialize-javascript` → 7.0.5, `minimatch` → 9.0.9) to patched versions to clear all open Dependabot security alerts (no changes to the published package)
|
|
12
|
+
|
|
3
13
|
## 0.47.0
|
|
4
14
|
|
|
5
15
|
- Added `getPullRequestDescription` and `setPullRequestDescription` to GitHub, GitLab, and Azure DevOps (Bitbucket and Bitbucket Server remain unsupported)
|