Skip to content

Commit 7bf1b45

Browse files
authored
[DE-1027] Spring Data 3.5 (#329)
* updated spring data version to 3.5 * fix dependency convergence * updated Java driver to version 7.20.0
1 parent 8992e46 commit 7bf1b45

File tree

6 files changed

+19
-10
lines changed

6 files changed

+19
-10
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,7 @@ workflows:
265265
spring-boot-version:
266266
- '3.3.6'
267267
- '3.4.0'
268+
- '3.5.0'
268269
tutorial:
269270
jobs:
270271
- tutorial:

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
- added support to Spring Data `3.5` (DE-1027, #329)
10+
- updated Java Driver to version `7.20.0`
11+
912
## [4.5.0] - 2024-12-12
1013

1114
- added support to Spring Data `3.4`

integration-tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.4.0</version>
8+
<version>3.5.0</version>
99
<relativePath/>
1010
</parent>
1111

1212
<groupId>com.arangodb</groupId>
1313
<artifactId>arangodb-spring-data-integration-tests</artifactId>
14-
<version>4.5.0</version>
14+
<version>4.6.0-SNAPSHOT</version>
1515

1616
<name>arangodb-spring-data-integration-tests</name>
1717
<description>ArangoDB Spring Data Integration Tests</description>

pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
<groupId>com.arangodb</groupId>
66
<artifactId>arangodb-spring-data</artifactId>
7-
<version>4.5.0</version>
7+
<version>4.6.0-SNAPSHOT</version>
88
<inceptionYear>2017</inceptionYear>
99
<packaging>jar</packaging>
1010

1111
<parent>
1212
<groupId>org.springframework.data.build</groupId>
1313
<artifactId>spring-data-parent</artifactId>
14-
<version>3.4.0</version>
14+
<version>3.5.0</version>
1515
<relativePath/>
1616
</parent>
1717

@@ -61,10 +61,10 @@
6161

6262
<properties>
6363
<java-module-name>com.arangodb.springframework</java-module-name>
64-
<arangodb.version>7.15.0</arangodb.version>
64+
<arangodb.version>7.20.0</arangodb.version>
6565

6666
<!-- enforce dependencies convergence -->
67-
<slf4j>2.0.16</slf4j>
67+
<slf4j>2.0.17</slf4j>
6868
</properties>
6969

7070
<build>
@@ -309,6 +309,11 @@
309309
<artifactId>vst-protocol</artifactId>
310310
<version>${arangodb.version}</version>
311311
</dependency>
312+
<dependency>
313+
<groupId>ch.qos.logback</groupId>
314+
<artifactId>logback-core</artifactId>
315+
<version>1.5.12</version>
316+
</dependency>
312317
</dependencies>
313318
</dependencyManagement>
314319

tutorial/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Create a Maven `pom.xml`:
3434
<relativePath/>
3535
<groupId>org.springframework.boot</groupId>
3636
<artifactId>spring-boot-starter-parent</artifactId>
37-
<version>3.4.0</version>
37+
<version>3.5.0</version>
3838
</parent>
3939

4040
<groupId>com.arangodb</groupId>
@@ -57,7 +57,7 @@ Create a Maven `pom.xml`:
5757
<dependency>
5858
<groupId>com.arangodb</groupId>
5959
<artifactId>arangodb-spring-data</artifactId>
60-
<version>4.5.0</version>
60+
<version>4.6.0-SNAPSHOT</version>
6161
</dependency>
6262
</dependencies>
6363

tutorial/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<relativePath/>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>3.4.0</version>
10+
<version>3.5.0</version>
1111
</parent>
1212

1313
<groupId>com.arangodb</groupId>
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.arangodb</groupId>
3232
<artifactId>arangodb-spring-data</artifactId>
33-
<version>4.5.0</version>
33+
<version>4.6.0-SNAPSHOT</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.assertj</groupId>

0 commit comments

Comments
 (0)