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