Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
parameters:
default-maven-image:
type: string
default: "cimg/openjdk:11.0"
default: "cimg/openjdk:17.0"

executors:
docker-amd64-image:
Expand Down Expand Up @@ -225,7 +225,7 @@ workflows:
alias: tests-java-jdk-old
parameters:
exe: [ docker-amd64-image, docker-arm64-image ]
maven-image: [ << pipeline.parameters.default-maven-image >>, "cimg/openjdk:17.0", "cimg/openjdk:21.0" ]
maven-image: [ << pipeline.parameters.default-maven-image >>, "cimg/openjdk:21.0" ]
# Java test matrix for JDK 25+
- tests-java:
matrix:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## 1.11.0 [unreleased]

### Breaking Changes

1. [#407](https://github.com/InfluxCommunity/influxdb3-java/pull/407): Upgrade minimum JDK requirement to version 17.

## 1.10.0 [2026-06-11]

### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ which allows you to execute SQL queries against InfluxDB IOx.

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.

> :warning: This client requires Java 11 and is compatible up to and including Java 25.
> :warning: This client requires Java 17 and is compatible up to and including Java 25.
## Installation

Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<release>11</release>
<release>17</release>
</configuration>
</plugin>

Expand Down
4 changes: 1 addition & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -383,9 +383,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<source>11</source>
<release>11</release>
<target>11</target>
<release>17</release>
</configuration>
</plugin>

Expand Down
Loading