|
16 | 16 | `pool._logStats()` to display pool and queue statistics. Note: these may
|
17 | 17 | change in future.
|
18 | 18 |
|
19 |
| -- Added "bind by position" syntax for PL/SQL Index-by array binds. |
| 19 | +- Added "bind by position" syntax for PL/SQL Index-by array binds (Dieter Oberkofler). |
20 | 20 |
|
21 | 21 | - Allowed node-oracledb class instances to be tested with 'instanceof'.
|
22 | 22 |
|
|
29 | 29 | ## node-oracledb v1.6.0 (30 Jan 2016)
|
30 | 30 |
|
31 | 31 | - Added support for binding PL/SQL Collection Associative Array
|
32 |
| - (Index-by) types containing numbers and strings. |
| 32 | + (Index-by) types containing numbers and strings (Dieter Oberkofler). |
33 | 33 |
|
34 | 34 | - Fixed a LOB problem causing an uncaught error to be generated.
|
35 | 35 |
|
|
46 | 46 |
|
47 | 47 | - Added RPATH link option when building on OS X in preparation for future client.
|
48 | 48 |
|
| 49 | +- README updates (Kevin Sheedy) |
| 50 | + |
49 | 51 | ## node-oracledb v1.5.0 (21 Dec 2015)
|
50 | 52 |
|
51 |
| -- Treat Oracle Database 'Success With Info' warnings as success. |
| 53 | +- Treat Oracle Database 'Success With Info' warnings as success (Francisco Trevino). |
52 | 54 |
|
53 | 55 | - Extend rollback-on-connection-release with 11g Oracle Clients to occur for all non-query executions. (Not needed with 12c clients).
|
54 | 56 |
|
|
63 | 65 | ## node-oracledb v1.4.0 (17 Nov 2015)
|
64 | 66 |
|
65 | 67 | - Upgraded NAN dependency to version 2 allowing node-oracledb to build
|
66 |
| - with Node 0.10, 0.12, 4 and 5. Note: a compiler supporting C++11 is required to build with Node 4.2 and 5. |
| 68 | + with Node 0.10, 0.12, 4 and 5 (Richard Natal). Note: a compiler supporting C++11 is required to build with Node 4 and 5. |
67 | 69 |
|
68 | 70 | - Fixed a cursor leak when statement execution fails.
|
69 | 71 |
|
|
87 | 89 |
|
88 | 90 | ## node-oracledb v1.2.0 (25 Sep 2015)
|
89 | 91 |
|
90 |
| -- Added support for RAW data type. |
| 92 | +- Added support for RAW data type (Bruno Jouhier). |
91 | 93 |
|
92 | 94 | - Added a `type` property to the Lob class to distinguish CLOB and BLOB types.
|
93 | 95 |
|
|
99 | 101 |
|
100 | 102 | - Optimized CLOB memory allocation to account for different database-to-client character set expansions.
|
101 | 103 |
|
102 |
| -- Fixed a crash while reading a LOB from a closed connection |
| 104 | +- Fixed a crash while reading a LOB from a closed connection. |
103 | 105 |
|
104 |
| -- Fixed a crash when selecting multiple rows with LOB values. |
| 106 | +- Fixed a crash when selecting multiple rows with LOB values (Bruno Jouhier). |
105 | 107 |
|
106 |
| -- Corrected the order of Stream 'end' and 'close' events when reading a LOB. |
| 108 | +- Corrected the order of Stream 'end' and 'close' events when reading a LOB (Bruno Jouhier). |
107 | 109 |
|
108 | 110 | - Fixed AIX-specific REF CURSOR related failures.
|
109 | 111 |
|
|
119 | 121 |
|
120 | 122 | - Fixed a typo in `examples/dbmsoutputgetline.js`
|
121 | 123 |
|
| 124 | +- Windows install instruction updates (Bill Christo) |
| 125 | + |
122 | 126 | ## node-oracledb v1.1.0 (3 Sep 2015)
|
123 | 127 |
|
124 | 128 | - Enhanced pool.release() to drop the session if it is known to be unusable, allowing a new session to be created.
|
|
188 | 192 |
|
189 | 193 | ## node-oracledb v0.6.0 (26 May 2015)
|
190 | 194 |
|
191 |
| -- Node-oracledb now builds with Node.js 0.10, Node.js 0.12 and io.js. |
| 195 | +- Node-oracledb now builds with Node.js 0.10, Node.js 0.12 and io.js (Richard Natal). |
192 | 196 |
|
193 | 197 | - Fixed naming of `autoCommit` in examples.
|
194 | 198 |
|
|
206 | 210 |
|
207 | 211 | ## node-oracledb v0.4.2 (28 Mar 2015)
|
208 | 212 |
|
209 |
| -- node-oracledb is now officially installable from https://www.npmjs.com/package/oracledb |
| 213 | +- node-oracledb is now officially installable from https://www.npmjs.com/package/oracledb (Tim Branyen) |
210 | 214 |
|
211 | 215 | - Added metadata support. Query column names are now provided in the `execute()` callback result object.
|
212 | 216 |
|
|
220 | 224 |
|
221 | 225 | - 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.
|
222 | 226 |
|
223 |
| -- Added AIX build support to package.json. |
| 227 | +- Added AIX build support to package.json (Hannes Prirschl). |
224 | 228 |
|
225 | 229 | - Improved errors messages when setting out of range property values.
|
226 | 230 |
|
227 | 231 | - 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".
|
228 | 232 |
|
| 233 | +- Some code refactoring (Krishna Narasimhan). |
| 234 | + |
229 | 235 | ## node-oracledb v0.3.1 (16 Feb 2015)
|
230 | 236 |
|
231 |
| -- Added Windows build configuration. |
| 237 | +- Added Windows build configuration (Rinie Kervel). |
232 | 238 |
|
233 | 239 | - Added Database Resident Connection Pooling (DRCP) support.
|
234 | 240 |
|
|
0 commit comments