Skip to content

Commit 96fa500

Browse files
author
Dave Conway-Jones
committed
bump sqlite to latest library, which also drops nodejs <v12
1 parent c5bd7da commit 96fa500

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

storage/sqlite/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ Run the following command in your Node-RED user directory - typically `~/.node-r
1010

1111
npm i --unsafe-perm node-red-node-sqlite
1212

13-
**Note**: the install process requires a compile of native code. This can take 15-20 minutes on
14-
devices like a Raspberry Pi - please be prepared to wait a long time. Also if node.js is upgraded at any point you will need to rebuild the native part manually, for example.
13+
**Notes**:
14+
15+
- Version 1.x requires nodejs v12 or greater.
16+
- The install process requires a compile of native code. This can take 15-20 minutes on devices like a Raspberry Pi - please be prepared to wait a long time. Also if node.js is upgraded at any point you will need to rebuild the native part manually, for example.
1517

1618
cd ~/.node-red
1719
npm rebuild

storage/sqlite/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
{
22
"name": "node-red-node-sqlite",
3-
"version": "0.6.0",
3+
"version": "1.0.0",
44
"description": "A sqlite node for Node-RED",
55
"dependencies": {
6-
"sqlite3": "~4.2.0"
6+
"sqlite3": "^5.0.2"
77
},
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/node-red/node-red-nodes/tree/master/storage/sqlite"
1111
},
12+
"engines": {
13+
"node": ">=12"
14+
},
1215
"license": "Apache-2.0",
1316
"keywords": [
1417
"node-red",

0 commit comments

Comments
 (0)