@cubejs-backend/postgres-driver 0.23.11 → 0.24.2
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.
- package/CHANGELOG.md +38 -0
- package/driver/PostgresDriver.js +2 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,44 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.24.2](https://github.com/cube-js/cube.js/compare/v0.24.1...v0.24.2) (2020-11-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **@cubejs-backend/query-orchestrator:** Initial move to TypeScript ([#1462](https://github.com/cube-js/cube.js/issues/1462)) ([101e8dc](https://github.com/cube-js/cube.js/commit/101e8dc90d4b1266c0327adb86cab3e3caa8d4d0))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.24.0](https://github.com/cube-js/cube.js/compare/v0.23.15...v0.24.0) (2020-11-26)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @cubejs-backend/postgres-driver
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [0.23.15](https://github.com/cube-js/cube.js/compare/v0.23.14...v0.23.15) (2020-11-25)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **@cubejs-backend/postgres-driver:** Support CUBEJS_DB_SSL_KEY ([e6291fc](https://github.com/cube-js/cube.js/commit/e6291fcda283aa6ee22badec339a600db02a1ce9))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## [0.23.14](https://github.com/cube-js/cube.js/compare/v0.23.13...v0.23.14) (2020-11-22)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package @cubejs-backend/postgres-driver
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
## [0.23.11](https://github.com/cube-js/cube.js/compare/v0.23.10...v0.23.11) (2020-11-13)
|
|
7
45
|
|
|
8
46
|
|
package/driver/PostgresDriver.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const pg = require('pg');
|
|
2
2
|
const { types } = require('pg');
|
|
3
3
|
const moment = require('moment');
|
|
4
|
-
const BaseDriver = require('@cubejs-backend/query-orchestrator
|
|
4
|
+
const { BaseDriver } = require('@cubejs-backend/query-orchestrator');
|
|
5
5
|
|
|
6
6
|
const { Pool } = pg;
|
|
7
7
|
|
|
@@ -29,6 +29,7 @@ class PostgresDriver extends BaseDriver {
|
|
|
29
29
|
const sslOptions = [
|
|
30
30
|
{ name: 'ca', value: 'CUBEJS_DB_SSL_CA' },
|
|
31
31
|
{ name: 'cert', value: 'CUBEJS_DB_SSL_CERT' },
|
|
32
|
+
{ name: 'key', value: 'CUBEJS_DB_SSL_KEY' },
|
|
32
33
|
{ name: 'ciphers', value: 'CUBEJS_DB_SSL_CIPHERS' },
|
|
33
34
|
{ name: 'passphrase', value: 'CUBEJS_DB_SSL_PASSPHRASE' },
|
|
34
35
|
];
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/postgres-driver",
|
|
3
3
|
"description": "Cube.js Postgres database driver",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.24.2",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.js.git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"lint": "eslint **/*.js"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@cubejs-backend/query-orchestrator": "^0.
|
|
20
|
+
"@cubejs-backend/query-orchestrator": "^0.24.2",
|
|
21
21
|
"@types/pg": "^7.14.5",
|
|
22
22
|
"moment": "^2.24.0",
|
|
23
23
|
"pg": "^8.2.1"
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"eslint-plugin-import": "^2.16.0",
|
|
30
30
|
"eslint-plugin-node": "^5.2.1"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "20a2c50c07d1b7602c0958fd3d5a69f310a415f1"
|
|
33
33
|
}
|