File tree Expand file tree Collapse file tree 6 files changed +10
-6
lines changed
src/main/java/oracle/nosql/driver/ops Expand file tree Collapse file tree 6 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) .
4
4
5
- ## [ Unreleased ]
5
+ ## [ 5.4.10 ] 2023-04-25
6
6
7
7
### Added
8
8
- On-premises only: added support for setting namespace on a per-request basis
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ project. The version changes with each release.
37
37
<dependency>
38
38
<groupId>com.oracle.nosql.sdk</groupId>
39
39
<artifactId>nosqldriver</artifactId>
40
- <version>5.4.9 </version>
40
+ <version>5.4.10 </version>
41
41
</dependency>
42
42
```
43
43
Original file line number Diff line number Diff line change 29
29
30
30
<groupId >com.oracle.nosql.sdk</groupId >
31
31
<artifactId >nosqldriver</artifactId >
32
- <version >5.4.9 </version >
32
+ <version >5.4.10 </version >
33
33
<packaging >jar</packaging >
34
34
35
35
<organization >
Original file line number Diff line number Diff line change @@ -502,13 +502,15 @@ public boolean getIsRefresh() {
502
502
* table is currently over its configured throughput limit.
503
503
* Otherwise, allow DRL to delay request processing to match
504
504
* table limits (default).
505
+ * @param preferThrottling if throttling is preferred
505
506
*/
506
507
public void setPreferThrottling (boolean preferThrottling ) {
507
508
this .preferThrottling = preferThrottling ;
508
509
}
509
510
510
511
/**
511
512
* @hidden
513
+ * @return true if throttling is preferred
512
514
*/
513
515
public boolean getPreferThrottling () {
514
516
return preferThrottling ;
@@ -520,13 +522,15 @@ public boolean getPreferThrottling() {
520
522
* Opt-in to using Distributed Rate Limiting (DRL). This setting
521
523
* will eventually be deprecated, as all requests will eventually
522
524
* use DRL unconditionally in the cloud.
525
+ * @param drlOptIn opt in to using DRL in the cloud
523
526
*/
524
527
public void setDRLOptIn (boolean drlOptIn ) {
525
528
this .drlOptIn = drlOptIn ;
526
529
}
527
530
528
531
/**
529
532
* @hidden
533
+ * @return true if opted in to using DRL in the cloud
530
534
*/
531
535
public boolean getDRLOptIn () {
532
536
return drlOptIn ;
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
5
<groupId >com.oracle.nosql.sdk</groupId >
6
- <version >5.4.9 </version >
6
+ <version >5.4.10 </version >
7
7
<artifactId >nosql-java-sdk-examples</artifactId >
8
8
<name >Oracle NoSQL Database Java Examples</name >
9
9
<description >Java examples for Oracle NoSQL Database</description >
25
25
<dependency >
26
26
<groupId >com.oracle.nosql.sdk</groupId >
27
27
<artifactId >nosqldriver</artifactId >
28
- <version >5.4.9 </version >
28
+ <version >5.4.10 </version >
29
29
</dependency >
30
30
</dependencies >
31
31
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >com.oracle.nosql.sdk</groupId >
8
8
<artifactId >nosql-java-sdk</artifactId >
9
- <version >5.4.9 </version >
9
+ <version >5.4.10 </version >
10
10
<packaging >pom</packaging >
11
11
<name >Oracle NoSQL SDK</name >
12
12
<description >
You can’t perform that action at this time.
0 commit comments