Skip to content

Commit

Permalink
Releasing version 3.46.0
Browse files Browse the repository at this point in the history
Releasing version 3.46.0
  • Loading branch information
oci-dex-release-bot authored Aug 6, 2024
2 parents b2cf3b4 + b5bf125 commit b543cb9
Show file tree
Hide file tree
Showing 605 changed files with 83,476 additions and 3,071 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/).

## 3.46.0 - 2024-08-06
### Added
- Support for calling Oracle Cloud Infrastructure services in the `me-riyadh-1` region
- Support for vertically scaling a Database system in the PostgreSQL service
- Support for flex shapes in the PostgreSQL service
- Support for new fork repository feature in the Source Code Management service
- Support for Developer Charts in the Source Code Management service
- Support for pull requests and merge in Source Code Management service
- Support for limiting custom and versioned custom software source content to the latest package versions in the OS Management service
- Support for Open Data Hub (ODH) patching in a staged manner in the Big Data service
- Support for Autoscale Memory Utilization in the Big Data service
- Support for Resource Principal configuration feature in the Big Data service
- Support for a new optional parameter compartment ID in the Java Management service
- Support for Agent Installer in the Java Management service
- Support for Java migration analysis request of deployed applications in the Java Management service
- Support for JmsPlugin in the Java Management service
- Support for improved cryptographic analysis result listing in the Java Management service
- Support for improved fleet agent configuration setting in the Java Management service
- Support for improved Java migration analysis result listing in the Java Management service
- Support for improved library usage summary in the Java Management service
- Support for improved performance tuning analysis result listing in the Java Management service
- Support for improved work request listing in the Java Management service

### Breaking Changes
- The property `credentials` was made required in the model `CreateDbSystemDetails` in the PostgreSQL service

## 3.45.0 - 2024-07-30
### Added
- Support for cluster placement groups on get operations in the Database service
Expand Down
123 changes: 121 additions & 2 deletions THIRD_PARTY_LICENSES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
------------------------------- Licenses -------------------------------
- Apache License 2.0
- BSD 3-Clause
- BSD 2-Clause
- Common Development and Distribution License (CDDL)
- Eclipse Distribution License 1.0
- Eclipse Public License 2.0
Expand Down Expand Up @@ -160,6 +161,13 @@ commons-logging:commons-logging
* Copyright © 2001-2014 The Apache Software Foundation. All rights reserved.
* License: Apache License 2.0

FastDoubleParser
* Copyright © 2022 Daniel Lemire. BSL License.
* Copyright © 2023 Werner Randelshofer, Switzerland.
* Licenses: BSL License
MIT License
* Source code: https://github.com/wrandelshofer/FastDoubleParser

io.vavr:vavr-match
* Copyright © 2014-2021 Vavr
* License: Apache License 2.0
Expand Down Expand Up @@ -558,6 +566,35 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


------------------------------------------------------------------------

----------------------------- BSD 2-Clause -----------------------------

Redistribution and use in source and binary forms, with or without
modification,are permitted provided that the following conditions are
met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.


THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


------------------------------------------------------------------------

---------- Common Development and Distribution License (CDDL) ----------
Expand Down Expand Up @@ -2265,8 +2302,90 @@ http://www.w3.org/Consortium/Legal/

========================= Fourth Party Notices =========================

------------------------------------------------------------------------

-- FastDoubleParser

This is a Java port of Daniel Lemire's fast_float project.
This project provides parsers for double, float, BigDecimal and BigInteger values.

## Copyright

Copyright © 2023 Werner Randelshofer, Switzerland.

## Licensing

This code is licensed under MIT License.

Some portions of the code have been derived from other projects.
All these projects require that we include a copyright notice, and
some require that we also include some text of their license file.

fast_double_parser, Copyright (c) 2022 Daniel Lemire. BSL License.

fast_float, Copyright (c) 2021 The fast_float authors. MIT License.

bigint, Copyright 2020 Tim Buktu. 2-clause BSD License.

https://github.com/lemire/fast_double_parser

Copyright (c) Daniel Lemire

Copyright 2022 Tim Buktu

---
Boost Software License - Version 1.0 - August 17th, 2003

Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:

The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
---

https://github.com/tbuktu/bigint/tree/floatfft

The following files are licensed under a 2-clause BSD license:

https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigInteger.java.diff
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/MutableBigInteger.java.diff
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigDecimal.java.diff
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/MultBenchmark.java
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/DivBenchmark.java
https://github.com/tbuktu/bigint/tree/floatfft/src/test/java/BigIntegerTest.java.diff
https://github.com/tbuktu/bigint/tree/floatfft/src/test/java/BigIntegerTestOld.java

The following files are licensed under the General Public License 2.0 (GPL v2):

https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigInteger.java
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigDecimal.java
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/MutableBigInteger.java
https://github.com/tbuktu/bigint/tree/floatfft/src/test/java/BigIntegerTest.java

(We only use those portions of the bigint project that can be licensed
under 2-clause BSD License.) (The file 'thirdparty-LICENSE' is
included in the sources and classes Jar files that are released by
this project - as is required by that license.)

------------------------------------------------------------------------

commons-logging
-- commons-logging

Apache Commons Logging
Copyright 2003-2016 The Apache Software Foundation
Expand All @@ -2276,7 +2395,7 @@ The Apache Software Foundation (http://www.apache.org/).

------------------------------------------------------------------------

jakarta.validation-api
-- jakarta.validation-api

Notices for Eclipse Jakarta Bean Validation

Expand Down
4 changes: 2 additions & 2 deletions bmc-accessgovernancecp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>oci-java-sdk-accessgovernancecp</artifactId>
Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-common</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
</dependency>
</dependencies>
</project>
6 changes: 3 additions & 3 deletions bmc-addons/bmc-apache-configurator-jersey-addon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-addons</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -17,14 +17,14 @@
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-bom</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-common-httpclient-jersey</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions bmc-addons/bmc-apache-configurator-jersey3-addon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-addons</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -17,14 +17,14 @@
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-bom</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-common-httpclient-jersey3</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions bmc-addons/bmc-apache-connector-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-addons</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -18,7 +18,7 @@
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-common</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
</dependency>
</dependencies>
</project>
10 changes: 5 additions & 5 deletions bmc-addons/bmc-oke-workload-identity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>oci-java-sdk-addons</artifactId>
<groupId>com.oracle.oci.sdk</groupId>
<version>3.45.0</version>
<version>3.46.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -38,25 +38,25 @@
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-common</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-core</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-identity</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-keymanagement</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions bmc-addons/bmc-resteasy-client-configurator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-addons</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-common</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
</dependency>
</dependencies>
</project>
6 changes: 3 additions & 3 deletions bmc-addons/bmc-sasl-oke-workload-identity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>oci-java-sdk-addons</artifactId>
<groupId>com.oracle.oci.sdk</groupId>
<version>3.45.0</version>
<version>3.46.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -39,13 +39,13 @@
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-addons-sasl</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-addons-oke-workload-identity</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions bmc-addons/bmc-sasl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-addons</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-java-sdk-common</artifactId>
<version>3.45.0</version>
<version>3.46.0</version>
</dependency>
</dependencies>

Expand Down
Loading

0 comments on commit b543cb9

Please sign in to comment.