danger 10.7.0 → 10.7.1
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
CHANGED
package/distribution/danger.d.ts
CHANGED
|
@@ -1540,6 +1540,9 @@ interface GitLabMRBase {
|
|
|
1540
1540
|
}
|
|
1541
1541
|
/** Who was assigned as the person to review */
|
|
1542
1542
|
assignee?: GitLabUser
|
|
1543
|
+
assignees: GitLabUser[]
|
|
1544
|
+
/** Users who were added as reviewers to the MR */
|
|
1545
|
+
reviewers: GitLabUser[]
|
|
1543
1546
|
source_project_id: number
|
|
1544
1547
|
target_project_id: number
|
|
1545
1548
|
labels: string[]
|
|
@@ -2024,6 +2024,12 @@ declare interface GitLabMRBase {
|
|
|
2024
2024
|
* Who was assigned as the person to review
|
|
2025
2025
|
*/
|
|
2026
2026
|
assignee?: GitLabUser;
|
|
2027
|
+
assignees: GitLabUser[];
|
|
2028
|
+
|
|
2029
|
+
/**
|
|
2030
|
+
* Users who were added as reviewers to the MR
|
|
2031
|
+
*/
|
|
2032
|
+
reviewers: GitLabUser[];
|
|
2027
2033
|
source_project_id: number;
|
|
2028
2034
|
target_project_id: number;
|
|
2029
2035
|
labels: string[];
|
|
@@ -86,6 +86,9 @@ export interface GitLabMRBase {
|
|
|
86
86
|
};
|
|
87
87
|
/** Who was assigned as the person to review */
|
|
88
88
|
assignee?: GitLabUser;
|
|
89
|
+
assignees: GitLabUser[];
|
|
90
|
+
/** Users who were added as reviewers to the MR */
|
|
91
|
+
reviewers: GitLabUser[];
|
|
89
92
|
source_project_id: number;
|
|
90
93
|
target_project_id: number;
|
|
91
94
|
labels: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "danger",
|
|
3
|
-
"version": "10.7.
|
|
3
|
+
"version": "10.7.1",
|
|
4
4
|
"description": "Unit tests for Team Culture",
|
|
5
5
|
"main": "distribution/danger.js",
|
|
6
6
|
"typings": "distribution/danger.d.ts",
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"lodash.mapvalues": "^4.6.0",
|
|
158
158
|
"lodash.memoize": "^4.1.2",
|
|
159
159
|
"memfs-or-file-map-to-github-branch": "^1.1.0",
|
|
160
|
-
"micromatch": "^
|
|
160
|
+
"micromatch": "^4.0.4",
|
|
161
161
|
"node-cleanup": "^2.1.2",
|
|
162
162
|
"node-fetch": "2.6.1",
|
|
163
163
|
"override-require": "^1.1.1",
|