Skip to content

Commit de62da9

Browse files
committed
Acknowledge contributions
1 parent 6207653 commit de62da9

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
`pool._logStats()` to display pool and queue statistics. Note: these may
1717
change in future.
1818

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).
2020

2121
- Allowed node-oracledb class instances to be tested with 'instanceof'.
2222

@@ -29,7 +29,7 @@
2929
## node-oracledb v1.6.0 (30 Jan 2016)
3030

3131
- 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).
3333

3434
- Fixed a LOB problem causing an uncaught error to be generated.
3535

@@ -46,9 +46,11 @@
4646

4747
- Added RPATH link option when building on OS X in preparation for future client.
4848

49+
- README updates (Kevin Sheedy)
50+
4951
## node-oracledb v1.5.0 (21 Dec 2015)
5052

51-
- Treat Oracle Database 'Success With Info' warnings as success.
53+
- Treat Oracle Database 'Success With Info' warnings as success (Francisco Trevino).
5254

5355
- Extend rollback-on-connection-release with 11g Oracle Clients to occur for all non-query executions. (Not needed with 12c clients).
5456

@@ -63,7 +65,7 @@
6365
## node-oracledb v1.4.0 (17 Nov 2015)
6466

6567
- 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.
6769

6870
- Fixed a cursor leak when statement execution fails.
6971

@@ -87,7 +89,7 @@
8789

8890
## node-oracledb v1.2.0 (25 Sep 2015)
8991

90-
- Added support for RAW data type.
92+
- Added support for RAW data type (Bruno Jouhier).
9193

9294
- Added a `type` property to the Lob class to distinguish CLOB and BLOB types.
9395

@@ -99,11 +101,11 @@
99101

100102
- Optimized CLOB memory allocation to account for different database-to-client character set expansions.
101103

102-
- Fixed a crash while reading a LOB from a closed connection
104+
- Fixed a crash while reading a LOB from a closed connection.
103105

104-
- Fixed a crash when selecting multiple rows with LOB values.
106+
- Fixed a crash when selecting multiple rows with LOB values (Bruno Jouhier).
105107

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).
107109

108110
- Fixed AIX-specific REF CURSOR related failures.
109111

@@ -119,6 +121,8 @@
119121

120122
- Fixed a typo in `examples/dbmsoutputgetline.js`
121123

124+
- Windows install instruction updates (Bill Christo)
125+
122126
## node-oracledb v1.1.0 (3 Sep 2015)
123127

124128
- Enhanced pool.release() to drop the session if it is known to be unusable, allowing a new session to be created.
@@ -188,7 +192,7 @@
188192

189193
## node-oracledb v0.6.0 (26 May 2015)
190194

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).
192196

193197
- Fixed naming of `autoCommit` in examples.
194198

@@ -206,7 +210,7 @@
206210

207211
## node-oracledb v0.4.2 (28 Mar 2015)
208212

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)
210214

211215
- Added metadata support. Query column names are now provided in the `execute()` callback result object.
212216

@@ -220,15 +224,17 @@
220224

221225
- 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.
222226

223-
- Added AIX build support to package.json.
227+
- Added AIX build support to package.json (Hannes Prirschl).
224228

225229
- Improved errors messages when setting out of range property values.
226230

227231
- 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".
228232

233+
- Some code refactoring (Krishna Narasimhan).
234+
229235
## node-oracledb v0.3.1 (16 Feb 2015)
230236

231-
- Added Windows build configuration.
237+
- Added Windows build configuration (Rinie Kervel).
232238

233239
- Added Database Resident Connection Pooling (DRCP) support.
234240

0 commit comments

Comments
 (0)