@backstage/plugin-scaffolder-backend-module-gitlab 0.2.0 → 0.2.1-next.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 +11 -0
- package/README.md +6 -13
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.2.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f5a66052f04f: Tweak README
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/integration@1.4.5
|
|
10
|
+
- @backstage/config@1.0.7
|
|
11
|
+
- @backstage/errors@1.1.5
|
|
12
|
+
- @backstage/plugin-scaffolder-node@0.1.4-next.0
|
|
13
|
+
|
|
3
14
|
## 0.2.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -20,9 +20,10 @@ Configure the action:
|
|
|
20
20
|
// packages/backend/src/plugins/scaffolder.ts
|
|
21
21
|
|
|
22
22
|
import {
|
|
23
|
-
createGitlabProjectAccessTokenAction,
|
|
24
23
|
createGitlabProjectAccessTokenAction,
|
|
25
24
|
createGitlabProjectDeployTokenAction,
|
|
25
|
+
createGitlabProjectVariableAction,
|
|
26
|
+
createGitlabGroupEnsureExistsAction,
|
|
26
27
|
} from '@backstage/plugin-scaffolder-backend-module-gitlab';
|
|
27
28
|
|
|
28
29
|
// Create BuiltIn Actions
|
|
@@ -36,18 +37,10 @@ const builtInActions = createBuiltinActions({
|
|
|
36
37
|
// Add Gitlab Actions
|
|
37
38
|
const actions = [
|
|
38
39
|
...builtInActions,
|
|
39
|
-
createGitlabProjectAccessTokenAction({
|
|
40
|
-
|
|
41
|
-
}),
|
|
42
|
-
|
|
43
|
-
integrations: integrations,
|
|
44
|
-
}),
|
|
45
|
-
createGitlabProjectDeployTokenAction({
|
|
46
|
-
integrations: integrations,
|
|
47
|
-
}),
|
|
48
|
-
createGitlabGroupEnsureExistsAction({
|
|
49
|
-
integrations: integrations,
|
|
50
|
-
}),
|
|
40
|
+
createGitlabProjectAccessTokenAction({ integrations: integrations }),
|
|
41
|
+
createGitlabProjectDeployTokenAction({ integrations: integrations }),
|
|
42
|
+
createGitlabProjectVariableAction({ integrations: integrations }),
|
|
43
|
+
createGitlabGroupEnsureExistsAction({ integrations: integrations }),
|
|
51
44
|
];
|
|
52
45
|
|
|
53
46
|
// Create Scaffolder Router
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-gitlab",
|
|
3
|
-
"version": "0.2.0",
|
|
3
|
+
"version": "0.2.1-next.0",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"@backstage/config": "^1.0.7",
|
|
35
35
|
"@backstage/errors": "^1.1.5",
|
|
36
36
|
"@backstage/integration": "^1.4.5",
|
|
37
|
-
"@backstage/plugin-scaffolder-node": "^0.1.
|
|
37
|
+
"@backstage/plugin-scaffolder-node": "^0.1.4-next.0",
|
|
38
38
|
"@gitbeaker/node": "^35.8.0",
|
|
39
39
|
"zod": "^3.21.4"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@backstage/backend-common": "^0.18.
|
|
43
|
-
"@backstage/cli": "^0.22.
|
|
42
|
+
"@backstage/backend-common": "^0.18.6-next.0",
|
|
43
|
+
"@backstage/cli": "^0.22.8-next.0",
|
|
44
44
|
"@backstage/core-app-api": "^1.8.0"
|
|
45
45
|
},
|
|
46
46
|
"files": [
|