Skip to content

Releases: ClickHouse/metabase-clickhouse-driver

1.4.0

08 Mar 23:29
ffc885d
Compare
Choose a tag to compare

Metabase 0.49.x only.

New features

  • Added Metabase 0.49.x support.

Bug fixes

  • Fixed an incorrect substitution for the current day filter with DateTime columns. (#216)

1.3.4

26 Feb 14:41
979a3ac
Compare
Choose a tag to compare

New features

  • If introspected ClickHouse version is lower than 23.8, the driver will not use startsWithUTF8/endsWithUTF8 and fall back to their non-UTF8 counterparts instead. There is a drawback in this compatibility mode: potentially incorrect filtering results when working with non-latin strings. If your use case includes filtering by columns with such strings and you experience these issues, consider upgrading your ClickHouse server to 23.8+. (#224)

1.3.3

16 Jan 18:05
884beef
Compare
Choose a tag to compare

Bug fixes

  • Fixed an issue where it was not possible to create a connection with multiple databases using TLS. (#215)

1.3.2

12 Jan 11:11
3aabb96
Compare
Choose a tag to compare

Bug fixes

  • Remove can-connect? method override which could cause issues with editing or creating new connections. (#212)

1.3.1

21 Dec 14:28
77b9082
Compare
Choose a tag to compare

Metabase 0.48.x only.

Bug fixes

  • Fixed incorrect serialization of Array(UInt8) columns (#209)

1.3.0

07 Dec 07:11
dd06c14
Compare
Choose a tag to compare

Metabase 0.48.x only.

New features

  • Address breaking changes and support Metabase 0.48.x.

Bug fixes

  • Fixed last/next minutes/hours filters with variables creating incorrect queries due to an unnecessary CAST col AS date call. (#87, #196)

1.2.5

22 Nov 16:15
e0b270b
Compare
Choose a tag to compare

Metabase 0.47.7+ only.

New features

1.2.4

20 Nov 20:51
6089b7f
Compare
Choose a tag to compare

Metabase 0.47.7+ only.

Bug fixes

  • Fixed UI question -> SQL conversion creating incorrect queries due to superfluous spaces in columns/tables/database names. (#195)

1.2.3

09 Nov 15:47
6377168
Compare
Choose a tag to compare

Bug fixes

  • Fixed LowCardinality(Nullable) types introspection, where it was incorrectly reported as type/* (#203)

1.2.2

29 Sep 22:30
b199284
Compare
Choose a tag to compare

Important

  • :connection-impersonation feature from 0.47 is temporarily disabled due to the issues with cluster deployments. See #192 for more details.

Bug fixes

  • Removed forward slash from serialized IPv4/IPv6 columns. NB: IPv4/IPv6 columns are temporarily resolved as type/TextLike instead of type/IPAddress base type due to an unexpected result leading to an exception thrown in Metabase 0.47 type check. It is fixed in Metabase master, but it is not released yet.
  • Removed superfluous CAST calls from generated queries that use Date* columns and/or intervals.