You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Changed the `isAutoCommit` attribute name to `autoCommit`.
6
+
7
+
- Changed the `isExternalAuth` attribute name to `externalAuth`.
8
+
9
+
- Fixed outBinds array counting to not give empty array entries for IN binds.
10
+
11
+
- Added support for DML RETURNING bind variables.
12
+
13
+
- Rectified the error message for invalid type properties.
14
+
15
+
## node-oracledb v0.4.2 (28 Mar 2015)
16
+
17
+
- node-oracledb is now officially installable from https://www.npmjs.com/package/oracledb
18
+
19
+
- Added metadata support. Query column names are now provided in the `execute()` callback result object.
20
+
21
+
- Require a more recent version of Node.js 0.10.
22
+
23
+
- Changed the default Instant Client directory on AIX from /opt/oracle/instantclient_12_1 to /opt/oracle/instantclient.
24
+
25
+
## node-oracledb v0.4.1 (13 Mar 2015)
26
+
27
+
- Added support for External Authentication.
28
+
29
+
- 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.
30
+
31
+
- Added AIX build support to package.json.
32
+
33
+
- Improved errors messages when setting out of range property values.
34
+
35
+
- 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".
- Made an explicit connection `release()` do a rollback, to be consistent with the implicit release behavior.
44
+
45
+
- Made install on Linux look for Oracle libraries in a search order.
46
+
47
+
- Added RPATH support on Linux.
48
+
49
+
- Changed default Oracle Instant client paths to /opt/oracle/instantclient and C:\oracle\instantclient
50
+
51
+
- 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.
52
+
53
+
- Fixed setting the `isAutoCommit` property.
54
+
55
+
- Fixed a crash using pooled connections on Windows.
56
+
57
+
- Fixed a crash querying object types.
58
+
59
+
- Fixed a crash doing a release after a failed terminate. (The Pool is still unusable - this will be fixed later)
60
+
61
+
## node-oracledb v0.2.4 (20 Jan 2015 - initial release)
0 commit comments