Skip to content

Commit 7e56902

Browse files
committed
Update CHANGELOG for node-oracledb 1.0
1 parent 92672ed commit 7e56902

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Change Log
22

3+
## node-oracledb v1.0.0 (17 Aug 2015)
4+
5+
- Implemented the Stream interface for CLOB and BLOB types, adding support for LOB queries, inserts, and PL/SQL LOB bind variables.
6+
7+
- Added `fetchAsString` and `execute()` option `fetchInfo` properties to allow numbers, dates and ROWIDs to be fetched as strings.
8+
9+
- Added support for binding DATE, TIMESTAMP and TIMESTAMP WITH LOCAL TIME ZONE as `DATE` to DML RETURNING (aka RETURNING INTO) `type`.
10+
11+
- The internal Oracle client character set is now always set to AL32UTF8.
12+
13+
- The test suite and example scripts database credentials can now be set via environment variables.
14+
15+
- Fixed issues with database-to-client character set conversion by allocating extra memory to allow for character expansion.
16+
17+
- Fixed a crash with `ResultSet` and unsupported column data types.
18+
19+
- Fixed a crash allocating memory for large `maxRows` values.
20+
21+
- Fixed a bug preventing closing of a `ResultSet` when `getRow()` or `getRows()` returned an error.
22+
23+
- Fixed date precision issues affecting insert and query.
24+
25+
- Fixed `BIND_OUT` bind `type` not defaulting to `STRING`.
26+
27+
- Fixed INSERT of a date when the SQL has a RETURNING INTO clause and the bind style is array format.
28+
29+
- Improved RETURNING INTO handling of unsupported types and sizes.
30+
31+
- Correctly throw an error when array and named bind syntaxes are mixed together.
32+
333
## node-oracledb v0.7.0 (20 Jul 2015)
434

535
- Added result set support for fetching large data sets.
@@ -14,7 +44,7 @@
1444

1545
- Fixed INSERT of a date when the SQL has a RETURNING INTO clause.
1646

17-
- Renumbered the values used by the Oracledb Constants
47+
- Renumbered the values used by the Oracledb Constants.
1848

1949
## node-oracledb v0.6.0 (26 May 2015)
2050

@@ -28,7 +58,7 @@
2858

2959
- Changed the `isExternalAuth` attribute name to `externalAuth`.
3060

31-
- Fixed outBinds array counting to not give empty array entries for IN binds.
61+
- Fixed `outBinds` array counting to not give empty array entries for IN binds.
3262

3363
- Added support for DML RETURNING bind variables.
3464

0 commit comments

Comments
 (0)