|
2 | 2 |
|
3 | 3 | ## node-oracledb v0.5.0 (5 May 2015)
|
4 | 4 |
|
5 |
| -- isAutoCommit attribute name changed to autoCommit |
| 5 | +- Changed the `isAutoCommit` attribute name to `autoCommit`. |
6 | 6 |
|
7 |
| -- isExternalAuth attribute name changed to externalAuth |
| 7 | +- Changed the `isExternalAuth` attribute name to `externalAuth`. |
8 | 8 |
|
9 |
| -- Added support for DML RETURNING bind variables |
| 9 | +- Added support for DML RETURNING bind variables. |
| 10 | + |
| 11 | +- Rectified the error message for invalid type properties. |
10 | 12 |
|
11 | 13 | ## node-oracledb v0.4.2 (28 Mar 2015)
|
12 | 14 |
|
13 | 15 | - node-oracledb is now officially installable from https://www.npmjs.com/package/oracledb
|
14 | 16 |
|
15 |
| -- Added metadata support. Query column names are now provided in the execute() callback result object. |
| 17 | +- Added metadata support. Query column names are now provided in the `execute()` callback result object. |
16 | 18 |
|
17 | 19 | - Require a more recent version of Node.js 0.10.
|
18 | 20 |
|
|
22 | 24 |
|
23 | 25 | - Added support for External Authentication.
|
24 | 26 |
|
25 |
| -- The isAutoCommit flags now works with query execution. This is useful in cases where multiple DML statements are executed followed by a SELECT statement. This can be used to avoid a round trip to the database that an explicit call to commit() would add. |
| 27 | +- The `isAutoCommit` flags now works with query execution. This is useful in cases where multiple DML statements are executed followed by a SELECT statement. This can be used to avoid a round trip to the database that an explicit call to `commit()` would add. |
26 | 28 |
|
27 | 29 | - Added AIX build support to package.json.
|
28 | 30 |
|
29 | 31 | - Improved errors messages when setting out of range property values.
|
30 | 32 |
|
31 |
| -- Fixed a bug: When terminate() of a connection pool fails because connections have not yet been closed, subsequent use of release() to close those connections no longer gives an error "ORA-24550: Signal Received". |
| 33 | +- Fixed a bug: When `terminate()` of a connection pool fails because connections have not yet been closed, subsequent use of `release()` to close those connections no longer gives an error "ORA-24550: Signal Received". |
32 | 34 |
|
33 | 35 | ## node-oracledb v0.3.1 (16 Feb 2015)
|
34 | 36 |
|
35 | 37 | - Added Windows build configuration.
|
36 | 38 |
|
37 | 39 | - Added Database Resident Connection Pooling (DRCP) support.
|
38 | 40 |
|
39 |
| -- Made an explicit connection release() do a rollback, to be consistent with the implicit release behavior. |
| 41 | +- Made an explicit connection `release()` do a rollback, to be consistent with the implicit release behavior. |
40 | 42 |
|
41 | 43 | - Made install on Linux look for Oracle libraries in a search order.
|
42 | 44 |
|
|
46 | 48 |
|
47 | 49 | - Added a compile error message "Oracle 11.2 or later client libraries are required for building" if attempting to build with older Oracle client libraries.
|
48 | 50 |
|
49 |
| -- Fixed setting the isAutoCommit property. |
| 51 | +- Fixed setting the `isAutoCommit` property. |
50 | 52 |
|
51 | 53 | - Fixed a crash using pooled connections on Windows.
|
52 | 54 |
|
|
0 commit comments