@cubejs-backend/materialize-driver 0.29.53 → 0.29.54
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 +8 -0
- package/README.md +6 -2
- package/package.json +4 -4
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.29.54](https://github.com/cube-js/cube.js/compare/v0.29.53...v0.29.54) (2022-05-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @cubejs-backend/materialize-driver
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.29.53](https://github.com/cube-js/cube.js/compare/v0.29.52...v0.29.53) (2022-04-29)
|
|
7
15
|
|
|
8
16
|
|
package/README.md
CHANGED
|
@@ -9,8 +9,12 @@
|
|
|
9
9
|
|
|
10
10
|
Pure Javascript Materialize driver. Based on pg driver for PostgreSQL.
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
## Support
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
This driver has been contributed by [Joaquin Colacci](https://github.com/joacoc). This package is **community supported** and should be used at your own risk.
|
|
15
|
+
|
|
16
|
+
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.
|
|
17
|
+
|
|
18
|
+
## License
|
|
15
19
|
|
|
16
20
|
Cube.js Materialize driver is [Apache 2.0 licensed](./LICENSE).
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/materialize-driver",
|
|
3
3
|
"description": "Cube.js Materialize database driver",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "0.29.
|
|
5
|
+
"version": "0.29.54",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.js.git",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"lint:fix": "eslint --fix src/* --ext .ts"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@cubejs-backend/postgres-driver": "^0.29.
|
|
30
|
+
"@cubejs-backend/postgres-driver": "^0.29.54",
|
|
31
31
|
"@cubejs-backend/query-orchestrator": "^0.29.28",
|
|
32
32
|
"@cubejs-backend/shared": "^0.29.28",
|
|
33
33
|
"@types/pg": "^8.6.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"license": "Apache-2.0",
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@cubejs-backend/linter": "^0.29.23",
|
|
39
|
-
"@cubejs-backend/testing": "^0.29.
|
|
39
|
+
"@cubejs-backend/testing": "^0.29.54",
|
|
40
40
|
"typescript": "~4.1.5"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"eslintConfig": {
|
|
46
46
|
"extends": "../cubejs-linter"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "c5383fcfaaa088e6ca09cee3384da163d3ad6af5"
|
|
49
49
|
}
|