Merge pull request #3872 from backstage/rugvip/sqlzero

create-app, catalog-backend: bump sqlite3 to v5 in template and remove from catalog-backend
This commit is contained in:
Patrik Oldsberg
2021-01-07 10:55:33 +01:00
committed by GitHub
4 changed files with 23 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
---
'@backstage/create-app': patch
---
Bump `sqlite3` to v5.
To apply this change to an existing app, change the version of `sqlite3` in the `dependencies` of `packages/backend/package.json`:
```diff
"pg": "^8.3.0",
- "sqlite3": "^4.2.0",
+ "sqlite3": "^5.0.0",
"winston": "^3.2.1"
```
Note that the `sqlite3` dependency may not be preset if you chose to use PostgreSQL when creating the app.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': patch
---
Remove `sqlite3` as a dependency. You may need to add `sqlite3` as a dependency of your backend if you were relying on this indirect dependency.