@cubejs-backend/vertica-driver 1.1.16 → 1.1.17

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,41 +3,30 @@
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.1.16](https://github.com/cube-js/cube.js/compare/v1.1.15...v1.1.16) (2025-01-22)
7
-
8
- **Note:** Version bump only for package @cubejs-backend/vertica-driver
6
+ ## [1.1.17](https://github.com/cube-js/cube.js/compare/v1.1.16...v1.1.17) (2025-01-27)
9
7
 
8
+ ### Features
10
9
 
10
+ - **schema-compiler:** Add flag for using named timezones in MySQL Query class ([#9111](https://github.com/cube-js/cube.js/issues/9111)) ([5a540db](https://github.com/cube-js/cube.js/commit/5a540db9228dcbb88c434123f13291202f6da9be))
11
11
 
12
+ ## [1.1.16](https://github.com/cube-js/cube.js/compare/v1.1.15...v1.1.16) (2025-01-22)
12
13
 
14
+ **Note:** Version bump only for package @cubejs-backend/vertica-driver
13
15
 
14
16
  ## [1.1.15](https://github.com/cube-js/cube.js/compare/v1.1.14...v1.1.15) (2025-01-13)
15
17
 
16
18
  **Note:** Version bump only for package @cubejs-backend/vertica-driver
17
19
 
18
-
19
-
20
-
21
-
22
20
  ## [1.1.14](https://github.com/cube-js/cube.js/compare/v1.1.13...v1.1.14) (2025-01-09)
23
21
 
24
22
  **Note:** Version bump only for package @cubejs-backend/vertica-driver
25
23
 
26
-
27
-
28
-
29
-
30
24
  ## [1.1.13](https://github.com/cube-js/cube.js/compare/v1.1.12...v1.1.13) (2025-01-09)
31
25
 
32
26
  **Note:** Version bump only for package @cubejs-backend/vertica-driver
33
27
 
34
-
35
-
36
-
37
-
38
28
  ## [1.1.12](https://github.com/cube-js/cube.js/compare/v1.1.11...v1.1.12) (2025-01-09)
39
29
 
40
-
41
30
  ### Features
42
31
 
43
- * **vertica-driver:** Introduce VerticaDriver ([#9081](https://github.com/cube-js/cube.js/issues/9081)) ([c43340d](https://github.com/cube-js/cube.js/commit/c43340d9cc7d06d7caea4803b4d6e00a3e82acdf)), closes [#2](https://github.com/cube-js/cube.js/issues/2) [#5](https://github.com/cube-js/cube.js/issues/5) [#6](https://github.com/cube-js/cube.js/issues/6)
32
+ - **vertica-driver:** Introduce VerticaDriver ([#9081](https://github.com/cube-js/cube.js/issues/9081)) ([c43340d](https://github.com/cube-js/cube.js/commit/c43340d9cc7d06d7caea4803b4d6e00a3e82acdf)), closes [#2](https://github.com/cube-js/cube.js/issues/2) [#5](https://github.com/cube-js/cube.js/issues/5) [#6](https://github.com/cube-js/cube.js/issues/6)
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@cubejs-backend/vertica-driver",
3
3
  "description": "Cube.js Vertica database driver",
4
4
  "author": "Eduard Karacharov, Tim Brown, Cube Dev, Inc.",
5
- "version": "1.1.16",
5
+ "version": "1.1.17",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/cube-js/cube.js.git",
@@ -19,16 +19,15 @@
19
19
  "lint:fix": "eslint --fix **/*.js"
20
20
  },
21
21
  "dependencies": {
22
- "@cubejs-backend/base-driver": "1.1.16",
23
- "@cubejs-backend/query-orchestrator": "1.1.16",
24
- "@cubejs-backend/schema-compiler": "1.1.16",
25
- "moment-timezone": "^0.5.45",
22
+ "@cubejs-backend/base-driver": "1.1.17",
23
+ "@cubejs-backend/query-orchestrator": "1.1.17",
24
+ "@cubejs-backend/schema-compiler": "1.1.17",
26
25
  "vertica-nodejs": "^1.0.3"
27
26
  },
28
27
  "license": "Apache-2.0",
29
28
  "devDependencies": {
30
29
  "@cubejs-backend/linter": "^1.0.0",
31
- "@cubejs-backend/testing-shared": "1.1.16",
30
+ "@cubejs-backend/testing-shared": "1.1.17",
32
31
  "jest": "^27.5.1",
33
32
  "testcontainers": "^10.13.0"
34
33
  },
@@ -38,5 +37,5 @@
38
37
  "eslintConfig": {
39
38
  "extends": "../cubejs-linter"
40
39
  },
41
- "gitHead": "924a17cf930acd7ecbe4d50105e724bf17d3881a"
40
+ "gitHead": "d130dbc32b2931ecd1264d44fd8952e6d8f52c94"
42
41
  }
@@ -1,4 +1,3 @@
1
- const moment = require('moment-timezone');
2
1
  const { BaseFilter, BaseQuery } = require('@cubejs-backend/schema-compiler');
3
2
 
4
3
  const GRANULARITY_TO_INTERVAL = {
@@ -38,7 +37,7 @@ class VerticaQuery extends BaseQuery {
38
37
  }
39
38
 
40
39
  timestampFormat() {
41
- return moment.HTML5_FMT.DATETIME_LOCAL_MS;
40
+ return 'YYYY-MM-DDTHH:mm:ss.SSS';
42
41
  }
43
42
 
44
43
  dateTimeCast(value) {