Skip to content

Commit d0190b2

Browse files
authored
Preparing for 5.4.10 release (#62)
1 parent 1d5b6f5 commit d0190b2

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All notable changes to this project will be documented in this file.
33
The format is based on [Keep a Changelog](http://keepachangelog.com/).
44

5-
## [Unreleased]
5+
## [5.4.10] 2023-04-25
66

77
### Added
88
- On-premises only: added support for setting namespace on a per-request basis

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ project. The version changes with each release.
3737
<dependency>
3838
<groupId>com.oracle.nosql.sdk</groupId>
3939
<artifactId>nosqldriver</artifactId>
40-
<version>5.4.9</version>
40+
<version>5.4.10</version>
4141
</dependency>
4242
```
4343

driver/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<groupId>com.oracle.nosql.sdk</groupId>
3131
<artifactId>nosqldriver</artifactId>
32-
<version>5.4.9</version>
32+
<version>5.4.10</version>
3333
<packaging>jar</packaging>
3434

3535
<organization>

driver/src/main/java/oracle/nosql/driver/ops/Request.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,13 +502,15 @@ public boolean getIsRefresh() {
502502
* table is currently over its configured throughput limit.
503503
* Otherwise, allow DRL to delay request processing to match
504504
* table limits (default).
505+
* @param preferThrottling if throttling is preferred
505506
*/
506507
public void setPreferThrottling(boolean preferThrottling) {
507508
this.preferThrottling = preferThrottling;
508509
}
509510

510511
/**
511512
* @hidden
513+
* @return true if throttling is preferred
512514
*/
513515
public boolean getPreferThrottling() {
514516
return preferThrottling;
@@ -520,13 +522,15 @@ public boolean getPreferThrottling() {
520522
* Opt-in to using Distributed Rate Limiting (DRL). This setting
521523
* will eventually be deprecated, as all requests will eventually
522524
* use DRL unconditionally in the cloud.
525+
* @param drlOptIn opt in to using DRL in the cloud
523526
*/
524527
public void setDRLOptIn(boolean drlOptIn) {
525528
this.drlOptIn = drlOptIn;
526529
}
527530

528531
/**
529532
* @hidden
533+
* @return true if opted in to using DRL in the cloud
530534
*/
531535
public boolean getDRLOptIn() {
532536
return drlOptIn;

examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>com.oracle.nosql.sdk</groupId>
6-
<version>5.4.9</version>
6+
<version>5.4.10</version>
77
<artifactId>nosql-java-sdk-examples</artifactId>
88
<name>Oracle NoSQL Database Java Examples</name>
99
<description>Java examples for Oracle NoSQL Database</description>
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>com.oracle.nosql.sdk</groupId>
2727
<artifactId>nosqldriver</artifactId>
28-
<version>5.4.9</version>
28+
<version>5.4.10</version>
2929
</dependency>
3030
</dependencies>
3131

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.oracle.nosql.sdk</groupId>
88
<artifactId>nosql-java-sdk</artifactId>
9-
<version>5.4.9</version>
9+
<version>5.4.10</version>
1010
<packaging>pom</packaging>
1111
<name>Oracle NoSQL SDK</name>
1212
<description>

0 commit comments

Comments
 (0)