Skip to content

Commit 5afff1f

Browse files
authored
Merge pull request #1710 from ClickHouse/pre-release-0_6_2
Update before release 0.6.2
2 parents 5c8f0aa + 65a7f1e commit 5afff1f

File tree

3 files changed

+9
-16
lines changed

3 files changed

+9
-16
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
## Latest
22

3+
## 0.6.2
4+
35
### New Features
46
- Describe non-executed SELECT queries in prepared statements to provide metadata (https://github.com/ClickHouse/clickhouse-java/issues/1430)
7+
- Command execution in the client API (https://github.com/ClickHouse/clickhouse-java/pull/1693)
8+
- Added `com.clickhouse.client.ClickHouseResponseSummary#getQueryId()` (https://github.com/ClickHouse/clickhouse-java/issues/1636)
9+
- Added support for SSL for the Client V2
10+
- Added proxy support for Client V2 (https://github.com/ClickHouse/clickhouse-java/pull/1694)
11+
- Added more examples for Client V2 (https://github.com/ClickHouse/clickhouse-java/pull/1709)
512

613
## 0.6.1
714

client-v2/pom.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,6 @@
8282
<scope>provided</scope>
8383
</dependency>
8484

85-
<dependency>
86-
<groupId>${project.parent.groupId}</groupId>
87-
<artifactId>clickhouse-client</artifactId>
88-
<version>${revision}</version>
89-
<scope>compile</scope>
90-
</dependency>
91-
9285
<!-- Test dependencies -->
9386
<dependency>
9487
<groupId>${project.parent.groupId}</groupId>
@@ -120,13 +113,6 @@
120113
<version>${testng.version}</version>
121114
<scope>test</scope>
122115
</dependency>
123-
<dependency>
124-
<groupId>${project.parent.groupId}</groupId>
125-
<artifactId>clickhouse-client</artifactId>
126-
<version>${revision}</version>
127-
<type>test-jar</type>
128-
<scope>test</scope>
129-
</dependency>
130116
</dependencies>
131117

132118
<build>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
</distributionManagement>
8686

8787
<properties>
88-
<revision>0.6.1-SNAPSHOT</revision>
88+
<revision>0.6.2-SNAPSHOT</revision>
8989
<project.current.year>2024</project.current.year>
9090
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9191
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -158,7 +158,7 @@
158158
<sonar.moduleKey>${project.artifactId}</sonar.moduleKey>
159159
<sonar.organization>zhicwu</sonar.organization>
160160
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
161-
<sonar.projectVersion>0.6.0</sonar.projectVersion>
161+
<sonar.projectVersion>0.6.2</sonar.projectVersion>
162162
<sonar.cpd.exclusions>**/*0*.java,**/data/*Value.java,**/data/array/*Value.java,**/stream/*Stream.java</sonar.cpd.exclusions>
163163
</properties>
164164

0 commit comments

Comments
 (0)