Skip to content

Commit

Permalink
gh-113 Security fix release
Browse files Browse the repository at this point in the history
Bump cartridge-java version to 0.9.1
Bump spring to 5.3.23.RELEASE
Bump spring-boot to 2.6.3
  • Loading branch information
dkasimovskiy authored and akudiyar committed Oct 28, 2022
1 parent d45f5be commit 299e2fb
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -56,7 +58,7 @@ Add the Maven dependency:
<dependency>
<groupId>io.tarantool</groupId>
<artifactId>spring-data-tarantool</artifactId>
<version>0.5.1</version>
<version>0.5.2</version>
</dependency>
```

Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@
</scm>

<properties>
<spring.version>5.2.13.RELEASE</spring.version>
<spring-boot.version>2.3.2.RELEASE</spring-boot.version>
<driver.version>0.8.0</driver.version>
<testcontainers.version>0.4.6</testcontainers.version>
<spring.version>5.3.23</spring.version>
<spring-boot.version>2.6.3</spring-boot.version>
<driver.version>0.9.1</driver.version>
<testcontainers.version>0.5.0</testcontainers.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<logging.config>${project.basedir}/src/test/resources/logback-test.xml</logging.config>
Expand Down Expand Up @@ -103,7 +103,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.7.0-M1</version>
<version>5.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -115,13 +115,13 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.15.1</version>
<version>1.17.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.15.1</version>
<version>1.17.4</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ public void delete(T entity) {
tarantoolOperations.remove(entity, entityInformation.getJavaType());
}

@Override
public void deleteAllById(Iterable<? extends ID> ids) {
throw new UnsupportedOperationException("Delete by multiple ids is not supported in the driver yet");
}

@Override
public void deleteAll(Iterable<? extends T> iterable) {
throw new UnsupportedOperationException("Delete by multiple ids is not supported in the driver yet");
Expand Down

0 comments on commit 299e2fb

Please sign in to comment.