Skip to content

Commit 9e65dda

Browse files
feat: support java 21
1 parent 826f5ba commit 9e65dda

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.circleci/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ workflows:
160160
name: jdk-20
161161
maven-image: "cimg/openjdk:20.0"
162162
arg-line: "--add-opens=java.base/java.nio=ALL-UNNAMED"
163+
- tests-java:
164+
name: jdk-21
165+
maven-image: "cimg/openjdk:21.0"
166+
arg-line: "--add-opens=java.base/java.nio=ALL-UNNAMED"
163167
- deploy-snapshot:
164168
requires:
165169
- check-dependencies
@@ -168,6 +172,7 @@ workflows:
168172
- jdk-11
169173
- jdk-17
170174
- jdk-20
175+
- jdk-21
171176
filters:
172177
branches:
173178
only: main

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
1. [#229](https://github.com/InfluxCommunity/influxdb3-java/pull/229): Support proxy and custom ssl root certificates
66
2. [#232](https://github.com/InfluxCommunity/influxdb3-java/pull/232): Allow set rpc max message size through maxInboundMessageSize in ClientConfig
77
3. [#233](https://github.com/InfluxCommunity/influxdb3-java/pull/233): More detailed documentation about timestamp handling for query and write functions
8+
4. [#236](https://github.com/InfluxCommunity/influxdb3-java/pull/236): Supports Java 21.
89

910
## 1.0.0 [2024-12-11]
1011

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ which allows you to execute SQL queries against InfluxDB IOx.
3333

3434
We offer this [Getting Started: InfluxDB 3.0 Java Client Library](https://www.youtube.com/watch?v=EFnG7rUDvR4) video for learning more about the library.
3535

36-
> :warning: This client requires Java 11 and is compatible up to and including Java 20.
36+
> :warning: This client requires Java 11 and is compatible up to and including Java 21.
3737
3838
## Installation
3939

0 commit comments

Comments
 (0)