Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-02-02 14:28:47 +00:00
parent e7f38e3546
commit 51eecb3f03
154 changed files with 1015 additions and 540 deletions
+27
View File
@@ -1,5 +1,32 @@
# @backstage/create-app
## 0.4.18-next.1
### Patch Changes
- 5bd0ce9e62: chore(deps): bump `inquirer` from 7.3.3 to 8.2.0
- ba59832aed: Permission the `catalog-import` route
The following changes are **required** if you intend to add permissions to your existing app.
Use the `PermissionedRoute` for `CatalogImportPage` instead of the normal `Route`:
```diff
// packages/app/src/App.tsx
...
+ import { PermissionedRoute } from '@backstage/plugin-permission-react';
+ import { catalogEntityCreatePermission } from '@backstage/plugin-catalog-common';
...
- <Route path="/catalog-import" element={<CatalogImportPage />} />
+ <PermissionedRoute
+ path="/catalog-import"
+ permission={catalogEntityCreatePermission}
+ element={<CatalogImportPage />}
+ />
```
## 0.4.18-next.0
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/create-app",
"description": "A CLI that helps you create your own Backstage app",
"version": "0.4.18-next.0",
"version": "0.4.18-next.1",
"private": false,
"publishConfig": {
"access": "public"