Skip to content

Commit 7039a09

Browse files
committed
Documentation and test updates
1 parent abbbaf7 commit 7039a09

File tree

2 files changed

+20
-11
lines changed

2 files changed

+20
-11
lines changed

doc/src/release_notes.rst

+19-10
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,22 @@ node-oracledb `v6.6.0 <https://github.com/oracle/node-oracledb/compare/v6.5.1...
1313
Common Changes
1414
++++++++++++++
1515

16-
#) Added support for Centralized Configuration Providers (Azure App Configuration Store and OCI
17-
Object Storage).
18-
Node-oracledb extracts configuration information from the the supported provider and uses it to
16+
#) Added support for Centralized Configuration Providers (Azure App
17+
Configuration Store and OCI Object Storage). Node-oracledb extracts
18+
configuration information from the supported provider and uses it to
1919
connect to the database.
2020

21+
#) Added support for ``oracledb.DB_TYPE_BFILE`` data type.
22+
23+
#) Test and documentation updates.
24+
2125
Thin Mode Changes
2226
+++++++++++++++++
2327

24-
#) Added support for in-memory wallet by adding a new parameter ``walletContent``
25-
of the type ``string`` which will let users pass the wallet content directly instead
26-
of storing and reading it up from a file.
27-
`Issue #1671 <https://github.com/oracle/node-oracledb/issues/
28+
#) Added support for in-memory wallet by adding a new parameter
29+
``walletContent`` of type ``string`` that will allow users to pass the
30+
wallet content directly instead of storing and reading it up from a file.
31+
See `Issue #1671 <https://github.com/oracle/node-oracledb/issues/
2832
1671>`__.
2933

3034
#) Added support to use ``IFILE`` parameter to embed custom
@@ -48,7 +52,14 @@ Thin Mode Changes
4852
Thick Mode Changes
4953
+++++++++++++++++++
5054

51-
#) Fixed bug that causes Two-Phase Commit `tpcRecover` execution to fail.
55+
#) Fixed bug that causes Two-Phase Commit :meth:`connection.tpcRecover()`
56+
execution to fail.
57+
58+
#) Added binary for the macOS ARM64 platform.
59+
60+
#) Corrected memory leak when dequeuing messages with JSON payloads
61+
(`ODPI-C change
62+
<https://github.com/oracle/odpi/commit/00b16209408ebc827a3a9b256cf9ad3f79e1ddc1>`__).
5263

5364
node-oracledb `v6.5.1 <https://github.com/oracle/node-oracledb/compare/v6.5.0...v6.5.1>`__ (23 May 2024)
5465
---------------------------------------------------------------------------------------------------------
@@ -58,8 +69,6 @@ Common Changes
5869

5970
#) Test and documentation updates.
6071

61-
#) Added support for ``oracledb.DB_TYPE_BFILE`` data type.
62-
6372
Thin Mode Changes
6473
+++++++++++++++++
6574

test/dataTypeJson.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ describe('244.dataTypeJson.js', function() {
232232
binds.push([19, jsonVal19]);
233233
binds.push([20, jsonVal20]);
234234
}
235-
if (testsUtil.isVectorBinaryRunnable) {
235+
if (await testsUtil.isVectorBinaryRunnable()) {
236236
binds.push([21, jsonVal21]);
237237
}
238238
binds.forEach((element, index) => {

0 commit comments

Comments
 (0)