@cubejs-backend/mysql-aurora-serverless-driver 1.7.37 → 1.7.39

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,14 @@
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.39](https://github.com/cube-js/cube/compare/v1.7.38...v1.7.39) (2026-09-15)
7
+
8
+ **Note:** Version bump only for package @cubejs-backend/mysql-aurora-serverless-driver
9
+
10
+ ## [1.7.38](https://github.com/cube-js/cube/compare/v1.7.37...v1.7.38) (2026-09-14)
11
+
12
+ **Note:** Version bump only for package @cubejs-backend/mysql-aurora-serverless-driver
13
+
6
14
  ## [1.7.37](https://github.com/cube-js/cube/compare/v1.7.35...v1.7.37) (2026-09-10)
7
15
 
8
16
  ### Features
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 MySql Aurora Serverless Data Api Driver
8
+ # Cube MySql Aurora Serverless Data Api Driver
9
9
 
10
10
  Pure Javascript MySql Aurora Serverless Data Api driver.
11
11
 
@@ -23,10 +23,10 @@ Uses the `mysql` and [local-data-api](https://hub.docker.com/r/koxudaxi/local-da
23
23
 
24
24
  ## Support
25
25
 
26
- This driver has been contributed by Cube.js community member [Kenneth Winner](https://github.com/kcwinner) . This package is **community supported** and should be used at your own risk.
26
+ This driver has been contributed by Cube community member [Kenneth Winner](https://github.com/kcwinner) . This package is **community supported** and should be used at your own risk.
27
27
 
28
- 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.
28
+ 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. **We're looking for maintainers for this package.** If you'd like to become a maintainer, please contact us in Cube Slack.
29
29
 
30
30
  ### License
31
31
 
32
- Cube.js MySql Serverless Aurora Data Api Driver is [Apache 2.0 licensed](./LICENSE).
32
+ Cube MySql Serverless Aurora Data Api Driver is [Apache 2.0 licensed](./LICENSE).
@@ -166,8 +166,10 @@ class AuroraServerlessMySqlDriver extends BaseDriver {
166
166
  throw new Error(`${this.constructor} driver supports only rows upload`);
167
167
  }
168
168
  await this.createTable(table, columns);
169
+
169
170
  try {
170
171
  const batchSize = 1000; // TODO make dynamic?
172
+
171
173
  for (let j = 0; j < Math.ceil(tableData.rows.length / batchSize); j++) {
172
174
  const currentBatchSize = Math.min(tableData.rows.length - j * batchSize, batchSize);
173
175
  const indexArray = Array.from({ length: currentBatchSize }, (v, i) => i);
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@cubejs-backend/mysql-aurora-serverless-driver",
3
- "description": "Cube.js Aurora Serverless Mysql database driver",
3
+ "description": "Cube Aurora Serverless Mysql database driver",
4
4
  "author": "Cube Dev, Inc.",
5
- "version": "1.7.37",
5
+ "version": "1.7.39",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/cube-js/cube.git",
@@ -20,14 +20,14 @@
20
20
  "integration:mysql-aurora-serverless": "npm run integration"
21
21
  },
22
22
  "dependencies": {
23
- "@cubejs-backend/base-driver": "1.7.37",
24
- "@cubejs-backend/shared": "1.7.37",
23
+ "@cubejs-backend/base-driver": "1.7.39",
24
+ "@cubejs-backend/shared": "1.7.39",
25
25
  "@types/mysql": "^2.15.19",
26
26
  "aws-sdk": "^2.787.0",
27
27
  "data-api-client": "^1.1.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@cubejs-backend/linter": "1.7.37",
30
+ "@cubejs-backend/linter": "1.7.39",
31
31
  "@types/data-api-client": "^1.2.1",
32
32
  "@types/jest": "^29",
33
33
  "jest": "^29",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "28c8efd405d900a1b9cb6cb5ebc2ec951aa375be"
40
+ "gitHead": "1acb83d943046de04efa488429a8312d05ecf204"
41
41
  }