@backstage/plugin-scaffolder-backend 0.0.0-nightly-20220728024931 → 0.0.0-nightly-20220731025527
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 +7 -6
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20220731025527
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
+
- c4b452e16a: Starting the implementation of the Wizard page for the `next` scaffolder plugin
|
|
7
8
|
- 593dea6710: Add support for Basic Auth for Bitbucket Server.
|
|
8
9
|
- 3b7930b3e5: Add support for Bearer Authorization header / token-based auth at Git commands.
|
|
9
10
|
- 3f1316f1c5: User Bearer Authorization header at Git commands with token-based auth at Bitbucket Server.
|
|
@@ -14,11 +15,11 @@
|
|
|
14
15
|
- fc8a5f797b: Add a `publish:gerrit:review` scaffolder action
|
|
15
16
|
- 014b3b7776: Add missing `res.end()` in scaffolder backend `EventStream` usage
|
|
16
17
|
- Updated dependencies
|
|
17
|
-
- @backstage/backend-common@0.0.0-nightly-
|
|
18
|
-
- @backstage/integration@0.0.0-nightly-
|
|
19
|
-
- @backstage/backend-plugin-api@0.0.0-nightly-
|
|
20
|
-
- @backstage/plugin-catalog-backend@0.0.0-nightly-
|
|
21
|
-
- @backstage/plugin-catalog-node@0.0.0-nightly-
|
|
18
|
+
- @backstage/backend-common@0.0.0-nightly-20220731025527
|
|
19
|
+
- @backstage/integration@0.0.0-nightly-20220731025527
|
|
20
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20220731025527
|
|
21
|
+
- @backstage/plugin-catalog-backend@0.0.0-nightly-20220731025527
|
|
22
|
+
- @backstage/plugin-catalog-node@0.0.0-nightly-20220731025527
|
|
22
23
|
|
|
23
24
|
## 1.5.0-next.0
|
|
24
25
|
|
package/alpha/package.json
CHANGED
package/dist/index.cjs.js
CHANGED
|
@@ -4465,10 +4465,12 @@ async function createRouter(options) {
|
|
|
4465
4465
|
const parameters = [(_a = template.spec.parameters) != null ? _a : []].flat();
|
|
4466
4466
|
res.json({
|
|
4467
4467
|
title: (_b = template.metadata.title) != null ? _b : template.metadata.name,
|
|
4468
|
+
description: template.metadata.description,
|
|
4468
4469
|
steps: parameters.map((schema) => {
|
|
4469
4470
|
var _a2;
|
|
4470
4471
|
return {
|
|
4471
|
-
title: (_a2 = schema.title) != null ? _a2 : "
|
|
4472
|
+
title: (_a2 = schema.title) != null ? _a2 : "Please enter the following information",
|
|
4473
|
+
description: schema.description,
|
|
4472
4474
|
schema
|
|
4473
4475
|
};
|
|
4474
4476
|
})
|