Skip to content

Commit 5611c03

Browse files
Releasing version 2.54.0
Releasing version 2.54.0
2 parents 0669f08 + 6f60f24 commit 5611c03

File tree

476 files changed

+91698
-2642
lines changed

Some content is hidden

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

476 files changed

+91698
-2642
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ 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+
## 2.54.0 - 2023-02-21
7+
### Added
8+
- Support for async jobs in the AI Anomaly Detection service
9+
- Support for specifying algorithm hints and windows sizes during model training in the AI Anomaly Detection service
10+
- Support for specifying a sensitivity value during model detection in the AI Anomaly Detection service
11+
- Support for discovery and monitoring of external Oracle database infrastructure components in the Database Management service
12+
13+
### Breaking Changes
14+
- The data type of `systemTags` field has been changed from a Map of String to another map to a Map of String to Object for the models `com.oracle.bmc.aianomalydetection.model.AiPrivateEndpoint`, `com.oracle.bmc.aianomalydetection.model.AiPrivateEndpointSummary`, `com.oracle.bmc.aianomalydetection.model.DataAsset`, `com.oracle.bmc.aianomalydetection.model.DataAssetSummary`, `com.oracle.bmc.aianomalydetection.model.Model`, `com.oracle.bmc.aianomalydetection.model.ModelSummary`, `com.oracle.bmc.aianomalydetection.model.Project` and `com.oracle.bmc.aianomalydetection.model.ProjectSummary` in the AI Anomaly Detection service
15+
- Support for retries by default on operations of the AI Anomaly Detection service
16+
617
## 2.53.0 - 2023-02-14
718
### Added
819
- Support for the Visual Builder Studio 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>2.53.0</version>
7+
<version>2.54.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>com.oracle.oci.sdk</groupId>
2020
<artifactId>oci-java-sdk-common</artifactId>
21-
<version>2.53.0</version>
21+
<version>2.54.0</version>
2222
</dependency>
2323
</dependencies>
2424
</project>

bmc-addons/bmc-graalvm-addon/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>oci-java-sdk-addons</artifactId>
66
<groupId>com.oracle.oci.sdk</groupId>
7-
<version>2.53.0</version>
7+
<version>2.54.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-addons-graalvm</artifactId>
@@ -132,30 +132,30 @@
132132
<dependency>
133133
<groupId>com.oracle.oci.sdk</groupId>
134134
<artifactId>oci-java-sdk-common</artifactId>
135-
<version>2.53.0</version>
135+
<version>2.54.0</version>
136136
</dependency>
137137
<dependency>
138138
<groupId>com.oracle.oci.sdk</groupId>
139139
<artifactId>oci-java-sdk-objectstorage-extensions</artifactId>
140-
<version>2.53.0</version>
140+
<version>2.54.0</version>
141141
<scope>test</scope>
142142
</dependency>
143143
<dependency>
144144
<groupId>com.oracle.oci.sdk</groupId>
145145
<artifactId>oci-java-sdk-identity</artifactId>
146-
<version>2.53.0</version>
146+
<version>2.54.0</version>
147147
<scope>test</scope>
148148
</dependency>
149149
<dependency>
150150
<groupId>com.oracle.oci.sdk</groupId>
151151
<artifactId>oci-java-sdk-objectstorage-extensions</artifactId>
152-
<version>2.53.0</version>
152+
<version>2.54.0</version>
153153
<scope>test</scope>
154154
</dependency>
155155
<dependency>
156156
<groupId>com.oracle.oci.sdk</groupId>
157157
<artifactId>oci-java-sdk-core</artifactId>
158-
<version>2.53.0</version>
158+
<version>2.54.0</version>
159159
<scope>test</scope>
160160
</dependency>
161161
</dependencies>
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<parent>
5+
<artifactId>oci-java-sdk-addons</artifactId>
6+
<groupId>com.oracle.oci.sdk</groupId>
7+
<version>2.54.0</version>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
11+
<properties>
12+
<maven.compiler.source>8</maven.compiler.source>
13+
<maven.compiler.target>8</maven.compiler.target>
14+
</properties>
15+
16+
<artifactId>oci-java-sdk-addons-oke-workload-identity</artifactId>
17+
<name>Oracle Cloud Infrastructure SDK - Oke Workload Identity Auth</name>
18+
<description>This project provides the oke workload identity auth add-ons for Oracle Cloud Infrastructure</description>
19+
<url>https://docs.cloud.oracle.com/Content/API/SDKDocs/javasdk.htm</url>
20+
21+
22+
<build>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-surefire-plugin</artifactId>
27+
<version>2.19.1</version>
28+
<configuration>
29+
<systemPropertyVariables>
30+
<java.io.tmpdir>${user.dir}</java.io.tmpdir>
31+
</systemPropertyVariables>
32+
</configuration>
33+
</plugin>
34+
</plugins>
35+
</build>
36+
37+
<dependencies>
38+
<dependency>
39+
<groupId>com.oracle.oci.sdk</groupId>
40+
<artifactId>oci-java-sdk-common</artifactId>
41+
<version>2.54.0</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>com.oracle.oci.sdk</groupId>
45+
<artifactId>oci-java-sdk-core</artifactId>
46+
<version>2.54.0</version>
47+
<scope>test</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>com.oracle.oci.sdk</groupId>
51+
<artifactId>oci-java-sdk-identity</artifactId>
52+
<version>2.54.0</version>
53+
<scope>test</scope>
54+
</dependency>
55+
<dependency>
56+
<groupId>com.oracle.oci.sdk</groupId>
57+
<artifactId>oci-java-sdk-keymanagement</artifactId>
58+
<version>2.54.0</version>
59+
<scope>test</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>io.specto</groupId>
63+
<artifactId>hoverfly-java</artifactId>
64+
<version>0.11.1</version>
65+
<scope>test</scope>
66+
</dependency>
67+
</dependencies>
68+
</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)