@backstage/plugin-scaffolder-backend-module-gitlab 0.0.0-nightly-20230516022030 → 0.0.0-nightly-20230518021901

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
@@ -1,6 +1,12 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-gitlab
2
2
 
3
- ## 0.0.0-nightly-20230516022030
3
+ ## 0.0.0-nightly-20230518021901
4
+
5
+ ### Patch Changes
6
+
7
+ - f5a66052f04: Tweak README
8
+
9
+ ## 0.2.0
4
10
 
5
11
  ### Minor Changes
6
12
 
@@ -16,8 +22,8 @@
16
22
  - gitlab:projectVariable:create
17
23
 
18
24
  - Updated dependencies
19
- - @backstage/integration@0.0.0-nightly-20230516022030
20
- - @backstage/plugin-scaffolder-node@0.0.0-nightly-20230516022030
25
+ - @backstage/integration@1.4.5
26
+ - @backstage/plugin-scaffolder-node@0.1.3
21
27
  - @backstage/config@1.0.7
22
28
  - @backstage/errors@1.1.5
23
29
 
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
- integrations: integrations,
41
- }),
42
- createGitlabProjectAccessTokenAction({
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.0.0-nightly-20230516022030",
3
+ "version": "0.0.0-nightly-20230518021901",
4
4
  "main": "dist/index.esm.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -33,15 +33,15 @@
33
33
  "dependencies": {
34
34
  "@backstage/config": "^1.0.7",
35
35
  "@backstage/errors": "^1.1.5",
36
- "@backstage/integration": "^0.0.0-nightly-20230516022030",
37
- "@backstage/plugin-scaffolder-node": "^0.0.0-nightly-20230516022030",
36
+ "@backstage/integration": "^1.4.5",
37
+ "@backstage/plugin-scaffolder-node": "^0.1.3",
38
38
  "@gitbeaker/node": "^35.8.0",
39
39
  "zod": "^3.21.4"
40
40
  },
41
41
  "devDependencies": {
42
- "@backstage/backend-common": "^0.0.0-nightly-20230516022030",
43
- "@backstage/cli": "^0.0.0-nightly-20230516022030",
44
- "@backstage/core-app-api": "^0.0.0-nightly-20230516022030"
42
+ "@backstage/backend-common": "^0.18.5",
43
+ "@backstage/cli": "^0.22.7",
44
+ "@backstage/core-app-api": "^1.8.0"
45
45
  },
46
46
  "files": [
47
47
  "dist"