Skip to content

0.2.9 (Common, Node.js, Web)

Compare
Choose a tag to compare
@slvrtrn slvrtrn released this 19 Jan 17:41
· 106 commits to main since this release

New features

  • It is now possible to set additional HTTP headers for outgoing ClickHouse requests. This might be useful if, for example, you have a reverse proxy with authorization. (@teawithfruit)
const client = createClient({
  additional_headers: {
    'X-ClickHouse-User': 'clickhouse_user',
    'X-ClickHouse-Key': 'clickhouse_password',
  },
})