Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-09-27 10:57:53 +00:00
parent c3e68fe249
commit 4e94720142
330 changed files with 4623 additions and 174 deletions
+29
View File
@@ -1,5 +1,34 @@
# @backstage/create-app
## 0.4.32-next.0
### Patch Changes
- 58c2264325: Newly created Backstage repositories now use the stable version 6 of
`react-router`, just like the main repo does. Please let us know if you find any
issues with this.
Migrating to the stable version of `react-router` is optional for the time
being. But if you want to do the same for your existing repository, please
follow [this
guide](https://backstage.io/docs/tutorials/react-router-stable-migration).
- e05e0f021b: Update versions of packages used in the create-app template, to match those in the main repo
- 52f25858a8: Added `*.session.sql` Visual Studio Code database functionality files to `.gitignore` in the default template. This is optional but potentially helpful if your developers use Visual Studio Code; you can add a line with that exact value to your own root `.gitignore` if you want the same.
- 6d00e80146: Updated the root `test` scripts to use `backstage-cli repo test`.
To apply this change to an existing app, make the following change to the root `package.json`:
```diff
- "test": "backstage-cli test",
- "test:all": "lerna run test -- --coverage",
+ "test": "backstage-cli repo test",
+ "test:all": "backstage-cli repo test --coverage",
```
- Updated dependencies
- @backstage/cli-common@0.1.10
## 0.4.31
### 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.31",
"version": "0.4.32-next.0",
"publishConfig": {
"access": "public"
},