Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@latitude-data/clickhouse-connector

Package Overview
Dependencies
Maintainers
4
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@latitude-data/clickhouse-connector - npm Package Compare versions

Comparing version 0.1.0 to 1.0.0

17

CHANGELOG.md
# @latitude-data/clickhouse-connector
## 1.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.
## 0.1.0

@@ -4,0 +21,0 @@

2

dist/index.d.ts

@@ -20,3 +20,3 @@ import { BaseConnector, CompiledQuery, ResolvedParam } from '@latitude-data/base-connector';

};
export declare class ClickHouseConnector extends BaseConnector {
export default class ClickHouseConnector extends BaseConnector {
private client;

@@ -23,0 +23,0 @@ constructor(rootPath: string, connectionParams: ConnectionParams);

@@ -142,3 +142,3 @@ import { BaseConnector, ConnectionError, QueryError } from '@latitude-data/base-connector';

export { ClickHouseConnector };
export { ClickHouseConnector as default };
//# sourceMappingURL=index.js.map
{
"name": "@latitude-data/clickhouse-connector",
"version": "0.1.0",
"version": "1.0.0",
"license": "LGPL",

@@ -5,0 +5,0 @@ "description": "ClickHouse connector for Latitude",

import { vi, describe, it, expect, beforeEach } from 'vitest'
import { ClickHouseConnector } from './index'
import ClickHouseConnector from './index'
import { readFileSync } from 'fs'

@@ -4,0 +4,0 @@ import { createClient } from '@clickhouse/client'

@@ -32,3 +32,3 @@ import {

export class ClickHouseConnector extends BaseConnector {
export default class ClickHouseConnector extends BaseConnector {
private client: NodeClickHouseClient

@@ -35,0 +35,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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc