Skip to content

Commit 0066849

Browse files
committed
Mention the invalid type property error message change
1 parent 99f9214 commit 0066849

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@
22

33
## node-oracledb v0.5.0 (5 May 2015)
44

5-
- isAutoCommit attribute name changed to autoCommit
5+
- Changed the `isAutoCommit` attribute name to `autoCommit`.
66

7-
- isExternalAuth attribute name changed to externalAuth
7+
- Changed the `isExternalAuth` attribute name to `externalAuth`.
88

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.
1012

1113
## node-oracledb v0.4.2 (28 Mar 2015)
1214

1315
- node-oracledb is now officially installable from https://www.npmjs.com/package/oracledb
1416

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.
1618

1719
- Require a more recent version of Node.js 0.10.
1820

@@ -22,21 +24,21 @@
2224

2325
- Added support for External Authentication.
2426

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.
2628

2729
- Added AIX build support to package.json.
2830

2931
- Improved errors messages when setting out of range property values.
3032

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".
3234

3335
## node-oracledb v0.3.1 (16 Feb 2015)
3436

3537
- Added Windows build configuration.
3638

3739
- Added Database Resident Connection Pooling (DRCP) support.
3840

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.
4042

4143
- Made install on Linux look for Oracle libraries in a search order.
4244

@@ -46,7 +48,7 @@
4648

4749
- 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.
4850

49-
- Fixed setting the isAutoCommit property.
51+
- Fixed setting the `isAutoCommit` property.
5052

5153
- Fixed a crash using pooled connections on Windows.
5254

0 commit comments

Comments
 (0)