Skip to content

Commit 5b6f227

Browse files
authored
Libupgrade (#9)
Upgraded all dependent libraries to the latest versions. Added new deleteAllById() methods in Simple[Reactive]NosqlRepository classes. Passes tests with JDK 12.0.2, maven 3.6.3 and 3.8.4. Updated copyright to 2022. Increased version to 1.2.1. Updated Changelog. Updated README.md file.
1 parent 4c5df87 commit 5b6f227

File tree

98 files changed

+127
-115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+127
-115
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions

README.md

Lines changed: 7 additions & 7 deletions

RELEASE_NOTES.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Oracle NoSQL SDK for Spring Data
2-
V1.1.0
1+
Oracle NoSQL SDK for Spring Data
32
Release Notes
43

54
= INTRODUCTION =

config/checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ page at http://checkstyle.sourceforge.net/config.html -->
1515

1616
<module name="Header">
1717
<property name="header"
18-
value="/*-\n * Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.\n *\n * Licensed under the Universal Permissive License v 1.0 as shown at\n * https://oss.oracle.com/licenses/upl/\n */"/>
18+
value="/*-\n * Copyright (c) 2020, 2022 Oracle and/or its affiliates. All rights reserved.\n *\n * Licensed under the Universal Permissive License v 1.0 as shown at\n * https://oss.oracle.com/licenses/upl/\n */"/>
1919
<property name="fileExtensions" value="java"/>
2020
</module>
2121

pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.oracle.nosql.sdk</groupId>
88
<artifactId>spring-data-oracle-nosql</artifactId>
9-
<version>1.2.0</version>
9+
<version>1.2.1</version>
1010

1111
<name>Oracle NoSQL Database SDK for Spring Data</name>
1212
<description>Oracle NoSQL Database SDK for Spring Data</description>
@@ -45,17 +45,17 @@
4545
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4646
<maven.build.timestamp.format>MM-dd-HH-mm-ss</maven.build.timestamp.format>
4747

48-
<nosqldriver.version>5.2.26</nosqldriver.version>
48+
<nosqldriver.version>5.3.1</nosqldriver.version>
4949

50-
<spring.springframework.version>5.2.9.RELEASE</spring.springframework.version>
51-
<spring.data.version>2.3.4.RELEASE</spring.data.version>
52-
<org.apache.commons.commons-lang3.version>3.11</org.apache.commons.commons-lang3.version>
53-
<reactor.core.version>3.3.10.RELEASE</reactor.core.version>
50+
<spring.springframework.version>5.3.18</spring.springframework.version>
51+
<spring.data.version>2.6.2</spring.data.version>
52+
<org.apache.commons.commons-lang3.version>3.12.0</org.apache.commons.commons-lang3.version>
53+
<reactor.core.version>3.4.14</reactor.core.version>
5454

55-
<spring.boot.starter.test.version>2.3.4.RELEASE</spring.boot.starter.test.version>
56-
<junit.junit.version>4.13.1</junit.junit.version>
57-
<project.reactor.test.version>3.3.0.RELEASE</project.reactor.test.version>
58-
<slf4j.version>1.7.30</slf4j.version>
55+
<spring.boot.starter.test.version>2.6.3</spring.boot.starter.test.version>
56+
<junit.junit.version>4.13.2</junit.junit.version>
57+
<project.reactor.test.version>3.4.14</project.reactor.test.version>
58+
<slf4j.version>1.7.36</slf4j.version>
5959
</properties>
6060

6161
<dependencies>
@@ -418,8 +418,8 @@
418418
or a running cloud simulator. Required information:
419419
o endpoint
420420
Examples:
421-
mvn -Ptest-cloudsim test -DargLine="test.endpoint=http://localhost:8080"
422-
mvn -Ptest-onprem test -DargLine="test.endpoint=http://localhost:8090"
421+
mvn -Ptest-cloudsim test -DargLine="-Dtest.endpoint=http://localhost:8080"
422+
mvn -Ptest-onprem test -DargLine="-Dtest.endpoint=http://localhost:8090"
423423

424424
These tests are not designed to work directly against the cloud service
425425
as they require a high rate of DDL operations and generally use more

src/main/java/com/oracle/nosql/spring/data/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2022 Oracle and/or its affiliates. All rights reserved.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl/

src/main/java/com/oracle/nosql/spring/data/NosqlDbFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2022 Oracle and/or its affiliates. All rights reserved.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl/

src/main/java/com/oracle/nosql/spring/data/config/AbstractNosqlConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2022 Oracle and/or its affiliates. All rights reserved.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl/

src/main/java/com/oracle/nosql/spring/data/config/NosqlConfigurationSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2022 Oracle and/or its affiliates. All rights reserved.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl/

src/main/java/com/oracle/nosql/spring/data/config/NosqlDbConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2022 Oracle and/or its affiliates. All rights reserved.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl/

0 commit comments

Comments
 (0)