Releases: hasura/ndc-clickhouse
Releases · hasura/ndc-clickhouse
v1.1.2
- Pin Docker base image to ubuntu:24.04 to address CVE-2025-68973
v1.1.1
- Improve error reporting of malformed column data types in configuration and introspection
v1.1.0
- ClickHouse 25.1 serializes booleans as 1/0 when using
FORMAT JSON. We only used that in introspection. Change it to usetoJSONStringinstead. - Fix returning explain query plan
v1.0.5
v1.0.4
- Implement PrintSchemaAndCapabilities command. Enables the ddn CLI to perform introspection without needing to start an instance of the connector, which makes introspection faster. Note the DDN CLI does not yet implement this.
- Bug fix: scalar aggregates may return other scalars, creating dependencies. Fix schema response not including those scalar type dependencies
v1.0.3
- Update SDK version to enable unauthorized access to health endpoint
v1.0.2
- Allow
DateTime64shorthand forDateTime64(3) - Allow
Decimalshorthand forDecimal(10, 0) - Make datatypes case insensitive
- When introspection returns no columns (parameterized view issue), preserve any manually written columns
- Correct support for casting from JSON Objects paramters to named Tuples, and JSON Arrays to anonymous tuples
- Fix printing tuples in bound parameters
v1.0.1
- Bug fix: remove erroneous group by and order by clauses in
foreachqueries. Remote relationships should now function as expected. The previous fix was incorrect.
v1.0.0
- Stable Release
v0.2.11
- Bugfix: add missing group by clause for
foreachqueries. This should fix remote relationships.