Skip to content

Commit 164d41d

Browse files
Releasing version 3.45.0
1 parent 5bd0389 commit 164d41d

File tree

417 files changed

+50843
-886
lines changed

Some content is hidden

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

417 files changed

+50843
-886
lines changed

Diff for: CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@ 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.45.0 - 2024-07-30
7+
### Added
8+
- Support for cluster placement groups on get operations in the Database service
9+
- Support for baseline metric for imported resources and metric extensions in the Stack Monitoring service
10+
- Support for implicit JIT and group membership provisioning during OpenID connect flow in the Identity Domains service
11+
- Support for realtime speech and customizations in the AI Speech service
12+
- Support for self-service instance maintenance API in the Compute service
13+
- Support for GoldenGate suspend phase in the Database Migration service
14+
- Support for creating custom alert policies in the Data Safe service
15+
- Support for tunnel inspection in the Network firewall service
16+
- Support for diagnostics collection preferences and custom GI images in the Exadata Fleet Update service
17+
18+
### Breaking Changes
19+
- Method `public java.util.List getServicePrincipals()` has been removed from the model `com.oracle.bmc.identitydomains.model.IdentityPropagationTrust` in the Identity Domains service
20+
621
## 3.44.4 - 2024-07-23
722
### Added
823
- Support for subscription id attribute in Cloud Exadata Infrastructure and Cloud VM Clusters in the Database service

Diff for: CONTRIBUTING.md

+13-46
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,26 @@
11
# Contributing to the Oracle Cloud Infrastructure Java SDK
22

3-
*Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
3+
*Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
44
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl
55
or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.*
66

7-
We welcome your contributions! There are multiple ways to contribute.
7+
Pull requests can be made under
8+
[The Oracle Contributor Agreement](https://www.oracle.com/technetwork/community/oca-486395.html)
9+
(OCA).
810

9-
## Opening issues
11+
For pull requests to be accepted, the bottom of
12+
your commit message must have the following line using your name and
13+
e-mail address as it appears in the OCA Signatories list.
1014

11-
For bugs or enhancement requests, please file a GitHub issue unless it's
12-
security related. When filing a bug remember that the better written the bug is,
13-
the more likely it is to be fixed. If you think you've found a security
14-
vulnerability, do not raise a GitHub issue and follow the instructions in our
15-
[security policy](./SECURITY.md).
16-
17-
## Contributing code
18-
19-
We welcome your code contributions. Before submitting code via a pull request,
20-
you will need to have signed the [Oracle Contributor Agreement][OCA] (OCA) and
21-
your commits need to include the following line using the name and e-mail
22-
address you used to sign the OCA:
23-
24-
```text
15+
```
2516
Signed-off-by: Your Name <[email protected]>
2617
```
2718

28-
This can be automatically added to pull requests by committing with `--sign-off`
29-
or `-s`, e.g.
19+
This can be automatically added to pull requests by committing with:
3020

31-
```text
32-
git commit --signoff
3321
```
22+
git commit --signoff
23+
````
3424
35-
Only pull requests from committers that can be verified as having signed the OCA
36-
can be accepted.
37-
38-
## Pull request process
39-
40-
1. Ensure there is an issue created to track and discuss the fix or enhancement
41-
you intend to submit.
42-
1. Fork this repository.
43-
1. Create a branch in your fork to implement the changes. We recommend using
44-
the issue number as part of your branch name, e.g. `1234-fixes`.
45-
1. Ensure that any documentation is updated with the changes that are required
46-
by your change.
47-
1. Ensure that any samples are updated if the base image has been changed.
48-
1. Submit the pull request. *Do not leave the pull request blank*. Explain exactly
49-
what your changes are meant to do and provide simple steps on how to validate.
50-
your changes. Ensure that you reference the issue you created as well.
51-
1. We will assign the pull request to 2-3 people for review before it is merged.
52-
53-
## Code of conduct
54-
55-
Follow the [Golden Rule](https://en.wikipedia.org/wiki/Golden_Rule). If you'd
56-
like more specific guidelines, see the [Contributor Covenant Code of Conduct][COC].
57-
58-
[OCA]: https://oca.opensource.oracle.com
59-
[COC]: https://www.contributor-covenant.org/version/1/4/code-of-conduct/
25+
Only pull requests from committers that can be verified as having
26+
signed the OCA can be accepted.

Diff for: README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,9 @@ See [CHANGELOG](https://github.com/oracle/oci-java-sdk/blob/master/CHANGELOG.md)
214214

215215
## Contributing
216216

217-
This project welcomes contributions from the community. Before submitting a pull request, please [review our contribution guide](./CONTRIBUTING.md)
217+
oci-java-sdk is an open source project. See [CONTRIBUTING](https://github.com/oracle/oci-java-sdk/blob/master/CONTRIBUTING.md) for details.
218+
219+
Oracle gratefully acknowledges the contributions to oci-java-sdk that have been made by the community.
218220

219221
## Known Issues
220222

@@ -260,13 +262,10 @@ To resolve this problem, you can run Maven with the following parameter:
260262
`-Djdk.jar.maxSignatureFileSize=16000000`
261263

262264
The low default value in Java will be addressed and resolved in upcoming minor Java version releases.
263-
## Security
264-
265-
Please consult the [security guide](./SECURITY.md) for our responsible security vulnerability disclosure process
266265

267266
## License
268267

269-
Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
268+
Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
270269
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl
271270
or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
272271

Diff for: SECURITY.md

-38
This file was deleted.

Diff for: THIRD_PARTY_LICENSES.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ vavr
132132
* Source code: https://github.com/vavr-io/vavr
133133
* Project home: https://www.vavr.io
134134

135-
135+
websocket-server
136+
* Copyright © 1995 Mort Bay Consulting Pty Ltd and others.
137+
* License: Apache License 2.0
138+
* Source code: https://github.com/jetty/jetty.project
139+
* Project home: https://jetty.org/
136140
======================= Fourth Party Components ========================
137141

138142
com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider

Diff for: 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.44.4</version>
7+
<version>3.45.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.44.4</version>
18+
<version>3.45.0</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

Diff for: 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.44.4</version>
7+
<version>3.45.0</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.44.4</version>
20+
<version>3.45.0</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.44.4</version>
27+
<version>3.45.0</version>
2828
<type>pom</type>
2929
<scope>import</scope>
3030
</dependency>

Diff for: 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.44.4</version>
7+
<version>3.45.0</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.44.4</version>
20+
<version>3.45.0</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.44.4</version>
27+
<version>3.45.0</version>
2828
<type>pom</type>
2929
<scope>import</scope>
3030
</dependency>

Diff for: 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.44.4</version>
8+
<version>3.45.0</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.44.4</version>
21+
<version>3.45.0</version>
2222
</dependency>
2323
</dependencies>
2424
</project>

Diff for: 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.44.4</version>
7+
<version>3.45.0</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.44.4</version>
41+
<version>3.45.0</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.44.4</version>
47+
<version>3.45.0</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.44.4</version>
53+
<version>3.45.0</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.44.4</version>
59+
<version>3.45.0</version>
6060
<scope>test</scope>
6161
</dependency>
6262
<dependency>

Diff for: 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.44.4</version>
7+
<version>3.45.0</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.44.4</version>
26+
<version>3.45.0</version>
2727
</dependency>
2828
</dependencies>
2929
</project>

Diff for: 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.44.4</version>
7+
<version>3.45.0</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.44.4</version>
42+
<version>3.45.0</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.44.4</version>
48+
<version>3.45.0</version>
4949
<scope>compile</scope>
5050
</dependency>
5151
</dependencies>

Diff for: 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.44.4</version>
8+
<version>3.45.0</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.44.4</version>
63+
<version>3.45.0</version>
6464
</dependency>
6565
</dependencies>
6666

Diff for: bmc-addons/bmc-sse-support-jersey3/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>oci-java-sdk-addons</artifactId>
77
<groupId>com.oracle.oci.sdk</groupId>
8-
<version>3.44.4</version>
8+
<version>3.45.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
@@ -150,12 +150,12 @@
150150
<dependency>
151151
<groupId>com.oracle.oci.sdk</groupId>
152152
<artifactId>oci-java-sdk-common</artifactId>
153-
<version>3.44.4</version>
153+
<version>3.45.0</version>
154154
</dependency>
155155
<dependency>
156156
<groupId>com.oracle.oci.sdk</groupId>
157157
<artifactId>oci-java-sdk-generativeaiinference</artifactId>
158-
<version>3.44.4</version>
158+
<version>3.45.0</version>
159159
<scope>test</scope>
160160
</dependency>
161161
<dependency>
@@ -164,7 +164,7 @@
164164
but the code in it needs it. -->
165165
<groupId>com.oracle.oci.sdk</groupId>
166166
<artifactId>oci-java-sdk-common-httpclient-jersey3</artifactId>
167-
<version>3.44.4</version>
167+
<version>3.45.0</version>
168168
</dependency>
169169
</dependencies>
170170

0 commit comments

Comments
 (0)