[SEMVER-MAJOR] Drop support for Node.js 8.x

Signed-off-by: Miroslav Bajtoš <mbajtoss@gmail.com>
This commit is contained in:
Miroslav Bajtoš 2020-08-28 08:23:41 +02:00
parent eb72ea9aff
commit 54baf60b2d
No known key found for this signature in database
GPG Key ID: 6F2304BA9361C7E3
2 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,5 @@
language: node_js language: node_js
node_js: node_js:
- "8"
- "10" - "10"
- "12" - "12"
- "14" - "14"
@ -19,4 +18,4 @@ before_install:
- mysql -e "use mysql; update user set authentication_string=PASSWORD('test') where User='test'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;" - mysql -e "use mysql; update user set authentication_string=PASSWORD('test') where User='test'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
- mysql -e "GRANT ALL PRIVILEGES ON *.* TO 'test'@'localhost' WITH GRANT OPTION;FLUSH PRIVILEGES;" - mysql -e "GRANT ALL PRIVILEGES ON *.* TO 'test'@'localhost' WITH GRANT OPTION;FLUSH PRIVILEGES;"
- mysql -e "GRANT SUPER ON *.* TO 'test'@'localhost' IDENTIFIED BY 'test';FLUSH PRIVILEGES;" - mysql -e "GRANT SUPER ON *.* TO 'test'@'localhost' IDENTIFIED BY 'test';FLUSH PRIVILEGES;"

View File

@ -1,9 +1,9 @@
{ {
"name": "loopback-connector-mysql", "name": "loopback-connector-mysql",
"version": "5.4.4", "version": "6.0.0-dev",
"description": "MySQL connector for loopback-datasource-juggler", "description": "MySQL connector for loopback-datasource-juggler",
"engines": { "engines": {
"node": ">=8" "node": ">=10"
}, },
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {