Skip to content

Commit

Permalink
Merge pull request #1547 from dhensby/pulls/tedious-upgrade
Browse files Browse the repository at this point in the history
feat!: upgrade tedious, drop node <= 14 support
dhensby authored Sep 6, 2023
2 parents cb6f8e2 + 825692e commit 4688d61
Showing 4 changed files with 155 additions and 84 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04]
node: [14.x, 16.x, 18.x]
node: [16.x, 18.x, 20.x]
sqlserver: [2017, 2019, 2022]
steps:
- name: Checkout code
@@ -115,7 +115,7 @@ jobs:
strategy:
matrix:
os: [windows-2019, windows-2022]
node: [14.x, 16.x, 18.x]
node: [16.x, 18.x, 20.x]
sqlserver: [2008, 2012, 2014, 2016, 2017, 2019, 2022]
# These sqlserver versions don't work on windows-2022 (at the moment)
exclude:
11 changes: 10 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
v9.3.1 (2023-09-05)
v10.0.0 (2023-09-06)
-------------------
[change] Upgrade tedious to v16 ([#1547](https://github.com/tediousjs/node-mssql/pull/1547))
[removed] Removed NodeJS 14 support ([#1547](https://github.com/tediousjs/node-mssql/pull/1547))

v9.3.2 (2023-09-06)
-------------------
[fix] Fix bug with msnodesqlv8 connection strings ((#1525)[https://github.com/tediousjs/node-mssql/pull/1525])

v9.3.1 (2023-09-05)
-------------------
Revoked - contained breaking changes

v9.3.0 (2023-09-04)
-------------------
[new] Add AAD connection support to connection strings ((#1461)[https://github.com/tediousjs/node-mssql/pull/1461])
222 changes: 142 additions & 80 deletions package-lock.json
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@
"debug": "^4.3.3",
"rfdc": "^1.3.0",
"tarn": "^3.0.2",
"tedious": "^15.0.1"
"tedious": "^16.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",

0 comments on commit 4688d61

Please sign in to comment.