Version Packages

This commit is contained in:
github-actions[bot]
2023-04-18 12:36:06 +00:00
parent 9989092450
commit 6141c31839
574 changed files with 6530 additions and 1960 deletions
+54
View File
@@ -1,5 +1,59 @@
# @backstage/plugin-scaffolder
## 1.13.0
### Minor Changes
- b71f58d7d8f: Fixed bug in EntityPicker component that allowed for empty values when field is required. This bug occurs only after a user fills the EntityPicker field, clears it, and then continues to the next form step.
- cdab34fd9a2: scaffolder/next: removing the `routeRefs` and exporting the originals on `scaffolderPlugin.routes.x` instead
- e5ad1bd61ec: Allow `TemplateListPage` and `TemplateWizardPage` to be passed in as props
- 92cf86a4b5d: Added a `templateFilter` prop to the `<Router/>` component to allow for filtering of templates through a function.
- cf18c32934a: The Installed Actions page now shows details for nested objects and arrays
- 259d3407b9b: Move `CategoryPicker` from `scaffolder` into `scaffolder-react`
Move `ContextMenu` into `scaffolder-react` and rename it to `ScaffolderPageContextMenu`
### Patch Changes
- 7e1d900413a: `scaffolder/next`: Bump `@rjsf/*` dependencies to 5.5.2
- e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
- 57c1b4752fa: Allow use of `{ exists: true }` value inside filters to filter entities that has that key.
this example will filter all entities that has the annotation `someAnnotation` set to any value.
```yaml
ui:options:
catalogFilter:
kind: Group
metadata.annotations.someAnnotation: { exists: true }
```
- 7917cfccfc7: Fix some hard-coded white font colors in scaffolder
- 0435174b06f: Accessibility issues identified using lighthouse fixed.
- 7a6b16cc506: `scaffolder/next`: Bump `@rjsf/*` deps to 5.3.1
- 90dda42cfd2: bug: Invert `templateFilter` predicate to align with `Array.filter`
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
- f84fc7fd040: Updated dependency `@rjsf/validator-ajv8` to `5.3.0`.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 34dab7ee7f8: `scaffolder/next`: bump `rjsf` dependencies to `5.5.0`
- e0c6e8b9c3c: Update peer dependencies
- cf71c3744a5: scaffolder/next: Bump `@rjsf/*` dependencies to 5.6.0
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/plugin-scaffolder-react@1.3.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-permission-react@0.4.12
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
## 1.13.0-next.3
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-scaffolder",
"description": "The Backstage plugin that helps you create new things",
"version": "1.13.0-next.3",
"version": "1.13.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",