@itentialopensource/adapter-gitlab 0.13.1 → 0.13.3
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/CALLS.md +6 -0
- package/CHANGELOG.md +16 -0
- package/adapter.js +607 -521
- package/entities/projects/action.json +21 -0
- package/entities/projects/schema.json +1 -0
- package/package.json +4 -4
- package/pronghorn.json +54 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +7 -7
- package/test/unit/adapterTestUnit.js +65 -2
package/CALLS.md
CHANGED
|
@@ -592,6 +592,12 @@ Specific adapter calls are built based on the API of the GitLab. The Adapter Bui
|
|
|
592
592
|
<td style="padding:15px">{base_path}/{version}/groups/{pathv1}/epics/{pathv2}/discussions?{query}</td>
|
|
593
593
|
<td style="padding:15px">Yes</td>
|
|
594
594
|
</tr>
|
|
595
|
+
<tr>
|
|
596
|
+
<td style="padding:15px">postV4ProjectsIdApproveMergeRequest(id, mergeRequestIid, body, callback)</td>
|
|
597
|
+
<td style="padding:15px">Post a comment to a merge request</td>
|
|
598
|
+
<td style="padding:15px">{base_path}/{version}/projects/{pathv1}/merge_requests/{pathv2}/approve?{query}</td>
|
|
599
|
+
<td style="padding:15px">Yes</td>
|
|
600
|
+
</tr>
|
|
595
601
|
<tr>
|
|
596
602
|
<td style="padding:15px">getV4GroupsIdEpicsIdDiscussionsId(id, epicsId, discussionId, callback)</td>
|
|
597
603
|
<td style="padding:15px">Returns a single discussion for a specific group epic.</td>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.13.3 [03-01-2024]
|
|
3
|
+
|
|
4
|
+
* Add approve merge request call
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/devops-netops/adapter-gitlab!27
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.13.2 [02-26-2024]
|
|
11
|
+
|
|
12
|
+
* Changes made at 2024.02.26_13:50PM
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/devops-netops/adapter-gitlab!26
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.13.1 [12-24-2023]
|
|
3
19
|
|
|
4
20
|
* update axios and metadata
|