Skip to content

Commit 6130f50

Browse files
authored
Releasing version 1.19.0
Releasing version 1.19.0
2 parents 00bb32c + ca831ed commit 6130f50

File tree

690 files changed

+105023
-309
lines changed

Some content is hidden

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

690 files changed

+105023
-309
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@ 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/).
55

6+
## 1.19.0 - 2020-06-23
7+
### Added
8+
- Support for the Data Integration service
9+
- Support for updating database home IDs on databases in the Database service
10+
- Support for backing up autonomous databases on Cloud at Customer in the Database service
11+
- Support for managing autonomous VM clusters on Cloud at Customer in the Database service
12+
- Support for accessing data assets via private endpoints in the Data Catalog service
13+
- Support for dependency archive zip files to be specified for use by applications in the Data Flow service
14+
15+
16+
### Breaking Changes
17+
- Enum `LifeCycleState` in the Data Catalog service has restricted values to `Creating`, `Active`, `Inactive`, `Updating`, `Deleting`, `Deleted`, `Failed`, `Moving`
18+
- Enum `TermWorkflowStatus` in the Data Catalog service has restricted values to `New`, `Approved`, `UnderReview`, `Escalated`
19+
- Enum `JobScheduleType` in the Data Catalog service has restricted values to `Scheduled`, `Immediate`
20+
- Enum `JobType` in the Data Catalog service has restricted values to `Harvest`, `Profiling`, `Sampling`, `Preview`, `Import`, `Export`, `Internal`, `Purge`, `Immediate`, `Scheduled`, `Immediate_Execution`, `ScheduledExecution`, `ScheduledExecutionInstance`
21+
- Enum `HarvestStatus` in the Data Catalog service has restricted values to `Complete`, `Error`, `InProgress`, `Deferred`
22+
- Enum `JobExecutionState` in the Data Catalog service has restricted values to `Created`, `InProgress`, `Inactive`, `Failed`, `Succeeded`, `Canceled`
23+
- Enum `ConnectionResult` in the Data Catalog service has restricted values to `Succeeded`, `Failed`
24+
625
## 1.18.1 - 2020-06-16
726
### Added
827
- Support for creating a new database from an existing database based on a given timestamp in the Database service

bmc-addons/bmc-apache-connector-provider/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-addons</artifactId>
7-
<version>1.18.1</version>
7+
<version>1.19.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>com.oracle.oci.sdk</groupId>
4444
<artifactId>oci-java-sdk-common</artifactId>
45-
<version>1.18.1</version>
45+
<version>1.19.0</version>
4646
</dependency>
4747

4848
<!-- Explicitly pull in this version of httpclient and its httpcore dependency to address:

bmc-addons/bmc-apache-connector-provider/src/main/assembly/assembly.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<fileSet>
2727
<directory>${project.build.directory}/apidocs</directory>
2828
<outputDirectory>apidocs</outputDirectory>
29+
<fileMode>0755</fileMode>
2930
</fileSet>
3031
<!-- Include the sources and javadoc jars for developers -->
3132
<fileSet>

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.18.1</version>
8+
<version>1.19.0</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.18.1</version>
39+
<version>1.19.0</version>
4040
</dependency>
4141
</dependencies>
4242
</project>

bmc-addons/bmc-resteasy-client-configurator/src/main/assembly/assembly.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<fileSet>
2727
<directory>${project.build.directory}/apidocs</directory>
2828
<outputDirectory>apidocs</outputDirectory>
29+
<fileMode>0755</fileMode>
2930
</fileSet>
3031
<!-- Include the sources and javadoc jars for developers -->
3132
<fileSet>

bmc-addons/bmc-sasl/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>oci-java-sdk-addons</artifactId>
99
<groupId>com.oracle.oci.sdk</groupId>
10-
<version>1.18.1</version>
10+
<version>1.19.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>com.oracle.oci.sdk</groupId>
6363
<artifactId>oci-java-sdk-common</artifactId>
64-
<version>1.18.1</version>
64+
<version>1.19.0</version>
6565
</dependency>
6666
</dependencies>
6767

bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/InstancePrincipalsLoginModule.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,27 @@
77
import com.oracle.bmc.auth.BasicAuthenticationDetailsProvider;
88
import com.oracle.bmc.auth.InstancePrincipalsAuthenticationDetailsProvider;
99
import java.util.Map;
10+
import com.oracle.bmc.auth.InstancePrincipalsAuthenticationDetailsProvider.InstancePrincipalsAuthenticationDetailsProviderBuilder;
1011

1112
/**
1213
* A {@link javax.security.auth.spi.LoginModule} that will use Instance Principals to fill the {@link javax.security.auth.Subject} credentials.
1314
* An <i>intent</i> parameter has to be specified - this service specific and is documented on a per-service basis.
1415
* <pre>{@code com.oracle.bmc.auth.sasl.InstancePrincipalsLoginModule required intent="<intent>";}</pre>
1516
*/
1617
public class InstancePrincipalsLoginModule extends OciLoginModule {
18+
19+
private static final String METADATA_URL = "metadataBaseUrl";
20+
1721
@Override
1822
protected BasicAuthenticationDetailsProvider loadAuthenticationProvider(
1923
Map<String, ?> options) {
20-
return InstancePrincipalsAuthenticationDetailsProvider.builder().build();
24+
25+
final InstancePrincipalsAuthenticationDetailsProviderBuilder builder =
26+
InstancePrincipalsAuthenticationDetailsProvider.builder();
27+
28+
if (options.containsKey(METADATA_URL)) {
29+
builder.metadataBaseUrl((String) options.get(METADATA_URL));
30+
}
31+
return builder.build();
2132
}
2233
}

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.18.1</version>
8+
<version>1.19.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

bmc-analytics/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.18.1</version>
7+
<version>1.19.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-analytics</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.oracle.oci.sdk</groupId>
1717
<artifactId>oci-java-sdk-common</artifactId>
18-
<version>1.18.1</version>
18+
<version>1.19.0</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

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.18.1</version>
7+
<version>1.19.0</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.18.1</version>
20+
<version>1.19.0</version>
2121
</dependency>
2222
</dependencies>
2323
</project>

0 commit comments

Comments
 (0)