Skip to content

Commit ed023a5

Browse files
authored
Merge pull request #1713 from dhensby/pulls/changelog
docs: update CHANGELOG and README to include changes
2 parents e259796 + e465447 commit ed023a5

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

CHANGELOG.txt

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
1+
# Changelog
2+
3+
The changelog is not currently maintained. Please see the [releases](https://github.com/tediousjs/node-mssql/releases) for change details.
4+
5+
v11.0.1 (2024-07-03)
6+
--------------------
7+
[fix] handle bigint types separately to int to avoid TypeError with BigInt param ([#1677](https://github.com/tediousjs/node-mssql/pull/1677))
8+
9+
v11.0.0 (2024-06-19)
10+
--------------------
11+
[removed] Removed NodeJS 16 support ([#1667](https://github.com/tediousjs/node-mssql/pull/1667))
12+
[feat] support use of native bigint from tedious ([#1664](https://github.com/tediousjs/node-mssql/pull/1664))
13+
14+
v10.0.4 (2024-06-18)
15+
--------------------
16+
[fix] revert accidental upgrade of tedious & bigint support ([#1665](https://github.com/tediousjs/node-mssql/pull/1665))
17+
18+
v10.0.3 (2024-06-18)
19+
--------------------
20+
[fix] support use of native bigint from tedious ([#1664](https://github.com/tediousjs/node-mssql/pull/1664))
21+
22+
v10.0.2 (2024-01-16)
23+
--------------------
24+
[fix] from now _acquire return always a promise to avoid uncatchable exception ([#1592](https://github.com/tediousjs/node-mssql/pull/1592))
25+
26+
v10.0.1 (2023-09-12)
27+
--------------------
28+
[perf] use `node:` prefix to bypass require.cache call for builtins ([#1550](https://github.com/tediousjs/node-mssql/pull/1550))
29+
130
v10.0.0 (2023-09-06)
2-
-------------------
31+
--------------------
332
[change] Upgrade tedious to v16 ([#1547](https://github.com/tediousjs/node-mssql/pull/1547))
433
[removed] Removed NodeJS 14 support ([#1547](https://github.com/tediousjs/node-mssql/pull/1547))
534

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2120,6 +2120,16 @@ request.query('select @myval as myval', (err, result) => {
21202120
- If you're facing problems with connecting SQL Server 2000, try setting the default TDS version to 7.1 with `config.options.tdsVersion = '7_1'` ([issue](https://github.com/tediousjs/node-mssql/issues/36))
21212121
- If you're executing a statement longer than 4000 chars on SQL Server 2000, always use [batch](#batch-batch-callback) instead of [query](#query-command-callback) ([issue](https://github.com/tediousjs/node-mssql/issues/68))
21222122

2123+
## 10.x to 11.x changes
2124+
2125+
- Upgraded to tedious version 18
2126+
- Dropped support for Node version <=16
2127+
2128+
## 9.x to 10.x changes
2129+
2130+
- Upgraded to tedious version 16
2131+
- Dropped support for Node version <= 14
2132+
21232133
## 8.x to 9.x changes
21242134

21252135
- Upgraded to tedious version 15

0 commit comments

Comments
 (0)