File tree Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
- ## node-oracledb v3.1.0 (DD Mon YYYY)
4
-
5
- This release is currently under development.
3
+ ## node-oracledb v3.1.0 (22 Jan 2019)
6
4
7
5
- Support tagging of pooled connections when releasing them to the
8
6
connection pool. When using Oracle Client libraries 12.2 or later,
@@ -73,6 +71,9 @@ This release is currently under development.
73
71
pooled connections to be unnecessarily dropped by
74
72
` connection.close() ` . (ODPI-C change).
75
73
74
+ - Fixed a memory leak under certain cirumstances when pooled
75
+ connections are released back to the pool. (ODPI-C change)
76
+
76
77
- Display correct error message for SODA ` createIndex() ` when no
77
78
parameter is passed.
78
79
Original file line number Diff line number Diff line change 1
- # node-oracledb version 3.1-dev
1
+ # node-oracledb version 3.1
2
2
3
3
The node-oracledb add-on for Node.js powers high performance Oracle
4
4
Database applications.
Original file line number Diff line number Diff line change 1
- # node-oracledb 3.1-dev Documentation for the Oracle Database Node.js Add-on
1
+ # node-oracledb 3.1 Documentation for the Oracle Database Node.js Add-on
2
2
3
3
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.*
4
4
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " oracledb" ,
3
- "version" : " 3.1.0-dev " ,
3
+ "version" : " 3.1.0" ,
4
4
"description" : " A Node.js module for Oracle Database access" ,
5
5
"license" : " Apache-2.0" ,
6
6
"homepage" : " http://oracle.github.io/node-oracledb/" ,
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ using namespace v8;
72
72
#define NJS_NODE_ORACLEDB_MAJOR 3
73
73
#define NJS_NODE_ORACLEDB_MINOR 1
74
74
#define NJS_NODE_ORACLEDB_PATCH 0
75
- #define NJS_NODE_ORACLEDB_SUFFIX " -dev "
75
+ #define NJS_NODE_ORACLEDB_SUFFIX
76
76
77
77
// define stringified version and driver name
78
78
#define NJS_STR_HELPER (x ) #x
You can’t perform that action at this time.
0 commit comments