Version Packages

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
github-actions[bot]
2023-09-19 14:15:46 +00:00
committed by Patrik Oldsberg
parent 2aed4037b0
commit b228d7d9c2
657 changed files with 9248 additions and 2495 deletions
+34
View File
@@ -1,5 +1,39 @@
# @backstage/create-app
## 0.5.5
### Patch Changes
- 05508a9757d2: Updated the backend template to no longer create duplicate connection pools to plugins that use the task scheduler.
To apply this change in your own repository, perform the following small update:
```diff
// in packages/backend/src/index.ts
- const taskScheduler = TaskScheduler.fromConfig(config);
+ const taskScheduler = TaskScheduler.fromConfig(config, { databaseManager });
```
- a4c08241ad92: Switched the template to use TypeScript 5.2 by default.
- f8c8e8de37b6: Bumped create-app version.
- fc1a38bc5723: Bumped create-app version.
- 4606e005df5d: Added a `fix` scripts that calls the new `backstage-cli repo fix` command.
To apply this change to an existing app, make the following change to your root `package.json`:
```diff
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",
+ "fix": "backstage-cli repo fix",
"lint": "backstage-cli repo lint --since origin/master",
```
- 612594022245: Add a notification when `yarn install` is taking a long time.
- 8db70ecbb325: Updated Dockerfile to include `apt-get update` when installing the SQLite dependency
- 8cec7664e146: Removed `@types/node` dependency
- Updated dependencies
- @backstage/cli-common@0.1.12
## 0.5.5-next.3
### 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.5.5-next.3",
"version": "0.5.5",
"publishConfig": {
"access": "public"
},