diff --git a/.github/workflows/asciidoctor-ghpages.yml b/.github/workflows/asciidoctor-ghpages.yml
index c32fd66fe..4369282d2 100644
--- a/.github/workflows/asciidoctor-ghpages.yml
+++ b/.github/workflows/asciidoctor-ghpages.yml
@@ -19,7 +19,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: asciidoctor-ghpages
uses: manoelcampos/asciidoctor-ghpages-action@v2
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index abc7ae078..dca674da3 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -12,10 +12,10 @@ jobs:
steps:
# Checkout repo using https://github.com/marketplace/actions/checkout
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Set up JDK 17
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 92fcae628..597f8819c 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -6,7 +6,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Import GPG Key
uses: crazy-max/ghaction-import-gpg@v5
with:
diff --git a/.github/workflows/snyk-scan.yml b/.github/workflows/snyk-scan.yml
index c95730f2d..e3e88d3a0 100644
--- a/.github/workflows/snyk-scan.yml
+++ b/.github/workflows/snyk-scan.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/maven@master
diff --git a/README.adoc b/README.adoc
index 95ed04f6a..9b6e8cb76 100644
--- a/README.adoc
+++ b/README.adoc
@@ -56,6 +56,8 @@ Data Aerospike - Projections]
[width="100%",cols="<24%,<14%,<18%,<26%,<18%",options="header",]
|===
|Spring Data Aerospike |Spring Boot |Aerospike Client |Aerospike Reactor Client |Aerospike Server
+|4.6.x |3.2.x |7.2.x |7.1.x |5.2.x.x +
+
|4.5.x |3.1.x |7.1.x |7.0.x |5.2.x.x +
|4.4.x |3.1.x |7.0.x |7.0.x |5.2.x.x +
diff --git a/pom.xml b/pom.xml
index 10c44c1c3..9f5a425f1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.aerospike
spring-data-aerospike
- 4.5.0
+ 4.6.0
Spring Data Aerospike
Aerospike Inc.
@@ -16,7 +16,7 @@
org.springframework.data.build
spring-data-parent
- 3.1.2
+ 3.2.1
@@ -24,22 +24,22 @@
${java.version}
${java.version}
UTF-8
- 3.1.2
- 3.1.2
- 4.0.3
- 3.1.0
+ 3.2.1
+ 3.2.1
+ 3.2.0
+ 4.1.0
3.3.0
1.6
- 7.1.0
- 7.0.0
- 3.5.7
- 3.0.0
+ 7.2.0
+ 7.1.0
+ 3.6.1
+ 3.1.1
2.12.5
- 1.18.28
+ 1.18.30
4.2.0
- 1.4.11
+ 1.4.14
8.0.1.Final
- 4.1.100.Final
+ 4.1.104.Final
diff --git a/src/main/asciidoc/reference/aerospike.adoc b/src/main/asciidoc/reference/aerospike.adoc
new file mode 100644
index 000000000..e69de29bb
diff --git a/src/main/asciidoc/reference/getting-started.adoc b/src/main/asciidoc/reference/getting-started.adoc
new file mode 100644
index 000000000..e69de29bb
diff --git a/src/main/java/org/springframework/data/aerospike/repository/query/Query.java b/src/main/java/org/springframework/data/aerospike/repository/query/Query.java
index 485a98735..41e37f33d 100644
--- a/src/main/java/org/springframework/data/aerospike/repository/query/Query.java
+++ b/src/main/java/org/springframework/data/aerospike/repository/query/Query.java
@@ -20,7 +20,6 @@
import org.springframework.data.aerospike.query.Qualifier;
import org.springframework.data.domain.Sort;
import org.springframework.data.domain.Sort.Order;
-import org.springframework.data.keyvalue.core.query.KeyValueQuery;
/**
* @author Peter Milne
@@ -39,7 +38,7 @@ public class Query {
private boolean isDistinct;
/**
- * Creates new instance of {@link KeyValueQuery} with given criteria.
+ * Creates new instance of {@link Query} with given criteria.
*
* @param criteria can be {@literal null}.
*/