From 9d70d965ddb9e7a13561fb15bcc8c80caad0d5a7 Mon Sep 17 00:00:00 2001 From: yrizhkov Date: Tue, 28 Jan 2025 10:43:42 +0200 Subject: [PATCH 1/3] FMWK-661 Update dependencies and set version to 2.5.2 --- pom.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index c64dbe7..0370b6a 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.aerospike java-object-mapper - 2.5.1 + 2.5.2 jar Aerospike Object Mapper @@ -28,13 +28,13 @@ 3.13.0 3.3.0 2.0.1.Final - 8.1.2 - 8.1.2 + 9.0.3 + 9.0.2 3.14.0 - 2.17.2 - 1.18.34 - 3.6.7 - 5.10.3 + 2.18.2 + 1.18.36 + 3.7.2 + 5.11.4 From 6d41685dd78c902a7322a95a3549acbbe542fd58 Mon Sep 17 00:00:00 2001 From: yrizhkov Date: Tue, 28 Jan 2025 11:00:39 +0200 Subject: [PATCH 2/3] update version numbers in the readme --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 51b9b69..45705e3 100644 --- a/README.md +++ b/README.md @@ -42,16 +42,18 @@ The documentation for this project can be found on [javadoc.io](https://www.java 12. [Scans](#Scans) 13. [Queries](#Queries) -# Compatibility with Aerospike Clients - +
+ Compatibility with Aerospike Clients | Java Object Mapper Version | Aerospike Client | Aerospike Reactor Client |:---------------------------|:-----------------| :----------- -| 2.5.x | 8.1.x (jdk8) | 8.1.x +| 2.5.2 | 9.0.x (jdk8) | 9.0.x +| 2.5.0, 2.5.1 | 8.1.x (jdk8) | 8.1.x | 2.4.x | 8.1.x (jdk8) | 7.1.x | 2.1.x, 2.2.x, 2.3.x | 6.1.x | 6.1.x | 2.0.x | 5.1.x | 5.1.x | 1.2.x, 1.3.x, 1.4.x | 5.1.x | 5.0.x -| 1.1.x | 5.0.x | +| 1.1.x | 5.0.x | +
# Installing the Mapper The easiest way to use the mapper is through Maven or Gradle. For Maven, pull it in from Maven Central: @@ -60,13 +62,13 @@ The easiest way to use the mapper is through Maven or Gradle. For Maven, pull it com.aerospike java-object-mapper - 2.5.1 + 2.5.2 ``` For Gradle, you can use ``` // https://mvnrepository.com/artifact/com.aerospike/java-object-mapper -implementation group: 'com.aerospike', name: 'java-object-mapper', version: '2.5.1' +implementation group: 'com.aerospike', name: 'java-object-mapper', version: '2.5.2' ``` # Motivation and a simple example From 36592414498f629568b2071a0e618aaa1a52ec69 Mon Sep 17 00:00:00 2001 From: yrizhkov Date: Tue, 28 Jan 2025 11:04:44 +0200 Subject: [PATCH 3/3] format the compatibility table markdown --- README.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 45705e3..5745ee1 100644 --- a/README.md +++ b/README.md @@ -44,15 +44,17 @@ The documentation for this project can be found on [javadoc.io](https://www.java
Compatibility with Aerospike Clients -| Java Object Mapper Version | Aerospike Client | Aerospike Reactor Client -|:---------------------------|:-----------------| :----------- -| 2.5.2 | 9.0.x (jdk8) | 9.0.x -| 2.5.0, 2.5.1 | 8.1.x (jdk8) | 8.1.x -| 2.4.x | 8.1.x (jdk8) | 7.1.x -| 2.1.x, 2.2.x, 2.3.x | 6.1.x | 6.1.x -| 2.0.x | 5.1.x | 5.1.x -| 1.2.x, 1.3.x, 1.4.x | 5.1.x | 5.0.x -| 1.1.x | 5.0.x | + +| Java Object Mapper Version | Aerospike Client | Aerospike Reactor Client | +|----------------------------|------------------|--------------------------| +| 2.5.2 | 9.0.x (jdk8) | 9.0.x | +| 2.5.0, 2.5.1 | 8.1.x (jdk8) | 8.1.x | +| 2.4.x | 8.1.x (jdk8) | 7.1.x | +| 2.1.x, 2.2.x, 2.3.x | 6.1.x | 6.1.x | +| 2.0.x | 5.1.x | 5.1.x | +| 1.2.x, 1.3.x, 1.4.x | 5.1.x | 5.0.x | +| 1.1.x | 5.0.x | | +
# Installing the Mapper