Update CHANGELOG.md

This commit is contained in:
Christopher Jones 2015-09-02 22:42:30 +10:00
parent 3feb41ee06
commit 2827d6d948
1 changed files with 20 additions and 1 deletions

View File

@ -1,8 +1,27 @@
# Change Log # Change Log
## node-oracledb v1.1.0 (DD Mon YYYY )
- Enhanced pool.release() to drop the session if it is known to be unusable, allowing a new session to be created.
- Optimized query memory allocation to account for different database-to-client character set expansions.
- Fixed build warnings on Windows with VS 2015.
- Fixed truncation issue while fetching numbers as strings.
- Fixed AIX-specific failures with queries and RETURNING INTO clauses.
- Fixed a crash with NULL or uninitialized REF CURSOR OUT bind variables.
- Fixed potential memory leak when connecting throws an error.
- Added a check to throw an error sooner when a CURSOR type is used for IN or IN OUT binds. (Support is pending).
## node-oracledb v1.0.0 (17 Aug 2015) ## node-oracledb v1.0.0 (17 Aug 2015)
- Implemented the Stream interface for CLOB and BLOB types, adding support for LOB queries, inserts, and PL/SQL LOB bind variables. - Implemented Stream interface for CLOB and BLOB types, adding support for
LOB queries, inserts, and PL/SQL LOB bind variables
- Added `fetchAsString` and `execute()` option `fetchInfo` properties to allow numbers, dates and ROWIDs to be fetched as strings. - Added `fetchAsString` and `execute()` option `fetchInfo` properties to allow numbers, dates and ROWIDs to be fetched as strings.