@backstage/plugin-scaffolder 1.3.0-next.1 → 1.4.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,90 @@
1
1
  # @backstage/plugin-scaffolder
2
2
 
3
+ ## 1.4.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3500c13a33: A new template editor has been added which is accessible via the context menu on the top right hand corner of the Create page. It allows you to load a template from a local directory, edit it with a preview, execute it in dry-run mode, and view the results. Note that the [File System Access API](https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API) must be supported by your browser for this to be available.
8
+
9
+ To support the new template editor the `ScaffolderApi` now has an optional `dryRun` method, which is implemented by the default `ScaffolderClient`.
10
+
11
+ ### Patch Changes
12
+
13
+ - 37539e29d8: The template editor now shows the cause of request errors that happen during a dry-run.
14
+ - 842282ecf9: Bumped `codemirror` dependencies to `v6.0.0`.
15
+ - 464bb0e6c8: The max content size for dry-run files has been reduced from 256k to 64k.
16
+ - a7c0b34d70: Swap usage of `MaterialTable` with `Table` from `core-components`
17
+ - Updated dependencies
18
+ - @backstage/catalog-model@1.1.0-next.0
19
+ - @backstage/core-components@0.9.6-next.0
20
+ - @backstage/integration@1.2.2-next.0
21
+ - @backstage/catalog-client@1.0.4-next.0
22
+ - @backstage/plugin-catalog-react@1.1.2-next.0
23
+ - @backstage/plugin-scaffolder-common@1.1.2-next.0
24
+ - @backstage/integration-react@1.1.2-next.0
25
+
26
+ ## 1.3.0
27
+
28
+ ### Minor Changes
29
+
30
+ - dc39366bdb: - Added a new page under `/create/tasks` to show tasks that have been run by the Scaffolder.
31
+ - Ability to filter these tasks by the signed in user, and all tasks.
32
+ - Added optional method to the `ScaffolderApi` interface called `listTasks` to get tasks with an required `filterByOwnership` parameter.
33
+ - 86a4a0f72d: Get data of other fields in Form from a custom field in template Scaffolder.
34
+ following:
35
+
36
+ ```tsx
37
+ const CustomFieldExtensionComponent = (props: FieldExtensionComponentProps<string[]>) => {
38
+ const { formData } = props.formContext;
39
+ ...
40
+ };
41
+
42
+ const CustomFieldExtension = scaffolderPlugin.provide(
43
+ createScaffolderFieldExtension({
44
+ name: ...,
45
+ component: CustomFieldExtensionComponent,
46
+ validation: ...
47
+ })
48
+ );
49
+ ```
50
+
51
+ - 72dfcbc8bf: Gerrit Integration: Implemented a `RepoUrlPicker` for Gerrit.
52
+ - f93af969cd: Added the ability to support running of templates that are not in the `default` namespace
53
+
54
+ ### Patch Changes
55
+
56
+ - ac0c7e45ee: Fixes review mask in `MultistepJsonForm` to work as documented. `show: true` no longer needed when mask is set.
57
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
58
+ - fd505f40c0: Handle binary files and files that are too large during dry-run content upload.
59
+ - Updated dependencies
60
+ - @backstage/plugin-catalog-react@1.1.1
61
+ - @backstage/plugin-catalog-common@1.0.3
62
+ - @backstage/core-components@0.9.5
63
+ - @backstage/integration@1.2.1
64
+ - @backstage/catalog-client@1.0.3
65
+ - @backstage/core-plugin-api@1.0.3
66
+ - @backstage/integration-react@1.1.1
67
+ - @backstage/catalog-model@1.0.3
68
+ - @backstage/plugin-permission-react@0.4.2
69
+ - @backstage/plugin-scaffolder-common@1.1.1
70
+
71
+ ## 1.3.0-next.2
72
+
73
+ ### Minor Changes
74
+
75
+ - dc39366bdb: - Added a new page under `/create/tasks` to show tasks that have been run by the Scaffolder.
76
+ - Ability to filter these tasks by the signed in user, and all tasks.
77
+ - Added optional method to the `ScaffolderApi` interface called `listTasks` to get tasks with an required `filterByOwnership` parameter.
78
+
79
+ ### Patch Changes
80
+
81
+ - ac0c7e45ee: Fixes review mask in `MultistepJsonForm` to work as documented. `show: true` no longer needed when mask is set.
82
+ - fd505f40c0: Handle binary files and files that are too large during dry-run content upload.
83
+ - Updated dependencies
84
+ - @backstage/plugin-catalog-common@1.0.3-next.1
85
+ - @backstage/core-components@0.9.5-next.2
86
+ - @backstage/integration@1.2.1-next.2
87
+
3
88
  ## 1.3.0-next.1
4
89
 
5
90
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder",
3
- "version": "1.3.0-next.1",
3
+ "version": "1.4.0-next.0",
4
4
  "main": "../dist/index.esm.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }