Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/).

## [1.6.0] [not yet released]
## [1.6.0]
### Added
- Added support for composite primary keys.

### Changed
- Upgrade NoSQL Java SDK dependency to version 5.4.10.

## [1.5.0]
### Added
- Added support for java.util.Map and similar types as mapping types.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ project. The version changes with each release.
<dependency>
<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>spring-data-oracle-nosql</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
</dependency>
```

Expand Down Expand Up @@ -127,7 +127,7 @@ Note: Depending on individual scenario use the appropriate AuthorizationProvider
[setup](https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/callingservicesfrominstances.htm).

```java
SignatureProvider.createWithInstancePrincipal()
oracle.nosql.driver.iam.SignatureProvider.createWithInstancePrincipal()
```

- For cloud simulator use:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.oracle.nosql.sdk</groupId>
<artifactId>spring-data-oracle-nosql</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>

<name>Oracle NoSQL Database SDK for Spring Data</name>
<description>Oracle NoSQL Database SDK for Spring Data</description>
Expand Down Expand Up @@ -45,7 +45,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>MM-dd-HH-mm-ss</maven.build.timestamp.format>

<nosqldriver.version>5.4.9</nosqldriver.version>
<nosqldriver.version>5.4.10</nosqldriver.version>

<spring.springframework.version>5.3.27</spring.springframework.version>
<spring.data.version>2.7.0</spring.data.version>
Expand Down