Skip to content

Commit 21b957b

Browse files
authored
Releasing version 1.3.0
Releasing version 1.3.0
2 parents a580a62 + 862eaca commit 21b957b

File tree

135 files changed

+2822
-575
lines changed

Some content is hidden

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

135 files changed

+2822
-575
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,24 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
1313
### Added
1414
- N/A
1515

16+
## 1.3.0 - 2018-11-01
17+
### Added
18+
- Support for modifying the route table, DHCP options, and security lists associated with a subnet in the Networking service.
19+
- Support for tagging of File Systems, Mount Targets, and Snapshots in the File Storage service.
20+
- Support for nested compartments in the Identity service
21+
- The region can be passed in via `SimpleAuthenticationDetailsProvider` and from config file using `ConfigFileAuthenticationDetailsProvider`
22+
23+
### Changed
24+
- Passphrases are now passed as `char[]` instead of as `String`
25+
- Optional headers that, when present, have to be signed are now included in the signature
26+
- Attempts to parse the body only for responses that have Content-Type set to application/json; otherwise, it bails out and raises a generic `BmcException`
27+
28+
### Deprecated
29+
- Methods accepting passphrases as `String` are deprecated; use `char[]` instead
30+
31+
### Notes
32+
- The version is bumped to 1.3.0 due to breaking changes in previous release.
33+
1634
## 1.2.49 - 2018-10-18
1735
### Added
1836
- Support for cost tracking tags in the Identity 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.2.49</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.oracle.oci.sdk</groupId>
3939
<artifactId>oci-java-sdk-common</artifactId>
40-
<version>1.2.49</version>
40+
<version>1.3.0</version>
4141
</dependency>
4242
</dependencies>
4343
</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.2.49</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

bmc-audit/pom.xml

Lines changed: 3 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.2.49</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -14,11 +14,12 @@
1414
<description>This project contains the SDK used for Oracle Cloud Infrastructure Audit Service</description>
1515
<url>https://docs.us-phoenix-1.oraclecloud.com/Content/API/SDKDocs/javasdk.htm</url>
1616

17+
1718
<dependencies>
1819
<dependency>
1920
<groupId>com.oracle.oci.sdk</groupId>
2021
<artifactId>oci-java-sdk-common</artifactId>
21-
<version>1.2.49</version>
22+
<version>1.3.0</version>
2223
</dependency>
2324
</dependencies>
2425

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface Audit extends AutoCloseable {
3030
* {@link #setRegion(Region) setRegion}.
3131
* <p>
3232
* If no known Region could be determined, it will create an endpoint based on the
33-
* default endpoint format ({@link Region#formatDefaultRegionEndpoint(Service, String)}
33+
* default endpoint format ({@link com.oracle.bmc.Region#formatDefaultRegionEndpoint(Service, String)}
3434
* and then call {@link #setEndpoint(String) setEndpoint}.
3535
* @param regionId The public region ID.
3636
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface AuditAsync extends AutoCloseable {
3030
* {@link #setRegion(Region) setRegion}.
3131
* <p>
3232
* If no known Region could be determined, it will create an endpoint based on the
33-
* default endpoint format ({@link Region#formatDefaultRegionEndpoint(Service, String)}
33+
* default endpoint format ({@link com.oracle.bmc.Region#formatDefaultRegionEndpoint(Service, String)}
3434
* and then call {@link #setEndpoint(String) setEndpoint}.
3535
* @param regionId The public region ID.
3636
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public static Builder builder() {
223223

224224
/**
225225
* Builder class for this client. The "authenticationDetailsProvider" is required and must be passed to the
226-
* {@link #build(AbstractAuthenticationDetailsProvider)} or {@link #buildAsync(AbstractAuthenticationDetailsProvider)} method.
226+
* {@link #build(AbstractAuthenticationDetailsProvider)} method.
227227
*/
228228
public static class Builder
229229
extends com.oracle.bmc.common.RegionalClientBuilder<Builder, AuditAsyncClient> {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public static Builder builder() {
229229

230230
/**
231231
* Builder class for this client. The "authenticationDetailsProvider" is required and must be passed to the
232-
* {@link #build(AbstractAuthenticationDetailsProvider)} or {@link #buildAsync(AbstractAuthenticationDetailsProvider)} method.
232+
* {@link #build(AbstractAuthenticationDetailsProvider)} method.
233233
*/
234234
public static class Builder
235235
extends com.oracle.bmc.common.RegionalClientBuilder<Builder, AuditClient> {

bmc-bom/pom.xml

Lines changed: 16 additions & 16 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.2.49</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<artifactId>oci-java-sdk-bom</artifactId>
@@ -19,88 +19,88 @@
1919
<dependency>
2020
<groupId>com.oracle.oci.sdk</groupId>
2121
<artifactId>oci-java-sdk-common</artifactId>
22-
<version>1.2.49</version>
22+
<version>1.3.0</version>
2323
<optional>false</optional>
2424
</dependency>
2525
<!-- Service modules, alpha sorted -->
2626
<dependency>
2727
<groupId>com.oracle.oci.sdk</groupId>
2828
<artifactId>oci-java-sdk-audit</artifactId>
29-
<version>1.2.49</version>
29+
<version>1.3.0</version>
3030
<optional>false</optional>
3131
</dependency>
3232
<dependency>
3333
<groupId>com.oracle.oci.sdk</groupId>
3434
<artifactId>oci-java-sdk-containerengine</artifactId>
35-
<version>1.2.49</version>
35+
<version>1.3.0</version>
3636
<optional>false</optional>
3737
</dependency>
3838
<dependency>
3939
<groupId>com.oracle.oci.sdk</groupId>
4040
<artifactId>oci-java-sdk-core</artifactId>
41-
<version>1.2.49</version>
41+
<version>1.3.0</version>
4242
<optional>false</optional>
4343
</dependency>
4444
<dependency>
4545
<groupId>com.oracle.oci.sdk</groupId>
4646
<artifactId>oci-java-sdk-database</artifactId>
47-
<version>1.2.49</version>
47+
<version>1.3.0</version>
4848
<optional>false</optional>
4949
</dependency>
5050
<dependency>
5151
<groupId>com.oracle.oci.sdk</groupId>
5252
<artifactId>oci-java-sdk-dns</artifactId>
53-
<version>1.2.49</version>
53+
<version>1.3.0</version>
5454
<optional>false</optional>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.oracle.oci.sdk</groupId>
5858
<artifactId>oci-java-sdk-email</artifactId>
59-
<version>1.2.49</version>
59+
<version>1.3.0</version>
6060
<optional>false</optional>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.oracle.oci.sdk</groupId>
6464
<artifactId>oci-java-sdk-filestorage</artifactId>
65-
<version>1.2.49</version>
65+
<version>1.3.0</version>
6666
<optional>false</optional>
6767
</dependency>
6868
<dependency>
6969
<groupId>com.oracle.oci.sdk</groupId>
7070
<artifactId>oci-java-sdk-identity</artifactId>
71-
<version>1.2.49</version>
71+
<version>1.3.0</version>
7272
<optional>false</optional>
7373
</dependency>
7474
<dependency>
7575
<groupId>com.oracle.oci.sdk</groupId>
7676
<artifactId>oci-java-sdk-loadbalancer</artifactId>
77-
<version>1.2.49</version>
77+
<version>1.3.0</version>
7878
<optional>false</optional>
7979
</dependency>
8080
<dependency>
8181
<groupId>com.oracle.oci.sdk</groupId>
8282
<artifactId>oci-java-sdk-objectstorage</artifactId>
83-
<version>1.2.49</version>
83+
<version>1.3.0</version>
8484
<optional>false</optional>
8585
</dependency>
8686
<dependency>
8787
<groupId>com.oracle.oci.sdk</groupId>
8888
<artifactId>oci-java-sdk-resourcesearch</artifactId>
8989
<optional>false</optional>
90-
<version>1.2.49</version>
90+
<version>1.3.0</version>
9191
</dependency>
9292
<dependency>
9393
<groupId>com.oracle.oci.sdk</groupId>
9494
<optional>false</optional>
9595
<artifactId>oci-java-sdk-addons-apache</artifactId>
96-
<version>1.2.49</version>
96+
<version>1.3.0</version>
9797
</dependency>
9898
<dependency>
9999
<groupId>com.oracle.oci.sdk</groupId>
100100
<artifactId>oci-java-sdk-keymanagement</artifactId>
101-
<version>1.2.49</version>
101+
<version>1.3.0</version>
102102
<optional>false</optional>
103103
</dependency>
104104
</dependencies>
105105
</dependencyManagement>
106-
</project>
106+
</project>

bmc-common/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.2.49</version>
8+
<version>1.3.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

0 commit comments

Comments
 (0)