create-app: bump sqlite3 to v5

This commit is contained in:
Patrik Oldsberg
2020-12-29 16:30:56 +01:00
parent 2c36df1ee7
commit fc6839f135
2 changed files with 17 additions and 1 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.
@@ -37,7 +37,7 @@
"pg": "^8.3.0",
{{/if}}
{{#if dbTypeSqlite}}
"sqlite3": "^4.2.0",
"sqlite3": "^5.0.0",
{{/if}}
"winston": "^3.2.1"
},