Skip to content

Commit 3d22cea

Browse files
committed
Preparing for 5.3.7 release.
- Bumped version to 5.3.7 - Added OC14 regions: MXP, DUS, DTM, ORK, SNN - Update netty dependency to 4.1.82.Final
1 parent 60e907d commit 3d22cea

File tree

7 files changed

+26
-10
lines changed

7 files changed

+26
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +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-
## [Unreleased]
5+
## [5.3.7] 2022-10-18
66

77
### Changed
88
- Allow application to retry a QueryRequest if it gets a timeout exception and the query only does reads
9-
- Cloud only: Updated OCI regions
9+
- Cloud only: Updated OCI regions (ORD, BGY, TIW, MXP, DUS, DTM, ORK, SNN)
10+
- Update netty dependency to 4.1.82.Final
1011

1112
### Fixed
12-
- Cloud only: Fixed an issue where a long running applications using SignatureProvider
13+
- Cloud only: Fixed an issue where a long running application using SignatureProvider
1314
with resource principal may encounter NotAuthenticated error after several minutes even
14-
if authentication succeed for the first requests.
15+
if authentication succeeds for the first requests.
1516

1617
## [5.3.6] 2022-08-23
1718

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.3.6</version>
40+
<version>5.3.7</version>
4141
</dependency>
4242
```
4343

driver/pom.xml

Lines changed: 2 additions & 2 deletions
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.3.6</version>
32+
<version>5.3.7</version>
3333
<packaging>jar</packaging>
3434

3535
<organization>
@@ -46,7 +46,7 @@
4646
<copyright>Copyright (c) 2011, 2022 Oracle and/or its affiliates. All rights reserved.</copyright>
4747
<java.apidoc>http://docs.oracle.com/javase/8/docs/api</java.apidoc>
4848
<maven.deploy.skip>false</maven.deploy.skip>
49-
<netty.version>4.1.77.Final</netty.version>
49+
<netty.version>4.1.82.Final</netty.version>
5050
<jackson.version>2.12.5</jackson.version>
5151
<bouncy.version>1.70</bouncy.version>
5252
<!-- by default, skip tests; tests require a profile -->

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,12 @@ public class Region {
128128
public static final Region AP_DCC_CANBERRA_1 = new Region("ap-dcc-canberra-1");
129129

130130
/* OC14 */
131+
public static final Region AP_DCC_DUBLIN_1 = new Region("eu-dcc-dublin-1");
132+
public static final Region AP_DCC_DUBLIN_2 = new Region("eu-dcc-dublin-2");
131133
public static final Region AP_DCC_MILAN_1 = new Region("eu-dcc-milan-1");
134+
public static final Region AP_DCC_MILAN_2 = new Region("eu-dcc-milan-2");
135+
public static final Region AP_DCC_RATING_1 = new Region("eu-dcc-rating-1");
136+
public static final Region AP_DCC_RATING_2 = new Region("eu-dcc-rating-2");
132137

133138
static {
134139
/* OC1 */
@@ -208,7 +213,12 @@ public class Region {
208213
OC10_REGIONS.put(AP_DCC_CANBERRA_1.getRegionId(), AP_DCC_CANBERRA_1);
209214

210215
/* OC14 */
216+
OC14_REGIONS.put(AP_DCC_DUBLIN_1.getRegionId(), AP_DCC_DUBLIN_1);
217+
OC14_REGIONS.put(AP_DCC_DUBLIN_2.getRegionId(), AP_DCC_DUBLIN_2);
211218
OC14_REGIONS.put(AP_DCC_MILAN_1.getRegionId(), AP_DCC_MILAN_1);
219+
OC14_REGIONS.put(AP_DCC_MILAN_2.getRegionId(), AP_DCC_MILAN_2);
220+
OC14_REGIONS.put(AP_DCC_RATING_1.getRegionId(), AP_DCC_RATING_1);
221+
OC14_REGIONS.put(AP_DCC_RATING_2.getRegionId(), AP_DCC_RATING_2);
212222
}
213223

214224
private final static MessageFormat OC1_EP_BASE = new MessageFormat(

driver/src/main/java/oracle/nosql/driver/iam/Utils.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,12 @@ class Utils {
181181
IAM_URI.put("wga", OC10_EP_BASE.format(new Object[] {"ap-dcc-canberra-1"}));
182182

183183
/* OC14 */
184+
IAM_URI.put("ork", OC14_EP_BASE.format(new Object[] {"eu-dcc-dublin-1"}));
185+
IAM_URI.put("snn", OC14_EP_BASE.format(new Object[] {"eu-dcc-dublin-2"}));
184186
IAM_URI.put("bgy", OC14_EP_BASE.format(new Object[] {"eu-dcc-milan-1"}));
187+
IAM_URI.put("mxp", OC14_EP_BASE.format(new Object[] {"eu-dcc-milan-2"}));
188+
IAM_URI.put("dus", OC14_EP_BASE.format(new Object[] {"eu-dcc-rating-1"}));
189+
IAM_URI.put("dtm", OC14_EP_BASE.format(new Object[] {"eu-dcc-rating-2"}));
185190
}
186191

187192
static String getIAMURL(String regionIdOrCode) {

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

0 commit comments

Comments
 (0)