Skip to content

Commit

Permalink
feat!: drop support for node < 16
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensby committed Aug 7, 2023
1 parent 6017740 commit 03fbbc0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
IMAGE_TAG: ${{ matrix.sql-version == 'edge' && 'latest' || format('{0}-latest', matrix.sql-version) }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20.x]
sql-version: [2017, 2019, 2022]
steps:
- name: Checkout code
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
strategy:
matrix:
arch: [x64, x86]
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20.x]
sql-version: [2017, 2019, 2022]
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ image:
- Visual Studio 2015
environment:
matrix:
- nodejs_version: "14"
- nodejs_version: "16"
- nodejs_version: "18"
- nodejs_version: "20"

install:
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"standard": "^17.0.0"
},
"engines": {
"node": ">=10"
"node": ">=16"
},
"files": [
"lib/",
Expand Down

0 comments on commit 03fbbc0

Please sign in to comment.