File tree Expand file tree Collapse file tree 10 files changed +39
-12
lines changed
r2dbc/clickhouse-r2dbc-spring-webflux-sample Expand file tree Collapse file tree 10 files changed +39
-12
lines changed Original file line number Diff line number Diff line change 1- ## Latest
1+ ## 0.8.3
22
3- ## 0.8.2
3+ ### Improvements
4+ - [ client-v2] Support for native LZ4 compression (https://github.com/ClickHouse/clickhouse-java/issues/2274 )
45
5- ### New Features
6+ ### Bug Fixes
7+ - [ jdbc-v2] Fixed several issues with reading database metadata in JDBC driver. (https://github.com/ClickHouse/clickhouse-java/issues/2282 )
8+ - [ jdbc-v2] Fixed settings client name in JDBC. (https://github.com/ClickHouse/clickhouse-java/issues/2233 )
9+ - [ client-v2] Fixed reading data from columns defined as ` Nullable(FixedString(N)) ` . (https://github.com/ClickHouse/clickhouse-java/issues/2218 )
10+ - [ jdbc-v2] Fixed SQL parser failure to parse SQL statement with comments (https://github.com/ClickHouse/clickhouse-java/issues/2217 )
11+ - [ client-v2] Fixed issue with excessive logging (https://github.com/ClickHouse/clickhouse-java/issues/2201 )
12+ - [ jdbc-v2] Fixed handling IP addresses (https://github.com/ClickHouse/clickhouse-java/issues/2140 )
13+
14+ ## 0.8.2
615
716### Bug Fixes
817- [ jdbc-v2] - Significantly improved performance of JDBC inserts. (https://github.com/ClickHouse/clickhouse-java/pull/2165 )
Original file line number Diff line number Diff line change 5454 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
5555 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
5656
57- <clickhouse-java .version>0.8.2 -SNAPSHOT</clickhouse-java .version>
57+ <clickhouse-java .version>0.8.3 -SNAPSHOT</clickhouse-java .version>
5858
5959 <compiler-plugin .version>3.8.1</compiler-plugin .version>
6060
Original file line number Diff line number Diff line change 4040 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
4141 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
4242
43- <clickhouse-java .version>0.8.2 -SNAPSHOT</clickhouse-java .version>
43+ <clickhouse-java .version>0.8.3 -SNAPSHOT</clickhouse-java .version>
4444 <!-- Nightly snapshot version from https://s01.oss.sonatype.org/content/repositories/snapshots/ or latest from local -->
45- <!-- <clickhouse-java.version>0.8.2 -SNAPSHOT</clickhouse-java.version>-->
45+ <!-- <clickhouse-java.version>0.8.3 -SNAPSHOT</clickhouse-java.version>-->
4646
4747 <apache-httpclient .version>5.2.1</apache-httpclient .version>
4848
Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ application {
1919}
2020
2121repositories {
22- mavenLocal() // for snapshots
22+ mavenLocal() // comment to pull nightly builds instead of local cache
2323 mavenCentral()
24+ maven(" https://s01.oss.sonatype.org/content/repositories/snapshots/" ) // for nightly builds
2425}
2526
2627val ch_java_client_version: String by extra
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ ktor_version=2.3.12
33kotlin_version =2.0.20
44logback_version =1.4.14
55
6- ch_java_client_version =0.8.2
6+ ch_java_client_version =0.8.3
Original file line number Diff line number Diff line change 11
2- ch_java_client_version =0.8.2
2+ ch_java_client_version =0.8.3
Original file line number Diff line number Diff line change 4747 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
4848 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
4949
50- <clickhouse-java .version>0.8.2 -SNAPSHOT</clickhouse-java .version>
50+ <clickhouse-java .version>0.8.3 -SNAPSHOT</clickhouse-java .version>
5151 <hikaricp .version>4.0.3</hikaricp .version>
5252 <apache-httpclient .version>5.2.1</apache-httpclient .version>
5353
Original file line number Diff line number Diff line change 1414 <properties >
1515 <maven .compiler.source>1.8</maven .compiler.source>
1616 <maven .compiler.target>1.8</maven .compiler.target>
17- <clickhouse-java .version>0.8.2 -SNAPSHOT</clickhouse-java .version>
17+ <clickhouse-java .version>0.8.3 -SNAPSHOT</clickhouse-java .version>
1818 <spring-boot-starter .version>2.7.18</spring-boot-starter .version>
1919 </properties >
2020
Original file line number Diff line number Diff line change 8080 </distributionManagement >
8181
8282 <properties >
83- <revision >0.8.2 -SNAPSHOT</revision >
83+ <revision >0.8.3 -SNAPSHOT</revision >
8484 <project .current.year>2025</project .current.year>
8585 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
8686 <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ echo $1
4+ RELEASE_VERSION=$1
5+ if [ -z " $RELEASE_VERSION " ]; then
6+ echo " Usage: $0 <release-version>"
7+ exit 1
8+ fi
9+ echo " Release version: $RELEASE_VERSION "
10+
11+ # update version in main pom.xml
12+ sed -i " s|<clickhouse-java.version>.*<\/clickhouse-java.version>|<clickhouse-java.version>${RELEASE_VERSION} <\/clickhouse-java.version>|g" pom.xml
13+
14+ # udpate examples with new version
15+ find ./examples/ -type f -name " pom.xml" -exec sed -i " s|<clickhouse-java.version>.*<\/clickhouse-java.version>|<clickhouse-java.version>${RELEASE_VERSION} -SNAPSHOT<\/clickhouse-java.version>|g" ' {}' \;
16+ find ./examples/ -type f -name " gradle.properties" -exec sed -i " s|^ch_java_client_version=.*$|ch_java_client_version=${RELEASE_VERSION} |g" ' {}' \;
17+
You can’t perform that action at this time.
0 commit comments