Version Packages

This commit is contained in:
github-actions[bot]
2023-08-15 17:12:48 +00:00
parent 004768a3cc
commit aaf5cb2ca1
515 changed files with 6245 additions and 1533 deletions
+49
View File
@@ -1,5 +1,54 @@
# @backstage/plugin-scaffolder-backend
## 1.16.0
### Minor Changes
- e514aac3eac0: Introduce `each` property on action steps, allowing them to be ran repeatedly.
### Patch Changes
- 629cbd194a87: Use `coreServices.rootConfig` instead of `coreService.config`
- 349611126ae2: Removed the options from the alpha `scaffolderPlugin` export. To extend the scaffolder plugin you instead now use the available extension points, `scaffolderActionsExtensionPoint`, `scaffolderTaskBrokerExtensionPoint`, and `scaffolderTemplatingExtensionPoint`.
- 33c76caef72a: Added examples for the `fs:delete` and `fs:rename` actions
- e07a4914f621: Deprecated the following type exports, which have been moved to `@backstage/plugin-scaffolder-node` instead:
- `TemplateFilter`
- `TemplateGlobal`
- `TaskStatus`
- `TaskCompletionState`
- `SerializedTask`
- `TaskEventType`
- `SerializedTaskEvent`
- `TaskBrokerDispatchResult`
- `TaskBrokerDispatchOptions`
- `TaskContext`
- `TaskBroker`
- 0b1d775be05b: Adds examples to a few scaffolder actions.
- 88bc6e27a213: The `concurrentTasksLimit` option can now be configured via static configuration as well. Setting it to 0 will now also disable the task worker.
- 0f873325068d: Add examples for `github:repo:create` and `github:repo:push` scaffolder actions.
- 5c28ebc79fd6: Updated dependency `esbuild` to `^0.19.0`.
- d3b31a791eb1: Deprecated `executeShellCommand`, `RunCommandOptions`, and `fetchContents` from `@backstage/plugin-scaffolder-backend`, since they are useful for Scaffolder modules (who should not be importing from the plugin package itself). You should now import these from `@backstage/plugin-scaffolder-backend-node` instead. `RunCommandOptions` was renamed in the Node package as `ExecuteShellCommandOptions`, for consistency.
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-catalog-backend@1.12.0
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-scaffolder-node@0.2.0
- @backstage/plugin-catalog-node@1.4.1
- @backstage/plugin-auth-node@0.2.17
- @backstage/integration@1.6.0
- @backstage/backend-tasks@0.5.5
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/plugin-permission-node@0.7.11
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
## 1.15.2-next.2
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-scaffolder-backend",
"description": "The Backstage backend plugin that helps you create new things",
"version": "1.15.2-next.2",
"version": "1.16.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",