diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a9c1e40..972ec742 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). -## [Unreleased] +## [5.4.10] 2023-04-25 ### Added - On-premises only: added support for setting namespace on a per-request basis diff --git a/README.md b/README.md index e7cfa029..ae5d11f7 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ project. The version changes with each release. com.oracle.nosql.sdk nosqldriver - 5.4.9 + 5.4.10 ``` diff --git a/driver/pom.xml b/driver/pom.xml index b2093990..7dc73d04 100644 --- a/driver/pom.xml +++ b/driver/pom.xml @@ -29,7 +29,7 @@ com.oracle.nosql.sdk nosqldriver - 5.4.9 + 5.4.10 jar diff --git a/driver/src/main/java/oracle/nosql/driver/ops/Request.java b/driver/src/main/java/oracle/nosql/driver/ops/Request.java index 42571718..4f083136 100644 --- a/driver/src/main/java/oracle/nosql/driver/ops/Request.java +++ b/driver/src/main/java/oracle/nosql/driver/ops/Request.java @@ -502,6 +502,7 @@ public boolean getIsRefresh() { * table is currently over its configured throughput limit. * Otherwise, allow DRL to delay request processing to match * table limits (default). + * @param preferThrottling if throttling is preferred */ public void setPreferThrottling(boolean preferThrottling) { this.preferThrottling = preferThrottling; @@ -509,6 +510,7 @@ public void setPreferThrottling(boolean preferThrottling) { /** * @hidden + * @return true if throttling is preferred */ public boolean getPreferThrottling() { return preferThrottling; @@ -520,6 +522,7 @@ public boolean getPreferThrottling() { * Opt-in to using Distributed Rate Limiting (DRL). This setting * will eventually be deprecated, as all requests will eventually * use DRL unconditionally in the cloud. + * @param drlOptIn opt in to using DRL in the cloud */ public void setDRLOptIn(boolean drlOptIn) { this.drlOptIn = drlOptIn; @@ -527,6 +530,7 @@ public void setDRLOptIn(boolean drlOptIn) { /** * @hidden + * @return true if opted in to using DRL in the cloud */ public boolean getDRLOptIn() { return drlOptIn; diff --git a/examples/pom.xml b/examples/pom.xml index 664b905b..466572d7 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.oracle.nosql.sdk - 5.4.9 + 5.4.10 nosql-java-sdk-examples Oracle NoSQL Database Java Examples Java examples for Oracle NoSQL Database @@ -25,7 +25,7 @@ com.oracle.nosql.sdk nosqldriver - 5.4.9 + 5.4.10 diff --git a/pom.xml b/pom.xml index f7e88ea0..e3084f60 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.oracle.nosql.sdk nosql-java-sdk - 5.4.9 + 5.4.10 pom Oracle NoSQL SDK