Skip to content

Commit 8efef6d

Browse files
authored
Merge pull request #1397 from sidorares/chore/deps
bump dependencies
2 parents 247ce10 + 3b3f5b5 commit 8efef6d

File tree

5 files changed

+3530
-1565
lines changed

5 files changed

+3530
-1565
lines changed

.eslintrc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": ["prettier", "eslint:recommended"],
2+
"extends": ["prettier", "eslint:recommended", "plugin:markdown/recommended"],
33
"parserOptions": {
44
"ecmaVersion": 2017
55
},
@@ -43,8 +43,7 @@
4343
"parser": "@typescript-eslint/parser",
4444
"extends": [
4545
"plugin:@typescript-eslint/recommended",
46-
"prettier",
47-
"prettier/@typescript-eslint"
46+
"prettier"
4847
],
4948
"plugins": ["@typescript-eslint"]
5049
}

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ before_install:
3131
# and lastest dev version
3232
node_js:
3333
- 12
34-
- 13
3534
- 14
35+
- 16
3636

3737
env:
3838
# use env `DOCKER_IMAGE to specify a docker image.
@@ -49,6 +49,7 @@ env:
4949
# - DOCKER_IMAGE=datagrip/mysql:5.1
5050
#
5151
# add more or remove any below
52+
- DOCKER_IMAGE=mysql:8.0.22
5253
- DOCKER_IMAGE=mysql:8.0.18
5354
- DOCKER_IMAGE=mysql:8.0.18 MYSQL_USE_TLS=1
5455
- DOCKER_IMAGE=mysql:8.0.18 MYSQL_USE_COMPRESSION=1
@@ -72,15 +73,15 @@ jobs:
7273
include:
7374
- &lint-staging
7475
stage: lint
75-
node_js: 8
76+
node_js: 12
7677
env: # no env
7778
script: &lint
7879
- yarn --version
7980
- yarn run lint
8081
- <<: *lint-staging
81-
node_js: 10
82+
node_js: 14
8283
- <<: *lint-staging
83-
node_js: 12
84+
node_js: 16
8485
# - stage: test
8586
# name: test handshake reducible/mysql:5.0.95
8687
# node_js: 12
@@ -91,7 +92,7 @@ jobs:
9192
# for later version, use this test handshake with auth 41
9293
- stage: test
9394
name: test handshake datagrip/mysql:5.1
94-
node_js: 12
95+
node_js: 14
9596
env: DOCKER_IMAGE=datagrip/mysql:5.1 MYSQL_PASSWORD=my-secret-pw FILTER=5.1only
9697

9798
script:

appveyor.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ environment:
77
LINT: 0
88

99
matrix:
10-
- nodejs_version: '11'
11-
LINT: 0
1210
- nodejs_version: '12'
1311
LINT: 0
14-
- nodejs_version: '13'
15-
LINT: 1
1612
- nodejs_version: '14'
13+
LINT: 0
14+
- nodejs_version: '16'
1715
LINT: 1
1816

1917
services:

0 commit comments

Comments
 (0)