Skip to content

Commit fa7a07d

Browse files
authored
Releasing version 1.5.10
Releasing version 1.5.10
2 parents 5535b10 + c4f30c6 commit fa7a07d

File tree

215 files changed

+5880
-1083
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

215 files changed

+5880
-1083
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/).
5+
## 1.5.10 - 2019-06-18
6+
### Added
7+
- Support for moving service gateway resources across compartments in Core Services
8+
- Support for moving block storage resources across compartments in Core Services
9+
- Support for key deletion in the Key Management service
10+
11+
### Security
12+
- Due to a security vulnerability in a dependency of older versions of the Java SDK, **it is important that you upgrade to this or a later version of the Java SDK**. Jackson-databind version 2.9.8, used by prior versions of the SDK, has known security vulnerabilities. The SDK now uses Jackson-databind version 2.9.9 which fixes these vulnerabilities.
13+
514
## 1.5.9 - 2019-06-11
615
### Added
716
- Support for specifying custom boot volume sizes on instance configurations in the Compute Autoscaling service

bmc-addons/bmc-apache-connector-provider/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.oracle.oci.sdk</groupId>
77
<artifactId>oci-java-sdk-addons</artifactId>
8-
<version>1.5.9</version>
8+
<version>1.5.10</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>com.oracle.oci.sdk</groupId>
4545
<artifactId>oci-java-sdk-common</artifactId>
46-
<version>1.5.9</version>
46+
<version>1.5.10</version>
4747
</dependency>
4848
</dependencies>
4949
</project>

bmc-addons/bmc-resteasy-client-configurator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.oracle.oci.sdk</groupId>
77
<artifactId>oci-java-sdk-addons</artifactId>
8-
<version>1.5.9</version>
8+
<version>1.5.10</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>com.oracle.oci.sdk</groupId>
3838
<artifactId>oci-java-sdk-common</artifactId>
39-
<version>1.5.9</version>
39+
<version>1.5.10</version>
4040
</dependency>
4141
</dependencies>
4242
</project>

bmc-addons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.oracle.oci.sdk</groupId>
77
<artifactId>oci-java-sdk</artifactId>
8-
<version>1.5.9</version>
8+
<version>1.5.10</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

bmc-announcementsservice/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>1.5.9</version>
7+
<version>1.5.10</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-announcementsservice</artifactId>
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.oracle.oci.sdk</groupId>
1919
<artifactId>oci-java-sdk-common</artifactId>
20-
<version>1.5.9</version>
20+
<version>1.5.10</version>
2121
</dependency>
2222
</dependencies>
2323
</project>

bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ public class AnnouncementClient implements Announcement {
2727

2828
private final com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider
2929
authenticationDetailsProvider;
30-
3130
private final com.oracle.bmc.retrier.RetryConfiguration retryConfiguration;
3231

3332
/**

bmc-audit/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.oracle.oci.sdk</groupId>
77
<artifactId>oci-java-sdk</artifactId>
8-
<version>1.5.9</version>
8+
<version>1.5.10</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>com.oracle.oci.sdk</groupId>
2121
<artifactId>oci-java-sdk-common</artifactId>
22-
<version>1.5.9</version>
22+
<version>1.5.10</version>
2323
</dependency>
2424
</dependencies>
2525

bmc-audit/src/main/java/com/oracle/bmc/audit/AuditClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ public class AuditClient implements Audit {
2929

3030
private final com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider
3131
authenticationDetailsProvider;
32-
3332
private final com.oracle.bmc.retrier.RetryConfiguration retryConfiguration;
3433

3534
/**

bmc-autoscaling/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.oracle.oci.sdk</groupId>
66
<artifactId>oci-java-sdk</artifactId>
7-
<version>1.5.9</version>
7+
<version>1.5.10</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-autoscaling</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.oracle.oci.sdk</groupId>
1717
<artifactId>oci-java-sdk-common</artifactId>
18-
<version>1.5.9</version>
18+
<version>1.5.10</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public class AutoScalingClient implements AutoScaling {
3030

3131
private final com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider
3232
authenticationDetailsProvider;
33-
3433
private final com.oracle.bmc.retrier.RetryConfiguration retryConfiguration;
3534

3635
/**

0 commit comments

Comments
 (0)