Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 5b6017d

Browse files
committed
Release 1.53
1 parent e1432ab commit 5b6017d

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/check-jdbc-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
env:
1212
# Temporarily using a fork to disable a few failing tests
1313
METABASE_REPOSITORY: slvrtrn/metabase
14-
METABASE_VERSION: 0.52.x-ch
14+
METABASE_VERSION: 0.53.x-ch
1515

1616
jobs:
1717
check-local-current-version:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# 1.53.0
22

3+
### Improvements
4+
5+
* Adds Metabase 0.53.x support ([#287](https://github.com/ClickHouse/metabase-clickhouse-driver/pull/287), [dpsutton](https://github.com/dpsutton)).
6+
37
### Bug fixes
48

59
* Fixed OOB exception on CSV insert caused by an incompatibility with JDBC v2 ([#286](https://github.com/ClickHouse/metabase-clickhouse-driver/pull/286), [wotbrew](https://github.com/wotbrew)).

resources/metabase-plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
info:
22
name: Metabase ClickHouse Driver
3-
version: 1.52.0
3+
version: 1.53.0
44
description: Allows Metabase to connect to ClickHouse databases.
55
contact-info:
66
name: ClickHouse

src/metabase/driver/clickhouse.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
(driver/register! :clickhouse :parent #{:sql-jdbc})
3030

3131
(defmethod driver/display-name :clickhouse [_] "ClickHouse")
32-
(def ^:private product-name "metabase/1.52.0")
32+
(def ^:private product-name "metabase/1.53.0")
3333

3434
(defmethod driver/prettify-native-form :clickhouse
3535
[_ native-form]

test/metabase/test/data/clickhouse.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
:password ""
4040
:ssl false
4141
:use_server_time_zone_for_dates true
42-
:product_name "metabase/1.52.0"
42+
:product_name "metabase/1.53.0"
4343
:jdbc_ignore_unsupported_values "true"
4444
:jdbc_schema_term "schema",
4545
:max_open_connections 100

0 commit comments

Comments
 (0)