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
2
2
3
- ## 0.8.2
3
+ ### Improvements
4
+ - [ client-v2] Support for native LZ4 compression (https://github.com/ClickHouse/clickhouse-java/issues/2274 )
4
5
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
6
15
7
16
### Bug Fixes
8
17
- [ 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 54
54
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
55
55
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
56
56
57
- <clickhouse-java .version>0.8.2 -SNAPSHOT</clickhouse-java .version>
57
+ <clickhouse-java .version>0.8.3 -SNAPSHOT</clickhouse-java .version>
58
58
59
59
<compiler-plugin .version>3.8.1</compiler-plugin .version>
60
60
Original file line number Diff line number Diff line change 40
40
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
41
41
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
42
42
43
- <clickhouse-java .version>0.8.2 -SNAPSHOT</clickhouse-java .version>
43
+ <clickhouse-java .version>0.8.3 -SNAPSHOT</clickhouse-java .version>
44
44
<!-- 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>-->
46
46
47
47
<apache-httpclient .version>5.2.1</apache-httpclient .version>
48
48
Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ application {
19
19
}
20
20
21
21
repositories {
22
- mavenLocal() // for snapshots
22
+ mavenLocal() // comment to pull nightly builds instead of local cache
23
23
mavenCentral()
24
+ maven(" https://s01.oss.sonatype.org/content/repositories/snapshots/" ) // for nightly builds
24
25
}
25
26
26
27
val 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
3
3
kotlin_version =2.0.20
4
4
logback_version =1.4.14
5
5
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 1
1
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 47
47
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
48
48
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
49
49
50
- <clickhouse-java .version>0.8.2 -SNAPSHOT</clickhouse-java .version>
50
+ <clickhouse-java .version>0.8.3 -SNAPSHOT</clickhouse-java .version>
51
51
<hikaricp .version>4.0.3</hikaricp .version>
52
52
<apache-httpclient .version>5.2.1</apache-httpclient .version>
53
53
Original file line number Diff line number Diff line change 14
14
<properties >
15
15
<maven .compiler.source>1.8</maven .compiler.source>
16
16
<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>
18
18
<spring-boot-starter .version>2.7.18</spring-boot-starter .version>
19
19
</properties >
20
20
Original file line number Diff line number Diff line change 80
80
</distributionManagement >
81
81
82
82
<properties >
83
- <revision >0.8.2 -SNAPSHOT</revision >
83
+ <revision >0.8.3 -SNAPSHOT</revision >
84
84
<project .current.year>2025</project .current.year>
85
85
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
86
86
<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