Skip to content

Commit d7bcbe9

Browse files
committed
Code cleanup and update of release notes for 6.0.2 release
1 parent 5298350 commit d7bcbe9

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

doc/src/release_notes.rst

+20-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,16 @@ node-oracledb Release Notes
88
node-oracledb `v6.0.2 <https://github.com/oracle/node-oracledb/compare/v6.0.1...v6.0.2>`__ (TBD)
99
------------------------------------------------------------------------------------------------
1010

11+
Common Changes
12+
++++++++++++++
13+
14+
#) Test improvements.
15+
16+
#) Documentation improvements.
17+
1118
Thin Mode Changes
1219
+++++++++++++++++
1320

14-
#) Fixed bug with getting the value of a LOB stored in a DbObject
15-
`Issue #1571 <https://github.com/oracle/node-oracledb/issues/1571>`__.
16-
1721
#) Fixed bug connecting to databases with older 11g password verifiers.
1822

1923
#) Fixed bug when the length of a chunk inside a chunked read spans packets.
@@ -29,6 +33,19 @@ Thin Mode Changes
2933

3034
#) Fixed bug when fetching a large number of database objects.
3135

36+
#) Display a better error when using BLOBs in DbObjects in Thin mode.
37+
38+
#) Improved pool performance by optimizing deobfuscation logic for pool
39+
credentials.
40+
41+
#) Minor internal code cleanup.
42+
43+
Thick Mode Changes
44+
++++++++++++++++++
45+
46+
#) Fixed bug with getting the value of a LOB stored in a DbObject
47+
`Issue #1571 <https://github.com/oracle/node-oracledb/issues/1571>`__.
48+
3249

3350
node-oracledb `v6.0.1 <https://github.com/oracle/node-oracledb/compare/v6.0.0...v6.0.1>`__ (07 Jun 2023)
3451
--------------------------------------------------------------------------------------------------------

lib/thin/dbObject.js

-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,6 @@ class ThinDbObjectImpl extends DbObjectImpl {
378378
case types.DB_TYPE_TIMESTAMP_LTZ:
379379
case types.DB_TYPE_TIMESTAMP_TZ:
380380
return buf.readOracleDate(false);
381-
case types.DB_TYPE_BLOB:
382381
case types.DB_TYPE_BOOLEAN:
383382
return buf.readBool();
384383
case types.DB_TYPE_OBJECT:

0 commit comments

Comments
 (0)