Version Packages

This commit is contained in:
github-actions[bot]
2022-03-17 09:02:30 +00:00
parent dd7cc848d5
commit 0bc1611d6e
327 changed files with 3178 additions and 1766 deletions
+32
View File
@@ -1,5 +1,37 @@
# @backstage/plugin-scaffolder
## 1.0.0
### Major Changes
- b58c70c223: This package has been promoted to v1.0! To understand how this change affects the package, please check out our [versioning policy](https://backstage.io/docs/overview/versioning-policy).
### Minor Changes
- 9a408928a1: **BREAKING**: Removed the unused `titleComponent` property of `groups` passed to the `ScaffolderPage`. The property was already ignored, but existing usage should migrated to use the `title` property instead, which now accepts any `ReactNode`.
### Patch Changes
- 9b7e361783: Remove beta labels
- a422d7ce5e: chore(deps): bump `@testing-library/react` from 11.2.6 to 12.1.3
- 20a262c214: The `ScaffolderPage` now uses the `CatalogFilterLayout`, which means the filters are put in a drawer on smaller screens.
- f24ef7864e: Minor typo fixes
- d8716924d6: Implement a template preview page (`/create/preview`) to test creating form UIs
- Updated dependencies
- @backstage/core-components@0.9.2
- @backstage/core-plugin-api@1.0.0
- @backstage/integration-react@1.0.0
- @backstage/plugin-catalog-react@1.0.0
- @backstage/plugin-permission-react@0.3.4
- @backstage/catalog-model@1.0.0
- @backstage/plugin-scaffolder-common@1.0.0
- @backstage/integration@1.0.0
- @backstage/catalog-client@1.0.0
- @backstage/config@1.0.0
- @backstage/errors@1.0.0
- @backstage/types@1.0.0
- @backstage/plugin-catalog-common@1.0.0
## 0.15.0
### Minor Changes
+19 -19
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-scaffolder",
"description": "The Backstage plugin that helps you create new things",
"version": "0.15.0",
"version": "1.0.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -34,20 +34,20 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/catalog-client": "^0.9.0",
"@backstage/catalog-model": "^0.13.0",
"@backstage/config": "^0.1.15",
"@backstage/core-components": "^0.9.1",
"@backstage/core-plugin-api": "^0.8.0",
"@backstage/errors": "^0.2.2",
"@backstage/integration": "^0.8.0",
"@backstage/integration-react": "^0.1.25",
"@backstage/plugin-catalog-common": "^0.2.2",
"@backstage/plugin-catalog-react": "^0.9.0",
"@backstage/plugin-permission-react": "^0.3.3",
"@backstage/plugin-scaffolder-common": "^0.3.0",
"@backstage/catalog-client": "^1.0.0",
"@backstage/catalog-model": "^1.0.0",
"@backstage/config": "^1.0.0",
"@backstage/core-components": "^0.9.2",
"@backstage/core-plugin-api": "^1.0.0",
"@backstage/errors": "^1.0.0",
"@backstage/integration": "^1.0.0",
"@backstage/integration-react": "^1.0.0",
"@backstage/plugin-catalog-common": "^1.0.0",
"@backstage/plugin-catalog-react": "^1.0.0",
"@backstage/plugin-permission-react": "^0.3.4",
"@backstage/plugin-scaffolder-common": "^1.0.0",
"@backstage/theme": "^0.2.15",
"@backstage/types": "^0.1.3",
"@backstage/types": "^1.0.0",
"@codemirror/legacy-modes": "^0.19.0",
"@codemirror/panel": "^0.19.1",
"@codemirror/stream-parser": "^0.19.6",
@@ -78,11 +78,11 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.15.2",
"@backstage/core-app-api": "^0.6.0",
"@backstage/dev-utils": "^0.2.25",
"@backstage/plugin-catalog": "^0.10.0",
"@backstage/test-utils": "^0.3.0",
"@backstage/cli": "^0.16.0",
"@backstage/core-app-api": "^1.0.0",
"@backstage/dev-utils": "^1.0.0",
"@backstage/plugin-catalog": "^1.0.0",
"@backstage/test-utils": "^1.0.0",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^7.0.2",