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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

### Dependencies

- Pin `spring-data-keyvalue` to 3.5.13 in `tarantool-spring-data-35` (parent defaults
it to `${spring.boot.version}` = 3.5.16, which does not exist on Maven Central)
- Bump spring-boot version from 3.5.13 to 3.5.16 in tarantool-spring-data-35

## [1.7.0] - 2026-06-29

### Spring-data
Expand Down
10 changes: 9 additions & 1 deletion tarantool-spring-data/tarantool-spring-data-35/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<spring.boot.version>3.5.13</spring.boot.version>
<spring.boot.version>3.5.16</spring.boot.version>
<!--spring-data-keyvalue has not published a 3.5.14+ release; pin to 3.5.13,
the latest matching artifact on Maven Central-->
<spring-data-keyvalue.version>3.5.13</spring-data-keyvalue.version>
<shared.dir>${project.parent.parent.basedir}/tarantool-shared-resources/</shared.dir>
<license.header.file>${project.parent.parent.basedir}/LICENSE_HEADER.txt</license.header.file>
</properties>
Expand All @@ -28,5 +31,10 @@
<groupId>io.tarantool</groupId>
<artifactId>tarantool-spring-data-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-keyvalue</artifactId>
<version>${spring-data-keyvalue.version}</version>
</dependency>
Comment thread
MaxSiominDev marked this conversation as resolved.
</dependencies>
</project>