@cubejs-backend/elasticsearch-driver 1.2.24 → 1.2.26

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.
@@ -84,9 +84,12 @@ class ElasticSearchDriver extends BaseDriver {
84
84
  }
85
85
  }
86
86
 
87
+ /**
88
+ * Returns the configurable driver options
89
+ * Note: It returns the unprefixed option names.
90
+ * In case of using multisources options need to be prefixed manually.
91
+ */
87
92
  static driverEnvVariables() {
88
- // TODO (buntarb): check how this method can/must be used with split
89
- // names by the data source.
90
93
  return [
91
94
  'CUBEJS_DB_URL',
92
95
  'CUBEJS_DB_ELASTIC_QUERY_FORMAT',
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@cubejs-backend/elasticsearch-driver",
3
3
  "description": "Cube.js elasticsearch database driver",
4
4
  "author": "Cube Dev, Inc.",
5
- "version": "1.2.24",
5
+ "version": "1.2.26",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/cube-js/cube.git",
@@ -23,14 +23,14 @@
23
23
  "driver"
24
24
  ],
25
25
  "dependencies": {
26
- "@cubejs-backend/base-driver": "1.2.24",
27
- "@cubejs-backend/shared": "1.2.24",
26
+ "@cubejs-backend/base-driver": "1.2.26",
27
+ "@cubejs-backend/shared": "1.2.26",
28
28
  "@elastic/elasticsearch": "7.12.0",
29
29
  "sqlstring": "^2.3.1"
30
30
  },
31
31
  "license": "Apache-2.0",
32
32
  "devDependencies": {
33
- "@cubejs-backend/linter": "1.2.24",
33
+ "@cubejs-backend/linter": "1.2.26",
34
34
  "@types/jest": "^27",
35
35
  "jest": "^27",
36
36
  "testcontainers": "^10.10.4"
@@ -48,5 +48,5 @@
48
48
  "**/?(*.)+(spec|test|integration).js?(x)"
49
49
  ]
50
50
  },
51
- "gitHead": "abe830c39be3a52022506a1ae1d9c8598b0b4502"
51
+ "gitHead": "3a2f4ac8039c62a47e1c19ad3a433cca9af3c1f2"
52
52
  }