@pi-r/oracle 0.7.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/client/index.js +1 -1
  2. package/package.json +4 -4
package/client/index.js CHANGED
@@ -37,7 +37,7 @@ class OraclePool extends DbPool {
37
37
  }
38
38
  const DRIVER_MODE = process.env.NODE_ORACLEDB_DRIVER_MODE;
39
39
  const POOL_STATE = {};
40
- const POOL_UNUSED = ['poolMax', 'poolMin', 'poolIncrement', 'poolTimeout', 'poolPingInterval', 'poolMaxPerShard', 'connectTimeout', 'queueMax', 'queueRequests', 'queueTimeout'];
40
+ const POOL_UNUSED = ['connectTimeout', 'transportConnectTimeout', 'expireTime', 'poolMax', 'poolMin', 'poolIncrement', 'poolTimeout', 'poolPingInterval', 'poolMaxPerShard', 'queueMax', 'queueRequests', 'queueTimeout', 'enableStatistics', 'sodaMetaDataCache', 'stmtCacheSize'];
41
41
  const POOL_ACTIVE = new WeakSet();
42
42
  function removePoolProperties(credential) {
43
43
  if (!credential.uuidKey && POOL_ACTIVE.has(credential)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-r/oracle",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Oracle client driver for E-mc.",
5
5
  "main": "client/index.js",
6
6
  "types": "client/index.d.ts",
@@ -21,8 +21,8 @@
21
21
  "license": "MIT",
22
22
  "homepage": "https://github.com/anpham6/pi-r#readme",
23
23
  "dependencies": {
24
- "@e-mc/db": "^0.9.0",
25
- "@e-mc/types": "^0.9.0",
26
- "oracledb": "^6.4.0"
24
+ "@e-mc/db": "^0.9.2",
25
+ "@e-mc/types": "^0.9.2",
26
+ "oracledb": "^6.5.1"
27
27
  }
28
28
  }