@cubejs-backend/oracle-driver 0.31.16 → 0.31.20

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 CHANGED
@@ -3,6 +3,25 @@
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.31.20](https://github.com/cube-js/cube.js/compare/v0.31.19...v0.31.20) (2022-12-02)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **oracle-driver:** Make oracle driver `readOnly` by default so pre-aggregations can be used ([5efccba](https://github.com/cube-js/cube.js/commit/5efccbaa8e15d4c85f59f0465bca62a919ace78b))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.31.19](https://github.com/cube-js/cube.js/compare/v0.31.18...v0.31.19) (2022-11-29)
18
+
19
+ **Note:** Version bump only for package @cubejs-backend/oracle-driver
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.31.16](https://github.com/cube-js/cube.js/compare/v0.31.15...v0.31.16) (2022-11-23)
7
26
 
8
27
  **Note:** Version bump only for package @cubejs-backend/oracle-driver
@@ -135,6 +135,10 @@ class OracleDriver extends BaseDriver {
135
135
  release() {
136
136
  return this.pool && this.pool.close();
137
137
  }
138
+
139
+ readOnly() {
140
+ return true;
141
+ }
138
142
  }
139
143
 
140
144
  module.exports = OracleDriver;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@cubejs-backend/oracle-driver",
3
3
  "description": "Cube.js oracle database driver",
4
4
  "author": "Trikoz I.",
5
- "version": "0.31.16",
5
+ "version": "0.31.20",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/cube-js/cube.js.git",
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "main": "driver/OracleDriver.js",
15
15
  "dependencies": {
16
- "@cubejs-backend/base-driver": "^0.31.16",
16
+ "@cubejs-backend/base-driver": "^0.31.19",
17
17
  "ramda": "^0.27.0"
18
18
  },
19
19
  "optionalDependencies": {
@@ -23,5 +23,5 @@
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "gitHead": "c8838240143ecd52acdcc5d423f08cfb69682b44"
26
+ "gitHead": "91ca82598e23b0946c5b5c353c598bffb9f702ca"
27
27
  }