Skip to content

Commit 86c4026

Browse files
authored
[2.4.1] Prepare for 2.4.1 release (#232)
Add entries to CHANGELOG.md Bump version in package(-lock).json Signed-off-by: Mark Irish <[email protected]>
1 parent ccd0ffa commit 86c4026

File tree

4 files changed

+22
-12
lines changed

4 files changed

+22
-12
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [2.4.1] - 2021-10-19
5+
### Added
6+
- Simple binding path allows driver's that don't implement block fetch and column-wise binding to still be able to fetch results
7+
- Allow pool.query() to use query options
8+
9+
### Fixed
10+
- Update timeout definitions in README.md
11+
- Fixed multiple memory leaks
12+
- Fixed multiple segfaults
13+
14+
415
## [2.4.0] - 2021-07-06
516
### Added
617
- NEW Cursor class that is returned when new `cursor` query option is set to `true`. Cursor allows users to fetch partial result sets through calling `fetch`

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ An asynchronous interface for Node.js to unixODBC and its supported drivers.
2525

2626
This package is a native addon, built with C++ code using `node-addon-api`, a C++ wrapper for [N-API](https://nodejs.org/api/n-api.html). `node-addon-api` only supports versions of Node.js that are in LTS or newer. [A list of supported versions can be found on the Node.js website](https://nodejs.org/en/about/releases/). Current versions supported include:
2727

28-
* Node.js 10
2928
* Node.js 12
3029
* Node.js 14
3130
* Node.js 15

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "odbc",
33
"description": "unixodbc bindings for node",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"homepage": "http://github.com/markdirish/node-odbc/",
66
"main": "lib/odbc.js",
77
"types": "lib/odbc.d.ts",

0 commit comments

Comments
 (0)