@cubejs-backend/oracle-driver 1.7.36 → 1.7.38

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/.oxlintrc.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "$schema": "../../node_modules/oxlint/configuration_schema.json",
3
+ "extends": ["../cubejs-linter/node.json"],
4
+ "ignorePatterns": [
5
+ "dist/",
6
+ "lib/",
7
+ "build/",
8
+ "coverage/",
9
+ "gen/",
10
+ "**/*.d.ts"
11
+ ]
12
+ }
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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.38](https://github.com/cube-js/cube/compare/v1.7.37...v1.7.38) (2026-09-14)
7
+
8
+ **Note:** Version bump only for package @cubejs-backend/oracle-driver
9
+
10
+ ## [1.7.37](https://github.com/cube-js/cube/compare/v1.7.35...v1.7.37) (2026-09-10)
11
+
12
+ ### Features
13
+
14
+ - 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))
15
+
6
16
  ## [1.7.36](https://github.com/cube-js/cube/compare/v1.7.35...v1.7.36) (2026-09-09)
7
17
 
8
18
  **Note:** Version bump only for package @cubejs-backend/oracle-driver
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- <p align="center"><a href="https://cube.dev"><img src="https://i.imgur.com/zYHXm4o.png" alt="Cube.js" width="300px"></a></p>
1
+ <p align="center"><a href="https://cube.dev"><img src="https://i.imgur.com/zYHXm4o.png" alt="Cube" width="300px"></a></p>
2
2
 
3
3
  [Website](https://cube.dev) • [Docs](https://docs.cube.dev) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/the_cube_dev)
4
4
 
5
5
  [![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
6
6
  [![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)
7
7
 
8
- # Cube.js Oracle Database Driver
8
+ # Cube Oracle Database Driver
9
9
 
10
10
  Pure Javascript Oracle driver.
11
11
 
@@ -13,4 +13,4 @@ Pure Javascript Oracle driver.
13
13
 
14
14
  ### License
15
15
 
16
- Cube.js Oracle Database Driver is [Apache 2.0 licensed](./LICENSE).
16
+ Cube Oracle Database Driver is [Apache 2.0 licensed](./LICENSE).
@@ -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
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@cubejs-backend/oracle-driver",
3
- "description": "Cube.js oracle database driver",
3
+ "description": "Cube oracle database driver",
4
4
  "author": "Cube Dev, Inc.",
5
- "version": "1.7.36",
5
+ "version": "1.7.38",
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.38",
17
+ "@cubejs-backend/shared": "1.7.38",
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": "9ea1fda5dade5b8a4256acd20bcf77318fe13a72"
34
34
  }