Version Packages

This commit is contained in:
github-actions[bot]
2022-02-17 10:38:59 +00:00
parent db48253fa1
commit 408b0300cb
329 changed files with 3035 additions and 1907 deletions
+29
View File
@@ -1,5 +1,34 @@
# @backstage/create-app
## 0.4.20
### Patch Changes
- e725bb812f: Remove SearchContextProvider from `<Root />`
The `SidebarSearchModal` exported from `plugin-search` internally renders `SearchContextProvider`, so it can be removed from `Root.tsx`:
```diff
-import {
- SidebarSearchModal,
- SearchContextProvider,
-} from '@backstage/plugin-search';
+import { SidebarSearchModal } from '@backstage/plugin-search';
... omitted ...
<SidebarGroup label="Search" icon={<SearchIcon />} to="/search">
- <SearchContextProvider>
- <SidebarSearchModal />
- </SearchContextProvider>
+ <SidebarSearchModal />
</SidebarGroup>
```
- c77c5c7eb6: Added `backstage.role` to `package.json`
- Updated dependencies
- @backstage/cli-common@0.1.7
## 0.4.19
### Patch Changes
+2 -2
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/create-app",
"description": "A CLI that helps you create your own Backstage app",
"version": "0.4.19",
"version": "0.4.20",
"private": false,
"publishConfig": {
"access": "public"
@@ -33,7 +33,7 @@
"start": "nodemon --"
},
"dependencies": {
"@backstage/cli-common": "^0.1.6",
"@backstage/cli-common": "^0.1.7",
"chalk": "^4.0.0",
"commander": "^6.1.0",
"fs-extra": "9.1.0",