Skip to content

Commit 5222e66

Browse files
Releasing version 3.28.1
1 parent 205b501 commit 5222e66

File tree

487 files changed

+48622
-1512
lines changed

Some content is hidden

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

487 files changed

+48622
-1512
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ 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.28.1 - 2023-11-07
7+
### Added
8+
- Support for Java Management Service Downloads
9+
- Support for creating autonomous dataguard associations in the Database service
10+
- Support for SaaS administrative user configurations for autonomous database in the Database service
11+
- Support for macOS in the the Java Management service
12+
- Support for distribution and management of deployment rule sets in the Java Management service
13+
- Support for new download location of Oracle Java runtime binaries in the Java Management service
14+
- Support for exporting data across regions in the Java Management service
15+
616
## 3.28.0 - 2023-10-31
717
### Added
818
- Support for calling Oracle Cloud Infrastructure services in the us-saltlake-2 region

Development-README.md

+16
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,22 @@ During javadoc generation, any javadocs with the template '*{{DOC_SERVER_URL}}*'
1919

2020
## <a id="KnownDevelopmentIssues"></a>Known Development Issues
2121

22+
### Errors may suddenly appear after updating to any of these JDK versions: 8u381, 11.0.20, 17.0.8, and 21.0.0.
23+
24+
The following error message might be encountered:
25+
```
26+
java.lang.ClassNotFoundException: com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider
27+
```
28+
This issue is a result of the listed Java versions, which have a default maximum signature file size smaller than some Java SDK JARs.
29+
30+
To resolve this problem, you can run Maven with the following parameter:
31+
`-Djdk.jar.maxSignatureFileSize=16000000`
32+
33+
If you're compiling with javac, you can use the following command:
34+
`javac -J-Djdk.jar.maxSignatureFileSize=16000000 example.java`
35+
36+
The low default value in Java will be addressed and resolved in upcoming minor Java version releases.
37+
2238
### <a id="Java17TestFailures"></a> Java 17 test failures
2339
If JDK 17 is used to build the OCI Java SDK, then there will be 5 unit tests that fail because of a test dependency that does not work well with more recent Java versions. To workaround this issue, ignore test failures with the `-Dmaven.test.failure.ignore` parameter:
2440
```

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,19 @@ Use `ApacheConnectionClosingStrategy.ImmediateClosingStrategy` for large files w
250250
Note : If both the above Apache Connection closing strategies do not give you optimal results for your use-cases, please consider switching back to Jersey Default `HttpUrlConnectorProvider`.
251251
For more info on Apache Connector, please look into [ApacheConnector-README](https://github.com/oracle/oci-java-sdk/blob/master/ApacheConnector-README.md).
252252

253+
### Errors may suddenly appear after updating to any of these JDK versions: 8u381, 11.0.20, 17.0.8, and 21.0.0.
254+
255+
The following error message might be encountered:
256+
```
257+
java.lang.ClassNotFoundException: com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider
258+
```
259+
This issue is a result of the listed Java versions, which have a default maximum signature file size smaller than some Java SDK JARs.
260+
261+
To resolve this problem, you can run Maven with the following parameter:
262+
`-Djdk.jar.maxSignatureFileSize=16000000`
263+
264+
The low default value in Java will be addressed and resolved in upcoming minor Java version releases.
265+
253266
## License
254267

255268
Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.

bmc-accessgovernancecp/pom.xml

+2-2
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.28.0</version>
7+
<version>3.28.1</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.28.0</version>
18+
<version>3.28.1</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

bmc-addons/bmc-apache-configurator-jersey-addon/pom.xml

+3-3
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>3.28.0</version>
7+
<version>3.28.1</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

@@ -17,14 +17,14 @@
1717
<dependency>
1818
<groupId>com.oracle.oci.sdk</groupId>
1919
<artifactId>oci-java-sdk-bom</artifactId>
20-
<version>3.28.0</version>
20+
<version>3.28.1</version>
2121
<type>pom</type>
2222
<scope>import</scope>
2323
</dependency>
2424
<dependency>
2525
<groupId>com.oracle.oci.sdk</groupId>
2626
<artifactId>oci-java-sdk-common-httpclient-jersey</artifactId>
27-
<version>3.28.0</version>
27+
<version>3.28.1</version>
2828
<type>pom</type>
2929
<scope>import</scope>
3030
</dependency>

bmc-addons/bmc-apache-configurator-jersey3-addon/pom.xml

+3-3
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>3.28.0</version>
7+
<version>3.28.1</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

@@ -17,14 +17,14 @@
1717
<dependency>
1818
<groupId>com.oracle.oci.sdk</groupId>
1919
<artifactId>oci-java-sdk-bom</artifactId>
20-
<version>3.28.0</version>
20+
<version>3.28.1</version>
2121
<type>pom</type>
2222
<scope>import</scope>
2323
</dependency>
2424
<dependency>
2525
<groupId>com.oracle.oci.sdk</groupId>
2626
<artifactId>oci-java-sdk-common-httpclient-jersey3</artifactId>
27-
<version>3.28.0</version>
27+
<version>3.28.1</version>
2828
<type>pom</type>
2929
<scope>import</scope>
3030
</dependency>

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

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

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

bmc-addons/bmc-oke-workload-identity/pom.xml

+5-5
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>3.28.0</version>
7+
<version>3.28.1</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010

@@ -38,25 +38,25 @@
3838
<dependency>
3939
<groupId>com.oracle.oci.sdk</groupId>
4040
<artifactId>oci-java-sdk-common</artifactId>
41-
<version>3.28.0</version>
41+
<version>3.28.1</version>
4242
<scope>compile</scope>
4343
</dependency>
4444
<dependency>
4545
<groupId>com.oracle.oci.sdk</groupId>
4646
<artifactId>oci-java-sdk-core</artifactId>
47-
<version>3.28.0</version>
47+
<version>3.28.1</version>
4848
<scope>test</scope>
4949
</dependency>
5050
<dependency>
5151
<groupId>com.oracle.oci.sdk</groupId>
5252
<artifactId>oci-java-sdk-identity</artifactId>
53-
<version>3.28.0</version>
53+
<version>3.28.1</version>
5454
<scope>test</scope>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.oracle.oci.sdk</groupId>
5858
<artifactId>oci-java-sdk-keymanagement</artifactId>
59-
<version>3.28.0</version>
59+
<version>3.28.1</version>
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>

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

+2-2
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>3.28.0</version>
7+
<version>3.28.1</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.oracle.oci.sdk</groupId>
2525
<artifactId>oci-java-sdk-common</artifactId>
26-
<version>3.28.0</version>
26+
<version>3.28.1</version>
2727
</dependency>
2828
</dependencies>
2929
</project>

bmc-addons/bmc-sasl-oke-workload-identity/pom.xml

+3-3
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>3.28.0</version>
7+
<version>3.28.1</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
@@ -39,13 +39,13 @@
3939
<dependency>
4040
<groupId>com.oracle.oci.sdk</groupId>
4141
<artifactId>oci-java-sdk-addons-sasl</artifactId>
42-
<version>3.28.0</version>
42+
<version>3.28.1</version>
4343
<scope>compile</scope>
4444
</dependency>
4545
<dependency>
4646
<groupId>com.oracle.oci.sdk</groupId>
4747
<artifactId>oci-java-sdk-addons-oke-workload-identity</artifactId>
48-
<version>3.28.0</version>
48+
<version>3.28.1</version>
4949
<scope>compile</scope>
5050
</dependency>
5151
</dependencies>

bmc-addons/bmc-sasl/pom.xml

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

@@ -60,7 +60,7 @@
6060
<dependency>
6161
<groupId>com.oracle.oci.sdk</groupId>
6262
<artifactId>oci-java-sdk-common</artifactId>
63-
<version>3.28.0</version>
63+
<version>3.28.1</version>
6464
</dependency>
6565
</dependencies>
6666

bmc-addons/pom.xml

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

bmc-adm/pom.xml

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

bmc-aianomalydetection/pom.xml

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

bmc-aidocument/pom.xml

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

bmc-ailanguage/pom.xml

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

bmc-aispeech/pom.xml

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

bmc-aivision/pom.xml

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

bmc-analytics/pom.xml

+2-2
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.28.0</version>
7+
<version>3.28.1</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>3.28.0</version>
18+
<version>3.28.1</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

0 commit comments

Comments
 (0)