@cubejs-backend/mysql-driver 0.23.8 → 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/MySqlDriver.js +2 -2
- 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/mysql-driver
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [0.23.14](https://github.com/cube-js/cube.js/compare/v0.23.13...v0.23.14) (2020-11-22)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @cubejs-backend/mysql-driver
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [0.23.11](https://github.com/cube-js/cube.js/compare/v0.23.10...v0.23.11) (2020-11-13)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* CUBEJS_DB_SSL must be true to affect SSL ([#1252](https://github.com/cube-js/cube.js/issues/1252)) ([f2e9d9d](https://github.com/cube-js/cube.js/commit/f2e9d9db3f7b8fc5a7c5bbaaebca56f5331d4332)), closes [#1212](https://github.com/cube-js/cube.js/issues/1212)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
## [0.23.8](https://github.com/cube-js/cube.js/compare/v0.23.7...v0.23.8) (2020-11-06)
|
|
7
45
|
|
|
8
46
|
**Note:** Version bump only for package @cubejs-backend/mysql-driver
|
package/driver/MySqlDriver.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const mysql = require('mysql');
|
|
2
2
|
const genericPool = require('generic-pool');
|
|
3
3
|
const { promisify } = require('util');
|
|
4
|
-
const BaseDriver = require('@cubejs-backend/query-orchestrator
|
|
4
|
+
const { BaseDriver } = require('@cubejs-backend/query-orchestrator');
|
|
5
5
|
const crypto = require('crypto');
|
|
6
6
|
const fs = require('fs');
|
|
7
7
|
|
|
@@ -25,7 +25,7 @@ class MySqlDriver extends BaseDriver {
|
|
|
25
25
|
];
|
|
26
26
|
|
|
27
27
|
if (
|
|
28
|
-
process.env.CUBEJS_DB_SSL ||
|
|
28
|
+
process.env.CUBEJS_DB_SSL === 'true' ||
|
|
29
29
|
process.env.CUBEJS_DB_SSL_REJECT_UNAUTHORIZED ||
|
|
30
30
|
sslOptions.find(o => !!process.env[o.value])
|
|
31
31
|
) {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/mysql-driver",
|
|
3
3
|
"description": "Cube.js Mysql 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",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"lint": "eslint driver/*.js test/*.js"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@cubejs-backend/query-orchestrator": "^0.
|
|
22
|
+
"@cubejs-backend/query-orchestrator": "^0.24.2",
|
|
23
23
|
"@types/mysql": "^2.15.15",
|
|
24
24
|
"generic-pool": "^3.6.0",
|
|
25
25
|
"mysql": "^2.16.0"
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "20a2c50c07d1b7602c0958fd3d5a69f310a415f1"
|
|
40
40
|
}
|