@cubejs-backend/jdbc-driver 0.29.48 → 0.30.0

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 (3) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +13 -7
  3. package/package.json +4 -4
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.30.0](https://github.com/cube-js/cube.js/compare/v0.29.57...v0.30.0) (2022-05-11)
7
+
8
+ **Note:** Version bump only for package @cubejs-backend/jdbc-driver
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.29.54](https://github.com/cube-js/cube.js/compare/v0.29.53...v0.29.54) (2022-05-03)
15
+
16
+ **Note:** Version bump only for package @cubejs-backend/jdbc-driver
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.29.51](https://github.com/cube-js/cube.js/compare/v0.29.50...v0.29.51) (2022-04-22)
23
+
24
+ **Note:** Version bump only for package @cubejs-backend/jdbc-driver
25
+
26
+
27
+
28
+
29
+
6
30
  ## [0.29.48](https://github.com/cube-js/cube.js/compare/v0.29.47...v0.29.48) (2022-04-14)
7
31
 
8
32
  **Note:** Version bump only for package @cubejs-backend/jdbc-driver
package/README.md CHANGED
@@ -7,11 +7,17 @@
7
7
 
8
8
  # Cube.js JDBC Database Driver
9
9
 
10
- [Learn more](https://github.com/cube-js/cube.js#getting-started)
10
+ JDBC driver.
11
11
 
12
- # Java installation
12
+ ## Support
13
13
 
14
- ## macOS
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
- ## Debian, Ubuntu, etc.
29
+ ### Debian, Ubuntu, etc.
24
30
 
25
31
  ```sh
26
32
  sudo apt install openjdk-8-jdk
27
33
  ```
28
34
 
29
- ## Fedora, Oracle Linux, Red Hat Enterprise Linux, etc.
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
- ## Windows
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
- ### License
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.48",
5
+ "version": "0.30.0",
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.48",
28
+ "@cubejs-backend/query-orchestrator": "^0.30.0",
29
29
  "generic-pool": "^3.1.7",
30
30
  "node-java-maven": "^0.1.2",
31
31
  "sqlstring": "^2.3.0"
@@ -42,11 +42,11 @@
42
42
  "testEnvironment": "node"
43
43
  },
44
44
  "devDependencies": {
45
- "@cubejs-backend/linter": "^0.29.23",
45
+ "@cubejs-backend/linter": "^0.30.0",
46
46
  "@types/generic-pool": "^3.1.9",
47
47
  "@types/node": "^12",
48
48
  "@types/sqlstring": "^2.3.0",
49
49
  "typescript": "~4.1.5"
50
50
  },
51
- "gitHead": "1fa9b5fe1c15ae2e790c101381d127d691c944ac"
51
+ "gitHead": "bc4774e0945cdf0141e344657406115e8a4597f7"
52
52
  }