Skip to content

Commit

Permalink
Documentation and test updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sharadraju committed Jul 15, 2024
1 parent abbbaf7 commit 7039a09
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
29 changes: 19 additions & 10 deletions doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,22 @@ node-oracledb `v6.6.0 <https://github.com/oracle/node-oracledb/compare/v6.5.1...
Common Changes
++++++++++++++

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

#) Added support for ``oracledb.DB_TYPE_BFILE`` data type.

#) Test and documentation updates.

Thin Mode Changes
+++++++++++++++++

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

#) Added support to use ``IFILE`` parameter to embed custom
Expand All @@ -48,7 +52,14 @@ Thin Mode Changes
Thick Mode Changes
+++++++++++++++++++

#) Fixed bug that causes Two-Phase Commit `tpcRecover` execution to fail.
#) Fixed bug that causes Two-Phase Commit :meth:`connection.tpcRecover()`
execution to fail.

#) Added binary for the macOS ARM64 platform.

#) Corrected memory leak when dequeuing messages with JSON payloads
(`ODPI-C change
<https://github.com/oracle/odpi/commit/00b16209408ebc827a3a9b256cf9ad3f79e1ddc1>`__).

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

#) Test and documentation updates.

#) Added support for ``oracledb.DB_TYPE_BFILE`` data type.

Thin Mode Changes
+++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion test/dataTypeJson.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ describe('244.dataTypeJson.js', function() {
binds.push([19, jsonVal19]);
binds.push([20, jsonVal20]);
}
if (testsUtil.isVectorBinaryRunnable) {
if (await testsUtil.isVectorBinaryRunnable()) {
binds.push([21, jsonVal21]);
}
binds.forEach((element, index) => {
Expand Down

0 comments on commit 7039a09

Please sign in to comment.