idb-pconnector
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -1,6 +0,12 @@ | ||
idb-pconnector changelog | ||
# idb-pconnector change log | ||
# 1.0.4 | ||
Patched require issue outlined in issue #32 (#33) | ||
- do not delete dbstmt and dbconn from idb-connector returned require object | ||
- rather delete properties from module.exports object | ||
# 1.0.3 | ||
- migrate repository over to https://github.com/IBM/nodejs-idb-pconnector | ||
- update links to point to new repository | ||
- refactor code base to now use airbnb style guide | ||
- refactor code base to now use airbnb style guide |
@@ -15,6 +15,7 @@ /* | ||
// do not export dbstmt and dbconn from idb-connector | ||
delete idb.dbstmt; | ||
delete idb.dbconn; | ||
// export constants from idb-connector | ||
module.exports = { ...module.exports, ...idb }; | ||
// do not export dbstmt and dbconn from idb-connector | ||
delete module.exports.dbstmt; | ||
delete module.exports.dbconn; |
{ | ||
"name": "idb-pconnector", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Promise based DB2 Connector for IBM i", | ||
@@ -5,0 +5,0 @@ "main": "lib/idb-pconnector.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
92203
0