@backstage/plugin-scaffolder 1.8.0-next.1 → 1.9.0-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 CHANGED
@@ -1,5 +1,78 @@
1
1
  # @backstage/plugin-scaffolder
2
2
 
3
+ ## 1.9.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ddd1c3308d: Implement Custom Field Explorer to view and play around with available installed custom field extensions
8
+ - adb1b01e32: Adds the ability to supply a `transformErrors` function to the `Stepper` for `/next`
9
+
10
+ ### Patch Changes
11
+
12
+ - d4d07cf55e: Enabling the customization of the last step in the scaffolder template.
13
+
14
+ To override the content you have to do the next:
15
+
16
+ ```typescript jsx
17
+ <TemplatePage ReviewStepComponent={YourCustomComponent} />
18
+ ```
19
+
20
+ - ef803022f1: Initialize all `formData` in the `Stepper` in `/next`
21
+ - 3280711113: Updated dependency `msw` to `^0.49.0`.
22
+ - 19356df560: Updated dependency `zen-observable` to `^0.9.0`.
23
+ - a63e2df559: fixed `headerOptions` not passed to `TemplatePage` component
24
+ - Updated dependencies
25
+ - @backstage/catalog-client@1.2.0-next.0
26
+ - @backstage/core-components@0.12.1-next.0
27
+ - @backstage/core-plugin-api@1.1.1-next.0
28
+ - @backstage/integration-react@1.1.7-next.0
29
+ - @backstage/integration@1.4.1-next.0
30
+ - @backstage/types@1.0.2-next.0
31
+ - @backstage/plugin-catalog-react@1.2.2-next.0
32
+ - @backstage/catalog-model@1.1.4-next.0
33
+ - @backstage/config@1.0.5-next.0
34
+ - @backstage/errors@1.1.4-next.0
35
+ - @backstage/theme@0.2.16
36
+ - @backstage/plugin-catalog-common@1.0.9-next.0
37
+ - @backstage/plugin-permission-react@0.4.8-next.0
38
+ - @backstage/plugin-scaffolder-common@1.2.3-next.0
39
+
40
+ ## 1.8.0
41
+
42
+ ### Minor Changes
43
+
44
+ - edae17309e: Added props to override default Scaffolder page title, subtitle and pageTitleOverride.
45
+ Routes like `rootRouteRef`, `selectedTemplateRouteRef`, `nextRouteRef`, `nextSelectedTemplateRouteRef` were made public and can be used in your app (e.g. in custom TemplateCard component).
46
+
47
+ ### Patch Changes
48
+
49
+ - 580285787d: The `create` and `click` analytics events are now also captured on the "next" version of the component creation page.
50
+ - 4830a3569f: Basic analytics instrumentation is now in place:
51
+
52
+ - As users make their way through template steps, a `click` event is fired, including the step number.
53
+ - After a user clicks "Create" a `create` event is fired, including the name of the software that was just created. The template used at creation is set on the `entityRef` context key.
54
+
55
+ - 94b7ca9c6d: Updated to use `@rjsf` packages of version `^5.0.0-beta.12`
56
+ - 87840c8c6c: Fixed tiny grammar error in EntityNamePicker. The first letter of the description is now capitalized.
57
+ - 3b3fc3cc3c: Fix `formData` not being present in the `next` version
58
+ - b2bb48a6f4: Fix the return type for the `createNextScaffodlerFieldExtension` type as before it wasn't a component type for the extension
59
+ - f905853ad6: Prefer using `Link` from `@backstage/core-components` rather than material-UI.
60
+ - Updated dependencies
61
+ - @backstage/plugin-catalog-react@1.2.1
62
+ - @backstage/core-components@0.12.0
63
+ - @backstage/core-plugin-api@1.1.0
64
+ - @backstage/integration@1.4.0
65
+ - @backstage/catalog-model@1.1.3
66
+ - @backstage/types@1.0.1
67
+ - @backstage/integration-react@1.1.6
68
+ - @backstage/catalog-client@1.1.2
69
+ - @backstage/config@1.0.4
70
+ - @backstage/errors@1.1.3
71
+ - @backstage/theme@0.2.16
72
+ - @backstage/plugin-catalog-common@1.0.8
73
+ - @backstage/plugin-permission-react@0.4.7
74
+ - @backstage/plugin-scaffolder-common@1.2.2
75
+
3
76
  ## 1.8.0-next.1
4
77
 
5
78
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder",
3
- "version": "1.8.0-next.1",
3
+ "version": "1.9.0-next.0",
4
4
  "main": "../dist/index.esm.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }