@backstage/plugin-scaffolder-backend 1.5.0-next.0 → 1.5.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
+ ## 1.5.0-next.1
4
+
5
+ ### Minor Changes
6
+
7
+ - c4b452e16a: Starting the implementation of the Wizard page for the `next` scaffolder plugin
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @backstage/backend-common@0.15.0-next.1
13
+ - @backstage/integration@1.3.0-next.1
14
+ - @backstage/plugin-catalog-backend@1.3.1-next.1
15
+
3
16
  ## 1.5.0-next.0
4
17
 
5
18
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend",
3
- "version": "1.5.0-next.0",
3
+ "version": "1.5.0-next.1",
4
4
  "main": "../dist/index.cjs.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
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 : "Fill in template parameters",
4472
+ title: (_a2 = schema.title) != null ? _a2 : "Please enter the following information",
4473
+ description: schema.description,
4472
4474
  schema
4473
4475
  };
4474
4476
  })