@backstage/plugin-scaffolder-backend 1.6.0-next.0 → 1.6.0-next.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 +19 -0
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +5 -0
- package/dist/index.cjs.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.6.0-next.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7db9613671: Added `projectId` for gitlab projects to be displayed in the `gitlab:publish` output
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 0d8d650e32: Applied the fix from version 1.5.1 of this package, which is part of the v1.5.1 release of Backstage.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-common@0.15.1-next.1
|
|
14
|
+
- @backstage/plugin-catalog-backend@1.4.0-next.1
|
|
15
|
+
|
|
3
16
|
## 1.6.0-next.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -34,6 +47,12 @@
|
|
|
34
47
|
- @backstage/plugin-scaffolder-common@1.2.0-next.0
|
|
35
48
|
- @backstage/plugin-catalog-node@1.0.2-next.0
|
|
36
49
|
|
|
50
|
+
## 1.5.1
|
|
51
|
+
|
|
52
|
+
### Patch Changes
|
|
53
|
+
|
|
54
|
+
- Fix minimum required version for `vm2`
|
|
55
|
+
|
|
37
56
|
## 1.5.0
|
|
38
57
|
|
|
39
58
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/dist/index.cjs.js
CHANGED
|
@@ -3237,6 +3237,10 @@ function createPublishGitlabAction(options) {
|
|
|
3237
3237
|
repoContentsUrl: {
|
|
3238
3238
|
title: "A URL to the root of the repository",
|
|
3239
3239
|
type: "string"
|
|
3240
|
+
},
|
|
3241
|
+
projectId: {
|
|
3242
|
+
title: "The ID of the project",
|
|
3243
|
+
type: "string"
|
|
3240
3244
|
}
|
|
3241
3245
|
}
|
|
3242
3246
|
}
|
|
@@ -3309,6 +3313,7 @@ function createPublishGitlabAction(options) {
|
|
|
3309
3313
|
});
|
|
3310
3314
|
ctx.output("remoteUrl", remoteUrl);
|
|
3311
3315
|
ctx.output("repoContentsUrl", repoContentsUrl);
|
|
3316
|
+
ctx.output("projectId", projectId);
|
|
3312
3317
|
}
|
|
3313
3318
|
});
|
|
3314
3319
|
}
|