Skip to content

Commit c25c464

Browse files
Releasing version 3.47.0
Releasing version 3.48.0
2 parents dd9a3d6 + c7f6c72 commit c25c464

File tree

669 files changed

+120307
-5029
lines changed

Some content is hidden

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

669 files changed

+120307
-5029
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@ 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+
## 3.48.0 - 2024-08-27
7+
### Added
8+
- Support for Delegate Access Control service
9+
- Support for upgrade and downgrade of shapes of high performance mount targets in the File Storage service
10+
- Support for private endpoints in the Object Storage service
11+
- Support for create, update, list and delete operations on scheduling policies and scheduling windows in the Database service
12+
- Support for specifying domains while creating data guard associations in the Database service
13+
- Support for provision of developer autonomous databases in the Database service
14+
- Support for upgrade of developer autonomous databases to paid autonomous databases in the Database service
15+
- Support for scheduling plans, actions, execution windows and execution actions for maintenance scheduling in the Database service
16+
- Support for cross-region replication of virtual vaults in the Key Management service
17+
- Support for listing all active service summaries in the Announcements service
18+
- Support for VMware major and minor version upgrades in VMware Solution service
19+
- Support for updating protected database subscriptions in the Autonomous Recovery service
20+
- Support for health insurance id as an allowed document type in the Document Understanding service
21+
- Support for advanced database management features for autonomous databases in the Database Management service
22+
- Support for propagating request ids to load balancer servers in the Load balancer service
23+
- Support for automatic update orders in Fusion Application as a Service
24+
25+
### Breaking Changes
26+
- Method `public java.lang.String getDocumentId()` has been removed from the model `com.oracle.bmc.aidocument.model.DetectedDocumentType` in the Document Understanding service
27+
- Method `public java.lang.String getTenancyId()` has been removed from the model `com.oracle.bmc.aidocument.model.DocumentClassificationFeature` in the Document Understanding service
28+
- Method `public java.lang.String getTenancyId()` has been removed from the model `com.oracle.bmc.aidocument.model.DocumentKeyValueExtractionFeature` in the Document Understanding service
29+
- Field `InsuranceClaim` has been removed from the model `com.oracle.bmc.aidocument.model.DocumentType` in the Document Understanding service
30+
631
## 3.47.0 - 2024-08-20
732
### Added
833
- Support for Fleet Application Management service

bmc-accessgovernancecp/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>3.47.0</version>
7+
<version>3.48.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-accessgovernancecp</artifactId>
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.oracle.oci.sdk</groupId>
1717
<artifactId>oci-java-sdk-common</artifactId>
18-
<version>3.47.0</version>
18+
<version>3.48.0</version>
1919
</dependency>
2020
</dependencies>
2121
</project>
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<groupId>com.oracle.oci.sdk</groupId>
7+
<artifactId>oci-java-sdk-addons</artifactId>
8+
<version>3.48.0</version>
9+
<relativePath>../pom.xml</relativePath>
10+
</parent>
11+
<modelVersion>4.0.0</modelVersion>
12+
13+
<artifactId>oci-java-sdk-addons-aispeech-realtime</artifactId>
14+
<name>Oracle Cloud Infrastructure SDK - AI Speech Realtime Client</name>
15+
<description>This project adds a Java client to utilize the realtime speech service</description>
16+
17+
<url>https://docs.cloud.oracle.com/Content/API/SDKDocs/javasdk.htm</url>
18+
19+
20+
<build>
21+
<plugins>
22+
<plugin>
23+
<groupId>org.apache.maven.plugins</groupId>
24+
<artifactId>maven-surefire-plugin</artifactId>
25+
<version>2.19.1</version>
26+
<configuration>
27+
<systemPropertyVariables>
28+
<java.io.tmpdir>${user.dir}</java.io.tmpdir>
29+
</systemPropertyVariables>
30+
</configuration>
31+
</plugin>
32+
</plugins>
33+
</build>
34+
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.eclipse.jetty.websocket</groupId>
38+
<artifactId>websocket-server</artifactId>
39+
<version>9.4.53.v20231009</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.slf4j</groupId>
43+
<artifactId>slf4j-api</artifactId>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.slf4j</groupId>
47+
<artifactId>slf4j-simple</artifactId>
48+
</dependency>
49+
<dependency>
50+
<groupId>com.fasterxml.jackson.core</groupId>
51+
<artifactId>jackson-databind</artifactId>
52+
</dependency>
53+
<dependency>
54+
<groupId>com.oracle.oci.sdk</groupId>
55+
<artifactId>oci-java-sdk-aispeech</artifactId>
56+
<version>3.48.0</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>com.oracle.oci.sdk</groupId>
60+
<artifactId>oci-java-sdk-common-httpclient-jersey</artifactId>
61+
<version>3.48.0</version>
62+
<scope>compile</scope>
63+
</dependency>
64+
<dependency>
65+
<groupId>junit</groupId>
66+
<artifactId>junit</artifactId>
67+
<scope>test</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.mockito</groupId>
71+
<artifactId>mockito-core</artifactId>
72+
<scope>test</scope>
73+
</dependency>
74+
75+
</dependencies>
76+
77+
</project>
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!--
2+
3+
Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
4+
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
5+
6+
-->
7+
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
8+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
10+
11+
<id>release</id>
12+
<includeBaseDirectory>false</includeBaseDirectory>
13+
<formats>
14+
<format>zip</format>
15+
</formats>
16+
<fileSets>
17+
<!-- Include all of the Javadocs -->
18+
<fileSet>
19+
<directory>${project.build.directory}/apidocs</directory>
20+
<outputDirectory>apidocs</outputDirectory>
21+
</fileSet>
22+
<!-- Include the sources and javadoc jars for developers -->
23+
<fileSet>
24+
<directory>${project.build.directory}</directory>
25+
<includes>
26+
<include>${project.artifactId}-${project.version}-*.jar</include>
27+
</includes>
28+
<excludes>
29+
<exclude>${project.artifactId}-${project.version}-signed.jar</exclude>
30+
</excludes>
31+
<outputDirectory>lib</outputDirectory>
32+
</fileSet>
33+
</fileSets>
34+
<files>
35+
<!-- Explicitly copy the signed/unsigned jar and rename it in the release zip file.
36+
If this is for a "signed" release, then the signed jar should be defined; else, the unsigned if the
37+
build profile is "ziponly" -->
38+
<file>
39+
<source>${source.jar.for.zip}</source>
40+
<outputDirectory>lib</outputDirectory>
41+
<destName>${project.artifactId}-${project.version}.jar</destName>
42+
</file>
43+
</files>
44+
</assembly>

0 commit comments

Comments
 (0)