@backstage/plugin-scaffolder 1.2.0-next.3 → 1.3.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,78 @@
1
1
  # @backstage/plugin-scaffolder
2
2
 
3
+ ## 1.3.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.9.5-next.1
10
+ - @backstage/catalog-client@1.0.3-next.0
11
+ - @backstage/core-plugin-api@1.0.3-next.0
12
+ - @backstage/integration-react@1.1.1-next.1
13
+ - @backstage/integration@1.2.1-next.1
14
+ - @backstage/catalog-model@1.0.3-next.0
15
+ - @backstage/plugin-catalog-react@1.1.1-next.1
16
+ - @backstage/plugin-permission-react@0.4.2-next.0
17
+ - @backstage/plugin-catalog-common@1.0.3-next.0
18
+ - @backstage/plugin-scaffolder-common@1.1.1-next.0
19
+
20
+ ## 1.3.0-next.0
21
+
22
+ ### Minor Changes
23
+
24
+ - 86a4a0f72d: Get data of other fields in Form from a custom field in template Scaffolder.
25
+ following:
26
+
27
+ ```tsx
28
+ const CustomFieldExtensionComponent = (props: FieldExtensionComponentProps<string[]>) => {
29
+ const { formData } = props.formContext;
30
+ ...
31
+ };
32
+
33
+ const CustomFieldExtension = scaffolderPlugin.provide(
34
+ createScaffolderFieldExtension({
35
+ name: ...,
36
+ component: CustomFieldExtensionComponent,
37
+ validation: ...
38
+ })
39
+ );
40
+ ```
41
+
42
+ - 72dfcbc8bf: Gerrit Integration: Implemented a `RepoUrlPicker` for Gerrit.
43
+
44
+ ### Patch Changes
45
+
46
+ - Updated dependencies
47
+ - @backstage/plugin-catalog-react@1.1.1-next.0
48
+ - @backstage/core-components@0.9.5-next.0
49
+ - @backstage/integration@1.2.1-next.0
50
+ - @backstage/integration-react@1.1.1-next.0
51
+
52
+ ## 1.2.0
53
+
54
+ ### Minor Changes
55
+
56
+ - 06ab5218f9: Add new bitbucket(Cloud/Server) integrations to ScaffolderClient.
57
+
58
+ ### Patch Changes
59
+
60
+ - 8dce7d5244: Allow validation for custom field extension with type object
61
+ - 70817dafc0: Updated dependency `use-immer` to `^0.7.0`.
62
+ - ace230b599: Updated dependency `@codemirror/legacy-modes` to `^0.20.0`.
63
+ - Updated dependencies
64
+ - @backstage/core-components@0.9.4
65
+ - @backstage/integration@1.2.0
66
+ - @backstage/core-plugin-api@1.0.2
67
+ - @backstage/plugin-scaffolder-common@1.1.0
68
+ - @backstage/plugin-catalog-react@1.1.0
69
+ - @backstage/integration-react@1.1.0
70
+ - @backstage/config@1.0.1
71
+ - @backstage/catalog-client@1.0.2
72
+ - @backstage/catalog-model@1.0.2
73
+ - @backstage/plugin-catalog-common@1.0.2
74
+ - @backstage/plugin-permission-react@0.4.1
75
+
3
76
  ## 1.2.0-next.3
4
77
 
5
78
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder",
3
- "version": "1.2.0-next.3",
3
+ "version": "1.3.0-next.1",
4
4
  "main": "../dist/index.esm.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }