Skip to content

Commit 97661e0

Browse files
authored
Preparing for 5.4.9 release
1 parent 2ee296e commit 97661e0

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
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+
## [5.4.9] 2023-02-14
6+
7+
### Added
8+
- On-premises only: added support for default namespace in NoSQLHandleConfig
9+
10+
### Changed
11+
- Updated javadoc for QueryRequest try-with-resources
12+
13+
### Fixed
14+
- Fixed timeout value sent to server on internal retries
15+
516
## [5.4.8] 2023-01-05
617

718
### Fixed
@@ -11,6 +22,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
1122

1223
### Changed
1324
- Updated copyrights to 2023
25+
- Update netty dependency to 4.1.86.Final
1426

1527
## [5.4.7] 2022-12-06
1628

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.8</version>
40+
<version>5.4.9</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.8</version>
32+
<version>5.4.9</version>
3333
<packaging>jar</packaging>
3434

3535
<organization>

driver/src/main/java/oracle/nosql/driver/NoSQLHandleConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ public String getDefaultCompartment() {
10981098
* Any non-namespace qualified table name in requests and/or SQL
10991099
* statements will be resolved/qualified to the specified namespace.
11001100
*
1101-
* @param namespace the default namespace to use
1101+
* @param defaultNamespace the default namespace to use
11021102
*
11031103
* @return this
11041104
*/

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.8</version>
6+
<version>5.4.9</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.8</version>
28+
<version>5.4.9</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.8</version>
9+
<version>5.4.9</version>
1010
<packaging>pom</packaging>
1111
<name>Oracle NoSQL SDK</name>
1212
<description>

0 commit comments

Comments
 (0)