Skip to content

Commit

Permalink
Merge pull request #1710 from ClickHouse/pre-release-0_6_2
Browse files Browse the repository at this point in the history
Update before release 0.6.2
  • Loading branch information
Paultagoras authored Jun 29, 2024
2 parents 5c8f0aa + 65a7f1e commit 5afff1f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
## Latest

## 0.6.2

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

## 0.6.1

Expand Down
14 changes: 0 additions & 14 deletions client-v2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,6 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>${project.parent.groupId}</groupId>
<artifactId>clickhouse-client</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>${project.parent.groupId}</groupId>
Expand Down Expand Up @@ -120,13 +113,6 @@
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.parent.groupId}</groupId>
<artifactId>clickhouse-client</artifactId>
<version>${revision}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
</distributionManagement>

<properties>
<revision>0.6.1-SNAPSHOT</revision>
<revision>0.6.2-SNAPSHOT</revision>
<project.current.year>2024</project.current.year>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down Expand Up @@ -158,7 +158,7 @@
<sonar.moduleKey>${project.artifactId}</sonar.moduleKey>
<sonar.organization>zhicwu</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.projectVersion>0.6.0</sonar.projectVersion>
<sonar.projectVersion>0.6.2</sonar.projectVersion>
<sonar.cpd.exclusions>**/*0*.java,**/data/*Value.java,**/data/array/*Value.java,**/stream/*Stream.java</sonar.cpd.exclusions>
</properties>

Expand Down

0 comments on commit 5afff1f

Please sign in to comment.