@cubejs-backend/jdbc-driver 0.29.41 → 0.29.54
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 +24 -0
- package/README.md +13 -7
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
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.29.54](https://github.com/cube-js/cube.js/compare/v0.29.53...v0.29.54) (2022-05-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @cubejs-backend/jdbc-driver
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.29.51](https://github.com/cube-js/cube.js/compare/v0.29.50...v0.29.51) (2022-04-22)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @cubejs-backend/jdbc-driver
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.29.48](https://github.com/cube-js/cube.js/compare/v0.29.47...v0.29.48) (2022-04-14)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @cubejs-backend/jdbc-driver
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
## [0.29.41](https://github.com/cube-js/cube.js/compare/v0.29.40...v0.29.41) (2022-04-03)
|
|
7
31
|
|
|
8
32
|
|
package/README.md
CHANGED
|
@@ -7,11 +7,17 @@
|
|
|
7
7
|
|
|
8
8
|
# Cube.js JDBC Database Driver
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
JDBC driver.
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
## Support
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
This package is **community supported** and should be used at your own risk.
|
|
15
|
+
|
|
16
|
+
While the Cube Dev team is happy to review and accept future community contributions, we don't have active plans for further development. This includes bug fixes unless they affect different parts of Cube.js. **We're looking for maintainers for this package.** If you'd like to become a maintainer, please contact us in Cube.js Slack.
|
|
17
|
+
|
|
18
|
+
## Java installation
|
|
19
|
+
|
|
20
|
+
### macOS
|
|
15
21
|
|
|
16
22
|
```sh
|
|
17
23
|
brew install openjdk@8
|
|
@@ -20,19 +26,19 @@ sudo ln -sfn /usr/local/opt/openjdk@8/libexec/openjdk.jdk /Library/Java/JavaVirt
|
|
|
20
26
|
|
|
21
27
|
If this doesn't work, please run commands from `$ brew info openjdk@8`.
|
|
22
28
|
|
|
23
|
-
|
|
29
|
+
### Debian, Ubuntu, etc.
|
|
24
30
|
|
|
25
31
|
```sh
|
|
26
32
|
sudo apt install openjdk-8-jdk
|
|
27
33
|
```
|
|
28
34
|
|
|
29
|
-
|
|
35
|
+
### Fedora, Oracle Linux, Red Hat Enterprise Linux, etc.
|
|
30
36
|
|
|
31
37
|
```sh
|
|
32
38
|
su -c "yum install java-1.8.0-openjdk"
|
|
33
39
|
```
|
|
34
40
|
|
|
35
|
-
|
|
41
|
+
### Windows
|
|
36
42
|
|
|
37
43
|
If you have Chocolatey packet manager:
|
|
38
44
|
|
|
@@ -42,6 +48,6 @@ choco install openjdk
|
|
|
42
48
|
|
|
43
49
|
Or download it from
|
|
44
50
|
|
|
45
|
-
|
|
51
|
+
## License
|
|
46
52
|
|
|
47
53
|
Cube.js JDBC Database Driver is [Apache 2.0 licensed](./LICENSE).
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/jdbc-driver",
|
|
3
3
|
"description": "Cube.js JDBC database driver",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "0.29.
|
|
5
|
+
"version": "0.29.54",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.js.git",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"index.js"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@cubejs-backend/query-orchestrator": "^0.29.
|
|
28
|
+
"@cubejs-backend/query-orchestrator": "^0.29.51",
|
|
29
29
|
"generic-pool": "^3.1.7",
|
|
30
30
|
"node-java-maven": "^0.1.2",
|
|
31
31
|
"sqlstring": "^2.3.0"
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"@types/sqlstring": "^2.3.0",
|
|
49
49
|
"typescript": "~4.1.5"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "c5383fcfaaa088e6ca09cee3384da163d3ad6af5"
|
|
52
52
|
}
|