@backstage/plugin-scaffolder 1.2.0 → 1.3.0-next.2

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,71 @@
1
1
  # @backstage/plugin-scaffolder
2
2
 
3
+ ## 1.3.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - dc39366bdb: - Added a new page under `/create/tasks` to show tasks that have been run by the Scaffolder.
8
+ - Ability to filter these tasks by the signed in user, and all tasks.
9
+ - Added optional method to the `ScaffolderApi` interface called `listTasks` to get tasks with an required `filterByOwnership` parameter.
10
+
11
+ ### Patch Changes
12
+
13
+ - ac0c7e45ee: Fixes review mask in `MultistepJsonForm` to work as documented. `show: true` no longer needed when mask is set.
14
+ - fd505f40c0: Handle binary files and files that are too large during dry-run content upload.
15
+ - Updated dependencies
16
+ - @backstage/plugin-catalog-common@1.0.3-next.1
17
+ - @backstage/core-components@0.9.5-next.2
18
+ - @backstage/integration@1.2.1-next.2
19
+
20
+ ## 1.3.0-next.1
21
+
22
+ ### Patch Changes
23
+
24
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
25
+ - Updated dependencies
26
+ - @backstage/core-components@0.9.5-next.1
27
+ - @backstage/catalog-client@1.0.3-next.0
28
+ - @backstage/core-plugin-api@1.0.3-next.0
29
+ - @backstage/integration-react@1.1.1-next.1
30
+ - @backstage/integration@1.2.1-next.1
31
+ - @backstage/catalog-model@1.0.3-next.0
32
+ - @backstage/plugin-catalog-react@1.1.1-next.1
33
+ - @backstage/plugin-permission-react@0.4.2-next.0
34
+ - @backstage/plugin-catalog-common@1.0.3-next.0
35
+ - @backstage/plugin-scaffolder-common@1.1.1-next.0
36
+
37
+ ## 1.3.0-next.0
38
+
39
+ ### Minor Changes
40
+
41
+ - 86a4a0f72d: Get data of other fields in Form from a custom field in template Scaffolder.
42
+ following:
43
+
44
+ ```tsx
45
+ const CustomFieldExtensionComponent = (props: FieldExtensionComponentProps<string[]>) => {
46
+ const { formData } = props.formContext;
47
+ ...
48
+ };
49
+
50
+ const CustomFieldExtension = scaffolderPlugin.provide(
51
+ createScaffolderFieldExtension({
52
+ name: ...,
53
+ component: CustomFieldExtensionComponent,
54
+ validation: ...
55
+ })
56
+ );
57
+ ```
58
+
59
+ - 72dfcbc8bf: Gerrit Integration: Implemented a `RepoUrlPicker` for Gerrit.
60
+
61
+ ### Patch Changes
62
+
63
+ - Updated dependencies
64
+ - @backstage/plugin-catalog-react@1.1.1-next.0
65
+ - @backstage/core-components@0.9.5-next.0
66
+ - @backstage/integration@1.2.1-next.0
67
+ - @backstage/integration-react@1.1.1-next.0
68
+
3
69
  ## 1.2.0
4
70
 
5
71
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder",
3
- "version": "1.2.0",
3
+ "version": "1.3.0-next.2",
4
4
  "main": "../dist/index.esm.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }