Skip to content

Commit 5b7a16c

Browse files
authored
Drop Node 6, prep for new major (#30)
1 parent 45004f0 commit 5b7a16c

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: node_js
22

33
node_js:
4+
- "13"
45
- "12"
56
- "10"
67
- "8"
7-
- "6"
88

99
services:
1010
- msyql

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
Fastify MySQL connection plugin, with this you can share the same MySQL connection pool in every part of your server.
66
Under the hood the [mysql2](https://github.com/sidorares/node-mysql2) is used, the options that you pass to `register` will be passed to the MySQL pool builder.
77

8-
**Disclaimer:**
9-
**`MySQL 8.x` databases are not compatible !** This plugin is compatible with `MySQL 5.5.x`, `MySQL 5.7.x` and `MariaDB` databases.
10-
11-
128
## Install
139
```
1410
npm i fastify-mysql --save

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
"scripts": {
77
"test": "standard && tap test/*.test.js",
88
"mariadb": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mariadb:10.1",
9-
"mysql": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mysql:5.5",
10-
"mysql:5.7": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mysql:5.7"
9+
"mysql": "npm run mysql:8.0",
10+
"mysql:5.7": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mysql:5.7",
11+
"mysql:5.5": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mysql:5.5",
12+
"mysql:8.0": "docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=yes --rm mysql:8.0"
1113
},
1214
"repository": {
1315
"type": "git",

0 commit comments

Comments
 (0)