File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
- ## node-oracledb v4.2.0 (DD MON YYYY )
3
+ ## node-oracledb v4.2.0 (24 Jan 2020 )
4
4
5
5
- Added support for binding using the node-oracledb [ Database Type
6
6
Constants] ( https://oracle.github.io/node-oracledb/doc/api.html#oracledbconstantsdbtype )
33
33
- Avoid intermediate conversion from the database national character set to the
34
34
database character set when querying NCLOB columns as String.
35
35
36
- - Fixed various execution failures with Node.js 13.2 due to Node.js NULL pointer behavior change ([ ODPI-C
36
+ - Fixed various execution failures with Node.js 13.2 due to a Node.js NULL pointer behavior change ([ ODPI-C
37
37
change] ( https://github.com/oracle/odpi/commit/7693865bb6a98568546aa319cc0fdb9e208cf9d4 ) ).
38
38
39
39
- Fixed connection pooling so sharded ` pool.getConnection() ` requests respect
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ have been made by the community.
43
43
44
44
## <a name =" license " ></a > License
45
45
46
- Copyright (c) 2015, 2019 , Oracle and/or its affiliates. All rights reserved.
46
+ Copyright (c) 2015, 2020 , Oracle and/or its affiliates. All rights reserved.
47
47
48
48
You may not use the identified files except in compliance with the Apache
49
49
License, Version 2.0 (the "License.")
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " oracledb" ,
3
- "version" : " 4.2.0-dev " ,
3
+ "version" : " 4.2.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 42
42
#define NJS_NODE_ORACLEDB_MAJOR 4
43
43
#define NJS_NODE_ORACLEDB_MINOR 2
44
44
#define NJS_NODE_ORACLEDB_PATCH 0
45
- #define NJS_NODE_ORACLEDB_SUFFIX "-dev "
45
+ #define NJS_NODE_ORACLEDB_SUFFIX ""
46
46
47
47
// define stringified version and driver name
48
48
#define NJS_STR_HELPER (x ) #x
You can’t perform that action at this time.
0 commit comments