@backstage/plugin-scaffolder-backend-module-gitlab 0.4.5-next.3 → 0.4.6
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 +33 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.4.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.24.1
|
|
9
|
+
- @backstage/plugin-scaffolder-node@0.4.10
|
|
10
|
+
- @backstage/backend-plugin-api@0.8.1
|
|
11
|
+
|
|
12
|
+
## 0.4.5
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- da97131: Added test cases for gitlab:issues:create examples
|
|
17
|
+
- fad1b90: Allow the `createGitlabProjectVariableAction` to use oauth tokens
|
|
18
|
+
- aab708e: Added test cases for gitlab:issue:edit examples
|
|
19
|
+
- ef742dc: Added test cases for gitlab:projectAccessToken:create example
|
|
20
|
+
- 1ba4c2f: Added test cases for gitlab:pipeline:trigger examples
|
|
21
|
+
- a6603e4: Add custom action for merge request: **auto**
|
|
22
|
+
|
|
23
|
+
The **Auto** action selects the committed action between _create_ and _update_.
|
|
24
|
+
|
|
25
|
+
The **Auto** action fetches files using the **/projects/repository/tree endpoint**.
|
|
26
|
+
After fetching, it checks if the file exists locally and in the repository. If it does, it chooses **update**; otherwise, it chooses **create**.
|
|
27
|
+
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @backstage/backend-plugin-api@0.8.0
|
|
30
|
+
- @backstage/backend-common@0.24.0
|
|
31
|
+
- @backstage/plugin-scaffolder-node@0.4.9
|
|
32
|
+
- @backstage/integration@1.14.0
|
|
33
|
+
- @backstage/config@1.2.0
|
|
34
|
+
- @backstage/errors@1.2.4
|
|
35
|
+
|
|
3
36
|
## 0.4.5-next.3
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-gitlab",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin-module",
|
|
6
6
|
"pluginId": "scaffolder",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"test": "backstage-cli package test"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@backstage/backend-common": "^0.
|
|
46
|
-
"@backstage/backend-plugin-api": "^0.8.
|
|
45
|
+
"@backstage/backend-common": "^0.24.1",
|
|
46
|
+
"@backstage/backend-plugin-api": "^0.8.1",
|
|
47
47
|
"@backstage/config": "^1.2.0",
|
|
48
48
|
"@backstage/errors": "^1.2.4",
|
|
49
|
-
"@backstage/integration": "^1.14.0
|
|
50
|
-
"@backstage/plugin-scaffolder-node": "^0.4.
|
|
49
|
+
"@backstage/integration": "^1.14.0",
|
|
50
|
+
"@backstage/plugin-scaffolder-node": "^0.4.10",
|
|
51
51
|
"@gitbeaker/core": "^35.8.0",
|
|
52
52
|
"@gitbeaker/node": "^35.8.0",
|
|
53
53
|
"@gitbeaker/rest": "^39.25.0",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"zod": "^3.22.4"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@backstage/backend-test-utils": "^0.
|
|
60
|
-
"@backstage/cli": "^0.27.0
|
|
61
|
-
"@backstage/core-app-api": "^1.14.2
|
|
62
|
-
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.
|
|
59
|
+
"@backstage/backend-test-utils": "^0.5.1",
|
|
60
|
+
"@backstage/cli": "^0.27.0",
|
|
61
|
+
"@backstage/core-app-api": "^1.14.2",
|
|
62
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.11"
|
|
63
63
|
}
|
|
64
64
|
}
|