@latitude-data/bigquery-connector
Advanced tools
Comparing version 1.1.2 to 2.0.0
# @latitude-data/bigquery-connector | ||
## 2.0.0 | ||
### Major Changes | ||
- e97b521: BREAKING CHANGE | ||
This commit changes the way connectors are installed in Latitude projects. | ||
Before this release, all connectors were getting bundled by default in | ||
production builds, greatly increasing their size and impacting install times. | ||
From now on, connectors are opt-in. The CLI will automatically detect all | ||
sources configured in .yml files and install only the necessary dependencies. | ||
This change also affects development watchers, which will install connectors as | ||
the developer adds them. However, it is the responsability of the developers | ||
to uninstall any unused connectors, if a particular source is removed. | ||
## 1.1.2 | ||
@@ -4,0 +21,0 @@ |
@@ -11,3 +11,3 @@ import { BaseConnector, CompiledQuery, ResolvedParam } from '@latitude-data/base-connector'; | ||
}; | ||
export declare class BigQueryConnector extends BaseConnector { | ||
export default class BigQueryConnector extends BaseConnector { | ||
private params; | ||
@@ -14,0 +14,0 @@ constructor(rootPath: string, connectionParams: ConnectionParams); |
@@ -139,3 +139,3 @@ import { BigQuery } from '@google-cloud/bigquery'; | ||
export { BigQueryConnector }; | ||
export { BigQueryConnector as default }; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@latitude-data/bigquery-connector", | ||
"version": "1.1.2", | ||
"version": "2.0.0", | ||
"license": "LGPL", | ||
@@ -5,0 +5,0 @@ "description": "BigQuery connector for Latitude", |
@@ -22,3 +22,3 @@ import { BigQuery, BigQueryOptions } from '@google-cloud/bigquery' | ||
export class BigQueryConnector extends BaseConnector { | ||
export default class BigQueryConnector extends BaseConnector { | ||
private params: ConnectionParams | ||
@@ -25,0 +25,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
30105