@cubejs-backend/postgres-driver
Advanced tools
Comparing version 0.18.17 to 0.18.18
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.18.18](https://github.com/cube-js/cube.js/compare/v0.18.17...v0.18.18) (2020-03-28) | ||
### Bug Fixes | ||
* **postgres-driver:** Clean-up deprecation warning ([#531](https://github.com/cube-js/cube.js/issues/531)) ([ed1e8da](https://github.com/cube-js/cube.js/commit/ed1e8da)) | ||
## [0.18.17](https://github.com/cube-js/cube.js/compare/v0.18.16...v0.18.17) (2020-03-24) | ||
@@ -8,0 +19,0 @@ |
@@ -35,3 +35,3 @@ const pg = require('pg'); | ||
password: process.env.CUBEJS_DB_PASS, | ||
ssl: (process.env.CUBEJS_DB_SSL || 'false').toLowerCase() === 'true' ? {} : undefined, | ||
ssl: (process.env.CUBEJS_DB_SSL || 'false').toLowerCase() === 'true' ? { rejectUnauthorized: true } : undefined, | ||
...config | ||
@@ -38,0 +38,0 @@ }); |
@@ -5,3 +5,3 @@ { | ||
"author": "Statsbot, Inc.", | ||
"version": "0.18.17", | ||
"version": "0.18.18", | ||
"repository": { | ||
@@ -21,3 +21,3 @@ "type": "git", | ||
"dependencies": { | ||
"@cubejs-backend/query-orchestrator": "^0.18.17", | ||
"@cubejs-backend/query-orchestrator": "^0.18.18", | ||
"moment": "^2.24.0", | ||
@@ -34,3 +34,3 @@ "pg": "^7.10.0" | ||
}, | ||
"gitHead": "f574c7908d9bb1feec13e69fe2396f9f15203270" | ||
"gitHead": "e7a851fa75c56b1a33f6d9db1a3bf6471796134b" | ||
} |
31586