Skip to content

Commit 5e10002

Browse files
authored
Preparing for 5.4.17 release
1 parent 801e8ff commit 5e10002

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,18 @@
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.17] 2025-03-03
6+
7+
### Added
68
- PrepareQueryException. This exception is thrown if a prepared query is
79
executed after (a) the index used by the query has been dropped and then
810
re-created with a different schema, or (b) one or more of the referenced
911
tables has been altered (via the alter table statement). It is only used
1012
with server 25.1 or higher that supports it.
1113

14+
### Changed
15+
- Update netty dependency to 4.1.118.Final
16+
1217
## [5.4.16] 2024-11-21
1318

1419
### Fixed

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.15</version>
40+
<version>5.4.17</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.17-SNAPSHOT</version>
32+
<version>5.4.17</version>
3333
<packaging>jar</packaging>
3434

3535
<organization>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ public class SDKVersion {
1212
/**
1313
* The full X.Y.Z version of the current SDK
1414
*/
15-
public static final String VERSION = "5.4.16";
15+
public static final String VERSION = "5.4.17";
1616
}

examples/pom.xml

Lines changed: 1 addition & 1 deletion
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.17-SNAPSHOT</version>
6+
<version>5.4.17</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>

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.17-SNAPSHOT</version>
9+
<version>5.4.17</version>
1010
<packaging>pom</packaging>
1111
<name>Oracle NoSQL SDK</name>
1212
<description>

0 commit comments

Comments
 (0)