Skip to content

Commit fcb4959

Browse files
chore: upgrade dependencies
1 parent 638f848 commit fcb4959

2 files changed

Lines changed: 25 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
## 8.1.0 [unreleased]
22

3+
### Dependencies
4+
5+
Update dependencies:
6+
7+
#### Build:
8+
1. [#908](https://github.com/influxdata/influxdb-client-java/pull/908):
9+
1. Add dependencies:
10+
- `junit-bom`
11+
- `junit-platform-launcher`
12+
2. Upgrade dependencies:
13+
- `surefire` to `3.5.5`
14+
- `junit` to `5.13.4`
15+
316
## 8.0.0 [2026-04-23]
417

518
:warning: The `spring` module now targets Spring Boot 4.x. Applications using `com.influxdb:influxdb-client-java-spring` should upgrade to Spring Boot 4.x.

pom.xml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
<dependency.gson.version>2.12.1</dependency.gson.version>
115115
<dependency.io.reactivex.rxjava3>3.1.10</dependency.io.reactivex.rxjava3>
116116

117-
<plugin.surefire.version>3.5.2</plugin.surefire.version>
117+
<plugin.surefire.version>3.5.5</plugin.surefire.version>
118118
<plugin.javadoc.version>3.12.0</plugin.javadoc.version>
119119
<plugin.checkstyle.version>3.6.0</plugin.checkstyle.version>
120120
<plugin.jacoco.version>0.8.12</plugin.jacoco.version>
@@ -123,7 +123,7 @@
123123

124124
<pekko.version>1.6.0</pekko.version>
125125
<kotlin.version>2.1.10</kotlin.version>
126-
<junit-jupiter.version>5.11.4</junit-jupiter.version>
126+
<junit-jupiter.version>5.13.4</junit-jupiter.version>
127127
<kotlin-coroutines.version>1.10.2</kotlin-coroutines.version>
128128
<mockito.version>5.0.0</mockito.version>
129129
</properties>
@@ -133,6 +133,12 @@
133133
<groupId>com.google.code.findbugs</groupId>
134134
<artifactId>jsr305</artifactId>
135135
</dependency>
136+
137+
<dependency>
138+
<groupId>org.junit.platform</groupId>
139+
<artifactId>junit-platform-launcher</artifactId>
140+
<scope>test</scope>
141+
</dependency>
136142
</dependencies>
137143

138144
<build>
@@ -663,9 +669,11 @@
663669
</dependency>
664670

665671
<dependency>
666-
<groupId>org.junit.jupiter</groupId>
667-
<artifactId>junit-jupiter-engine</artifactId>
672+
<groupId>org.junit</groupId>
673+
<artifactId>junit-bom</artifactId>
668674
<version>${junit-jupiter.version}</version>
675+
<type>pom</type>
676+
<scope>import</scope>
669677
</dependency>
670678

671679
<dependency>

0 commit comments

Comments
 (0)