From 299e2fb8157e124d0189c089d923400329e4bcd7 Mon Sep 17 00:00:00 2001 From: Dmitry Kasimovskiy Date: Thu, 27 Oct 2022 19:30:49 +0300 Subject: [PATCH] gh-113 Security fix release Bump cartridge-java version to 0.9.1 Bump spring to 5.3.23.RELEASE Bump spring-boot to 2.6.3 --- CHANGELOG.md | 7 +++++++ README.md | 4 +++- pom.xml | 14 +++++++------- .../support/SimpleTarantoolRepository.java | 5 +++++ 4 files changed, 22 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26e48ff..98c410b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [0.5.2] - 2022-10-27 + +### Security +- Bump cartridge-java version to 0.9.1 ([#113](https://github.com/tarantool/cartridge-springdata/issues/113)) +- Bump spring to 5.3.23.RELEASE ([#113](https://github.com/tarantool/cartridge-springdata/issues/113)) +- Bump spring-boot to 2.6.3 ([#113](https://github.com/tarantool/cartridge-springdata/issues/113)) + ## [0.5.1] - 2022-05-20 ### Bugfixes diff --git a/README.md b/README.md index bb35a41..64fff9f 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ Tarantool database driver. | `spring-data-tarantool` Version | Spring Boot Version | |:--------------------------------|:-------------------:| | 0.x.x | 2.2.x | +| 0.3.x | 2.3.2 | +| 0.5.2 | 2.6.3 | ## Tarantool compatibility @@ -56,7 +58,7 @@ Add the Maven dependency: io.tarantool spring-data-tarantool - 0.5.1 + 0.5.2 ``` diff --git a/pom.xml b/pom.xml index abda6cf..ad452d0 100644 --- a/pom.xml +++ b/pom.xml @@ -60,10 +60,10 @@ - 5.2.13.RELEASE - 2.3.2.RELEASE - 0.8.0 - 0.4.6 + 5.3.23 + 2.6.3 + 0.9.1 + 0.5.0 UTF-8 UTF-8 ${project.basedir}/src/test/resources/logback-test.xml @@ -103,7 +103,7 @@ org.junit.jupiter junit-jupiter - 5.7.0-M1 + 5.7.0 test @@ -115,13 +115,13 @@ org.testcontainers testcontainers - 1.15.1 + 1.17.4 test org.testcontainers junit-jupiter - 1.15.1 + 1.17.4 test diff --git a/src/main/java/org/springframework/data/tarantool/repository/support/SimpleTarantoolRepository.java b/src/main/java/org/springframework/data/tarantool/repository/support/SimpleTarantoolRepository.java index b5742e8..70daa60 100644 --- a/src/main/java/org/springframework/data/tarantool/repository/support/SimpleTarantoolRepository.java +++ b/src/main/java/org/springframework/data/tarantool/repository/support/SimpleTarantoolRepository.java @@ -99,6 +99,11 @@ public void delete(T entity) { tarantoolOperations.remove(entity, entityInformation.getJavaType()); } + @Override + public void deleteAllById(Iterable ids) { + throw new UnsupportedOperationException("Delete by multiple ids is not supported in the driver yet"); + } + @Override public void deleteAll(Iterable iterable) { throw new UnsupportedOperationException("Delete by multiple ids is not supported in the driver yet");