chore: added some changeset

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-02-23 16:56:39 +01:00
parent 974a7917f1
commit 50e0242ac2
3 changed files with 17 additions and 5 deletions
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-scaffolder': patch
---
- Moved the `JSONSchema` type from `@backstage/catalog-model` to `JSONSchema7`.
- Renamed and prefixed some types ready for exporting.
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/plugin-scaffolder': minor
---
- **BREAKING** - `scaffolderApi.scaffold()` now takes one `options` argument instead of 3, the existing arguments should just be wrapped up in one object instead.
- **BREAKING** - `scaffolderApi.scaffold()` now returns an object instead of a single string for the job ID. It's now `{ taskId: string }`
- **BREAKING** - `scaffolderApi.getIntegrationsList` now returns an object `{ integrations: { type: string, title: string, host: string }[] }` instead of just an array.
+4 -5
View File
@@ -64,12 +64,11 @@ export const scaffolderPlugin = createPlugin({
},
});
export const EntityPickerExtension = createScaffolderFieldExtension({
component: EntityPicker,
name: 'EntityPicker',
});
export const EntityPickerFieldExtension = scaffolderPlugin.provide(
EntityPickerExtension,
createScaffolderFieldExtension({
component: EntityPicker,
name: 'EntityPicker',
}),
);
export const EntityNamePickerFieldExtension = scaffolderPlugin.provide(