Prepare for 6.5 release and Oracle Database 23ai

This commit is contained in:
Sharad Chandran R 2024-05-02 21:58:01 +05:30
parent 0be45d8d6e
commit bf5e698149
5 changed files with 6 additions and 8 deletions

View File

@ -1,12 +1,10 @@
# node-oracledb version 6.5.0-dev # node-oracledb version 6.5.0
**This release is under development and information may be incomplete**
The node-oracledb add-on for Node.js powers high performance Oracle Database The node-oracledb add-on for Node.js powers high performance Oracle Database
applications. Applications can be written in TypeScript, or directly in applications. Applications can be written in TypeScript, or directly in
JavaScript. JavaScript.
Use node-oracledb 6.5.0-dev to connect Node.js 14.6, or later, to Oracle Use node-oracledb 6.5.0 to connect Node.js 14.6, or later, to Oracle
Database. Older versions of node-oracledb may work with older versions of Database. Older versions of node-oracledb may work with older versions of
Node.js. Node.js.

View File

@ -658,7 +658,7 @@ function transformErr(err, fnOpt) {
err.code = err.message.substr(0, pos); err.code = err.message.substr(0, pos);
/* add Oracle Database Error Help Portal URL for database error /* add Oracle Database Error Help Portal URL for database error
messages, but only in thin mode since this is done messages, but only in thin mode since this is done
automatically in thick mode with Oracle Client 23c and higher automatically in thick mode with Oracle Client 23ai and higher
*/ */
const settings = require('./settings.js'); const settings = require('./settings.js');
if (err.errorNum && settings.thin) { if (err.errorNum && settings.thin) {

View File

@ -32,5 +32,5 @@ module.exports = {
VERSION_MAJOR: 6, VERSION_MAJOR: 6,
VERSION_MINOR: 5, VERSION_MINOR: 5,
VERSION_PATCH: 0, VERSION_PATCH: 0,
VERSION_SUFFIX: '-dev' VERSION_SUFFIX: ''
}; };

View File

@ -1,6 +1,6 @@
{ {
"name": "oracledb", "name": "oracledb",
"version": "6.5.0-dev", "version": "6.5.0",
"description": "A Node.js module for Oracle Database access from JavaScript and TypeScript", "description": "A Node.js module for Oracle Database access from JavaScript and TypeScript",
"license": "(Apache-2.0 OR UPL-1.0)", "license": "(Apache-2.0 OR UPL-1.0)",
"homepage": "http://oracle.github.io/node-oracledb/", "homepage": "http://oracle.github.io/node-oracledb/",

View File

@ -513,7 +513,7 @@ static bool njsConnection_connectPostAsync(njsBaton *baton, napi_env env,
conn->warningInfo = baton->warningInfo; conn->warningInfo = baton->warningInfo;
} }
// For Oracle Database 23c and Oracle Client 23c, the maximum field name // For Oracle Database 23ai and Oracle Client 23ai, the maximum field name
// size for the OSON object is 65535 // size for the OSON object is 65535
conn->versionInfo = baton->versionInfo; conn->versionInfo = baton->versionInfo;
if (conn->versionInfo.versionNum >= 23 if (conn->versionInfo.versionNum >= 23