@cubejs-backend/mysql-aurora-serverless-driver 0.35.63 → 0.35.64

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,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
+ ## [0.35.64](https://github.com/cube-js/cube/compare/v0.35.63...v0.35.64) (2024-07-24)
7
+
8
+ **Note:** Version bump only for package @cubejs-backend/mysql-aurora-serverless-driver
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.35.63](https://github.com/cube-js/cube/compare/v0.35.62...v0.35.63) (2024-07-24)
7
15
 
8
16
  **Note:** Version bump only for package @cubejs-backend/mysql-aurora-serverless-driver
@@ -14,7 +14,6 @@ services:
14
14
  timeout: 20s
15
15
  interval: 15s
16
16
  retries: 5
17
- start_period: 20s
18
17
 
19
18
  router:
20
19
  image: koxudaxi/local-data-api:${TEST_LOCAL_DATA_API_VERSION:-0.6.4}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@cubejs-backend/mysql-aurora-serverless-driver",
3
3
  "description": "Cube.js Aurora Serverless Mysql database driver",
4
4
  "author": "Cube Dev, Inc.",
5
- "version": "0.35.63",
5
+ "version": "0.35.64",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/cube-js/cube.git",
@@ -31,7 +31,7 @@
31
31
  "@cubejs-backend/linter": "^0.35.0",
32
32
  "@types/data-api-client": "^1.2.1",
33
33
  "jest": "^27",
34
- "testcontainers": "^8.12"
34
+ "testcontainers": "^10.10.4"
35
35
  },
36
36
  "license": "Apache-2.0",
37
37
  "publishConfig": {
@@ -47,5 +47,5 @@
47
47
  "**/?(*.)+(spec|test|integration).js?(x)"
48
48
  ]
49
49
  },
50
- "gitHead": "63262d870b0068b75db938478fe158e504a4d3e8"
50
+ "gitHead": "e0ac7bf2e8d72a433e218c3d3373e00611aedc2a"
51
51
  }
@@ -21,8 +21,10 @@ describe('AuroraServerlessMySqlDriver', () => {
21
21
  );
22
22
 
23
23
  env = await dc
24
- .withEnv('TEST_MYSQL_VERSION', process.env.TEST_MYSQL_VERSION || '5.6.50')
25
- .withEnv('TEST_LOCAL_DATA_API_VERSION', process.env.TEST_LOCAL_DATA_API_VERSION || '0.6.4')
24
+ .withEnvironment({
25
+ TEST_MYSQL_VERSION: process.env.TEST_MYSQL_VERSION || '5.6.50',
26
+ TEST_LOCAL_DATA_API_VERSION: process.env.TEST_LOCAL_DATA_API_VERSION || '0.6.4',
27
+ })
26
28
  .withWaitStrategy('mysql', Wait.forHealthCheck())
27
29
  .up();
28
30