@cubejs-backend/oracle-driver 1.7.36 → 1.7.37

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,12 @@
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
+ ## [1.7.37](https://github.com/cube-js/cube/compare/v1.7.35...v1.7.37) (2026-09-10)
7
+
8
+ ### Features
9
+
10
+ - Support named ESM exports across all drivers ([#11838](https://github.com/cube-js/cube/issues/11838)) ([1699910](https://github.com/cube-js/cube/commit/1699910ef05c808ba9e114fcb4cd02432bd3767e))
11
+
6
12
  ## [1.7.36](https://github.com/cube-js/cube/compare/v1.7.35...v1.7.36) (2026-09-09)
7
13
 
8
14
  **Note:** Version bump only for package @cubejs-backend/oracle-driver
@@ -26,7 +26,7 @@ const OracleTypeToGenericType = {
26
26
  binary_float: 'float',
27
27
  binary_double: 'double',
28
28
  date: 'timestamp',
29
- 'number': 'decimal',
29
+ number: 'decimal',
30
30
  };
31
31
 
32
32
  const sortByKeys = (unordered) => {
@@ -40,12 +40,12 @@ const sortByKeys = (unordered) => {
40
40
  };
41
41
 
42
42
  const reduceCb = (result, i) => {
43
- let schema = (result[i.table_schema] || {});
44
- let tables = (schema[i.table_name] || []);
45
- let attributes = new Array();
43
+ const schema = (result[i.table_schema] || {});
44
+ const tables = (schema[i.table_name] || []);
45
+ const attributes = [];
46
46
 
47
- if (i.key_type === "P" || i.key_type === "U") {
48
- attributes.push(["primaryKey"]);
47
+ if (i.key_type === 'P' || i.key_type === 'U') {
48
+ attributes.push(['primaryKey']);
49
49
  }
50
50
 
51
51
  tables.push({
@@ -278,3 +278,4 @@ class OracleDriver extends BaseDriver {
278
278
  }
279
279
 
280
280
  module.exports = OracleDriver;
281
+ module.exports.OracleDriver = 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": "Cube Dev, Inc.",
5
- "version": "1.7.36",
5
+ "version": "1.7.37",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/cube-js/cube.git",
@@ -13,8 +13,8 @@
13
13
  },
14
14
  "main": "driver/OracleDriver.js",
15
15
  "dependencies": {
16
- "@cubejs-backend/base-driver": "1.7.36",
17
- "@cubejs-backend/shared": "1.7.36",
16
+ "@cubejs-backend/base-driver": "1.7.37",
17
+ "@cubejs-backend/shared": "1.7.37",
18
18
  "ramda": "^0.27.2"
19
19
  },
20
20
  "devDependencies": {
@@ -30,5 +30,5 @@
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
- "gitHead": "0e1c035e2b48a6b44cfd1f10d5c6e94b4bba76d6"
33
+ "gitHead": "28c8efd405d900a1b9cb6cb5ebc2ec951aa375be"
34
34
  }