Skip to content

Commit

Permalink
FMWK-173 Prepare version 4.2.0 (#547)
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr authored Apr 4, 2023
1 parent 7612ffb commit 655ded4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ The documentation for this project can be found on [javadoc.io](https://www.java

| Spring Data Aerospike | Spring Boot | Aerospike Client | Aerospike Reactor Client | Aerospike Server |
|:----------------------|:-------------|:-----------------|:-------------------------|:-----------------|
| 4.2.x | 3.0.x | 6.1.x | 6.1.x | 5.2.x.x + |
| 4.1.x | 3.0.x | 6.1.x | 6.1.x | 5.2.x.x + |
| 3.5.x | 2.7.x | 6.1.x | 6.1.x | 5.2.x.x + |
| 3.4.x | 2.6.x | 5.1.x | 5.1.x | 5.2.x.x + |
Expand All @@ -57,7 +58,7 @@ Add the Maven dependency:
<dependency>
<groupId>com.aerospike</groupId>
<artifactId>spring-data-aerospike</artifactId>
<version>4.0.0</version>
<version>4.2.0</version>
</dependency>
```

Expand Down
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.aerospike</groupId>
<artifactId>spring-data-aerospike</artifactId>
<version>4.1.0</version>
<version>4.2.0</version>
<name>Spring Data Aerospike</name>
<organization>
<name>Aerospike Inc.</name>
Expand All @@ -16,27 +16,27 @@
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>3.0.2</version>
<version>3.0.4</version>
</parent>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springdata.commons>3.0.2</springdata.commons>
<springdata.keyvalue>3.0.2</springdata.keyvalue>
<springdata.commons>3.0.4</springdata.commons>
<springdata.keyvalue>3.0.4</springdata.keyvalue>
<spring-cloud-starter-bootstrap>4.0.1</spring-cloud-starter-bootstrap>
<spring-boot-starter-test>3.0.3</spring-boot-starter-test>
<spring-boot-starter-test>3.0.5</spring-boot-starter-test>
<maven.javadoc.plugin>3.3.0</maven.javadoc.plugin>
<maven.gpg.plugin>1.6</maven.gpg.plugin>
<aerospike>6.1.7</aerospike>
<aerospike>6.1.8</aerospike>
<aerospike-reactor>6.1.2</aerospike-reactor>
<reactor-test>3.5.3</reactor-test>
<embedded-aerospike>2.3.1</embedded-aerospike>
<jodatime>2.12.2</jodatime>
<reactor-test>3.5.4</reactor-test>
<embedded-aerospike>2.3.2</embedded-aerospike>
<jodatime>2.12.5</jodatime>
<lombok>1.18.26</lombok>
<awaitility>4.2.0</awaitility>
<logback.test>1.4.5</logback.test>
<logback.test>1.4.6</logback.test>
<hibernate.validator>8.0.0.Final</hibernate.validator>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -835,8 +835,8 @@ public Exp filterExp(Map<String, Object> map) {
// + 1L to the valueEnd since the valueEnd is exclusive
Exp upperLimit = Exp.val(getValue2(map).toLong() + 1L);

// Long.MAX_VALUE will not be processed correctly if given as an inclusive parameter as it will cause
// overflow
// Long.MAX_VALUE will not be processed correctly if given as an inclusive parameter
// as it will cause overflow
if (getValue2(map).toLong() == Long.MAX_VALUE) upperLimit = null;


Expand Down Expand Up @@ -864,8 +864,8 @@ public Exp filterExp(Map<String, Object> map) {
// + 1L to the valueEnd since the valueEnd is exclusive (both begin and values should be included).
Exp upperLimit = Exp.val(getValue2(map).toLong() + 1L);

// Long.MAX_VALUE will not be processed correctly if given as an inclusive parameter as it will cause
// overflow
// Long.MAX_VALUE will not be processed correctly if given as an inclusive parameter
// as it will cause overflow
if (getValue2(map).toLong() == Long.MAX_VALUE) upperLimit = null;


Expand Down

0 comments on commit 655ded4

Please sign in to comment.