Skip to content

Commit bf5e698

Browse files
committed
Prepare for 6.5 release and Oracle Database 23ai
1 parent 0be45d8 commit bf5e698

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
# node-oracledb version 6.5.0-dev
2-
3-
**This release is under development and information may be incomplete**
1+
# node-oracledb version 6.5.0
42

53
The node-oracledb add-on for Node.js powers high performance Oracle Database
64
applications. Applications can be written in TypeScript, or directly in
75
JavaScript.
86

9-
Use node-oracledb 6.5.0-dev to connect Node.js 14.6, or later, to Oracle
7+
Use node-oracledb 6.5.0 to connect Node.js 14.6, or later, to Oracle
108
Database. Older versions of node-oracledb may work with older versions of
119
Node.js.
1210

lib/errors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ function transformErr(err, fnOpt) {
658658
err.code = err.message.substr(0, pos);
659659
/* add Oracle Database Error Help Portal URL for database error
660660
messages, but only in thin mode since this is done
661-
automatically in thick mode with Oracle Client 23c and higher
661+
automatically in thick mode with Oracle Client 23ai and higher
662662
*/
663663
const settings = require('./settings.js');
664664
if (err.errorNum && settings.thin) {

lib/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ module.exports = {
3232
VERSION_MAJOR: 6,
3333
VERSION_MINOR: 5,
3434
VERSION_PATCH: 0,
35-
VERSION_SUFFIX: '-dev'
35+
VERSION_SUFFIX: ''
3636
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oracledb",
3-
"version": "6.5.0-dev",
3+
"version": "6.5.0",
44
"description": "A Node.js module for Oracle Database access from JavaScript and TypeScript",
55
"license": "(Apache-2.0 OR UPL-1.0)",
66
"homepage": "http://oracle.github.io/node-oracledb/",

src/njsConnection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ static bool njsConnection_connectPostAsync(njsBaton *baton, napi_env env,
513513
conn->warningInfo = baton->warningInfo;
514514
}
515515

516-
// For Oracle Database 23c and Oracle Client 23c, the maximum field name
516+
// For Oracle Database 23ai and Oracle Client 23ai, the maximum field name
517517
// size for the OSON object is 65535
518518
conn->versionInfo = baton->versionInfo;
519519
if (conn->versionInfo.versionNum >= 23

0 commit comments

Comments
 (0)