diff --git a/documentation/doc-src/pages/spring-data/index.en.md b/documentation/doc-src/pages/spring-data/index.en.md index 156be979..ceaffb9d 100644 --- a/documentation/doc-src/pages/spring-data/index.en.md +++ b/documentation/doc-src/pages/spring-data/index.en.md @@ -12,7 +12,7 @@ using [Tarantool](https://www.tarantool.io) as a data store. - Implementation of CRUD methods for data model classes specific to working with the Tarantool cluster through the [tarantool/crud](https://github.com/tarantool/crud) library -- Working with stored procedures and LUA scripts through dynamic methods +- Working with stored procedures and Lua scripts through dynamic methods - Ability to integrate custom repository code - Flexible access configuration to Tarantool - via spring-bean @@ -23,25 +23,26 @@ using [Tarantool](https://www.tarantool.io) as a data store. ## Project Status -| tarantool-java-sdk Version | tarantool-spring-data Version | Spring Boot Version | -|:-------------------------:|:----------------------------:|:-------------------------------------------------:| -| 1.5.x | 1.5.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.13 / 3.5.8 | +| tarantool-java-sdk Version | tarantool-spring-data Version | Spring Boot Version | +|:--------------------------:|:-----------------------------:|:----------------------------------------------------------:| +| 1.5.x/1.6.x | 1.5.x/1.6.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.13 / 3.5.11 | +| 1.7.x | 1.7.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.13 / 3.5.11 / 4.0.5 | ### Tarantool Version and Supported Client Modules | Tarantool Version | CRUD API (cluster) | BOX API (single instance) | -|:----------------:|:------------------:|:------------------------:| -| 2.11.x | Yes | Yes (limited*) | -| 3.x | Yes | Yes (limited*) | +|:-----------------:|:------------------:|:-------------------------:| +| 2.11.x | Yes | Yes (limited*) | +| 3.x | Yes | Yes (limited*) | ???+ note "Note" Only the configuration and retrieval of the spring bean `TarantoolBoxClient` is supported. -| Tarantool Data Grid Version | Repository API | -|:--------------------------:|:----------------:| -| 1.x | Yes (limited*) | -| 2.x | Yes (limited*) | +| Tarantool Data Grid Version | Repository API | +|:---------------------------:|:--------------:| +| 1.x | Yes (limited*) | +| 2.x | Yes (limited*) | ???+ note "Note" @@ -84,11 +85,11 @@ Include the module in your project as follows: org.springframework.boot spring-boot-starter - 3.4.12 + 4.0.5 io.tarantool - tarantool-spring-data-35 + tarantool-spring-data-40 ${tarantool-spring-data.version} diff --git a/documentation/doc-src/pages/spring-data/index.md b/documentation/doc-src/pages/spring-data/index.md index 533f3992..a4178735 100644 --- a/documentation/doc-src/pages/spring-data/index.md +++ b/documentation/doc-src/pages/spring-data/index.md @@ -12,7 +12,7 @@ hide: - Реализация CRUD методов для классов моделей данных, специфичных для работы с кластером Tarantool через библиотеку [tarantool/crud](https://github.com/tarantool/crud) -- Работа с хранимыми процедурами и скриптами LUA через динамические методы +- Работа с хранимыми процедурами и скриптами Lua через динамические методы - Возможность интеграции пользовательского кода репозитория - Возможности гибкой настройки доступа к Tarantool - через spring-bean @@ -23,9 +23,10 @@ hide: ## Статус проекта -| Версия tarantool-java-sdk | Версия tarantool-spring-data | Версия Spring Boot | -|:-------------------------:|:----------------------------:|:-------------------------------------------------:| -| 1.5.x | 1.5.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.13 / 3.5.8 | +| Версия tarantool-java-sdk | Версия tarantool-spring-data | Версия Spring Boot | +|:-------------------------:|:----------------------------:|:----------------------------------------------------------:| +| 1.5.x/1.6.x | 1.5.x/1.6.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.13 / 3.5.11 | +| 1.7.x | 1.7.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.13 / 3.5.11 / 4.0.5 | ### Версия Tarantool и поддерживаемые модули-клиенты @@ -84,11 +85,11 @@ Tarantool можно найти org.springframework.boot spring-boot-starter - 3.5.8 + 4.0.5 io.tarantool - tarantool-spring-data-35 + tarantool-spring-data-40 ${tarantool-spring-data.version} diff --git a/documentation/doc-src/pages/spring-data/query-lua.en.md b/documentation/doc-src/pages/spring-data/query-lua.en.md index b2522bdf..da0e770a 100644 --- a/documentation/doc-src/pages/spring-data/query-lua.en.md +++ b/documentation/doc-src/pages/spring-data/query-lua.en.md @@ -2,7 +2,7 @@ title: Stored Procedures --- -## Working with Stored Procedures and LUA Scripts +## Working with Stored Procedures and Lua Scripts To work with LUA or stored procedures through `Repository`, declare a custom method ( the name is chosen at your discretion) and add the `@Query` annotation, selecting the diff --git a/documentation/doc-src/pages/spring-data/query-lua.md b/documentation/doc-src/pages/spring-data/query-lua.md index ff355231..580a44ce 100644 --- a/documentation/doc-src/pages/spring-data/query-lua.md +++ b/documentation/doc-src/pages/spring-data/query-lua.md @@ -2,7 +2,7 @@ title: Хранимые процедуры --- -## Работа с хранимыми процедурами и LUA скриптами +## Работа с хранимыми процедурами и Lua скриптами Для работы с LUA или хранимыми процедурами через `Repository` объявите пользовательский метод ( название задается по своему усмотрению) и добавьте аннотацию `@Query`, выбрав в параметрах diff --git a/documentation/doc-src/pages/testcontainers/index.en.md b/documentation/doc-src/pages/testcontainers/index.en.md index 137e5c4d..31a3efb0 100644 --- a/documentation/doc-src/pages/testcontainers/index.en.md +++ b/documentation/doc-src/pages/testcontainers/index.en.md @@ -13,7 +13,7 @@ Supported usage scenarios: Tarantool version: - [x] 3.x - - [ ] 2.11.x + - [x] 2.11.x === "TDB Cluster" diff --git a/documentation/doc-src/pages/testcontainers/index.md b/documentation/doc-src/pages/testcontainers/index.md index 0b3c08de..b39664a6 100644 --- a/documentation/doc-src/pages/testcontainers/index.md +++ b/documentation/doc-src/pages/testcontainers/index.md @@ -13,7 +13,7 @@ hide: Версия `Tarantool`: - [x] 3.x - - [ ] 2.11.x + - [x] 2.11.x === "Кластер TDB" diff --git a/tarantool-spring-data/README.md b/tarantool-spring-data/README.md index 4aa730fd..bae52611 100644 --- a/tarantool-spring-data/README.md +++ b/tarantool-spring-data/README.md @@ -20,14 +20,15 @@ data storage. ## Project Status -| tarantool-java-sdk Version | tarantool-spring-data Version | Spring Boot Version | -|:--------------------------:|:-----------------------------:|:-------------------------------------------------:| -| 1.0.0 | 1.0.0 | 2.7.18 | -| 1.1.x | 1.1.x | 2.7.18 / 3.1.10 / 3.2.4 | -| 1.2.x | 1.2.x | 2.7.18 / 3.1.10 / 3.2.4 | -| 1.3.x | 1.3.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.11 / 3.4.5 | -| 1.4.x | 1.4.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.10 | -| 1.5.x | 1.5.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.13 / 3.5.8 | +| tarantool-java-sdk Version | tarantool-spring-data Version | Spring Boot Version | +|:--------------------------:|:-----------------------------:|:----------------------------------------------------------:| +| 1.0.0 | 1.0.0 | 2.7.18 | +| 1.1.x | 1.1.x | 2.7.18 / 3.1.10 / 3.2.4 | +| 1.2.x | 1.2.x | 2.7.18 / 3.1.10 / 3.2.4 | +| 1.3.x | 1.3.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.11 / 3.4.5 | +| 1.4.x | 1.4.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.10 | +| 1.5.x/1.6.x | 1.5.x/1.6.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.13 / 3.5.11 | +| 1.7.x | 1.7.x | 2.7.18 / 3.1.10 / 3.2.4 / 3.3.13 / 3.4.13 / 3.5.11 / 4.0.5 | ### Tarantool Version and Supported Client Modules diff --git a/tarantool-spring-data/tarantool-spring-data-35/pom.xml b/tarantool-spring-data/tarantool-spring-data-35/pom.xml index ec4d0ac3..8662fef3 100644 --- a/tarantool-spring-data/tarantool-spring-data-35/pom.xml +++ b/tarantool-spring-data/tarantool-spring-data-35/pom.xml @@ -18,7 +18,7 @@ 17 17 - 3.5.10 + 3.5.11 ${project.parent.parent.basedir}/tarantool-shared-resources/ ${project.parent.parent.basedir}/LICENSE_HEADER.txt diff --git a/tarantool-spring-data/tarantool-spring-data-40/pom.xml b/tarantool-spring-data/tarantool-spring-data-40/pom.xml index 8ccd720c..059c7577 100644 --- a/tarantool-spring-data/tarantool-spring-data-40/pom.xml +++ b/tarantool-spring-data/tarantool-spring-data-40/pom.xml @@ -20,7 +20,7 @@ 17 - 4.0.4 + 4.0.5 ${project.parent.parent.basedir}/tarantool-shared-resources/ ${project.parent.parent.basedir}/LICENSE_HEADER.txt