Skip to content

Commit cb3c4a9

Browse files
authored
Merge pull request #646 from oracle/legacy_v2_release_2024-12-10
Releasing 2.79.0
2 parents 10c7f9d + d2cf37b commit cb3c4a9

File tree

3,904 files changed

+775235
-17628
lines changed

Some content is hidden

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

3,904 files changed

+775235
-17628
lines changed

CHANGELOG.md

Lines changed: 253 additions & 0 deletions
Large diffs are not rendered by default.

THIRD_PARTY_LICENSES.txt

Lines changed: 2 additions & 115 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
------------------------------- Licenses -------------------------------
55
- Apache License 2.0
66
- BSD 3-Clause
7-
- BSD 2-Clause
87
- Common Development and Distribution License (CDDL)
98
- Eclipse Distribution License 1.0
109
- Eclipse Public License 2.0
@@ -577,35 +576,6 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
577576
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
578577

579578

580-
------------------------------------------------------------------------
581-
582-
----------------------------- BSD 2-Clause -----------------------------
583-
584-
Redistribution and use in source and binary forms, with or without
585-
modification,are permitted provided that the following conditions are
586-
met:
587-
588-
1. Redistributions of source code must retain the above copyright
589-
notice, this list of conditions and the following disclaimer.
590-
591-
2. Redistributions in binary form must reproduce the above copyright
592-
notice, this list of conditions and the following disclaimer in the
593-
documentation and/or other materials provided with the distribution.
594-
595-
596-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
597-
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
598-
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
599-
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
600-
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
601-
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
602-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
603-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
604-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
605-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
606-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
607-
608-
609579
------------------------------------------------------------------------
610580

611581
---------- Common Development and Distribution License (CDDL) ----------
@@ -2317,90 +2287,7 @@ http://www.w3.org/Consortium/Legal/
23172287

23182288
========================= Fourth Party Notices =========================
23192289

2320-
------------------------------------------------------------------------
2321-
2322-
-- FastDoubleParser
2323-
2324-
This is a Java port of Daniel Lemire's fast_float project.
2325-
This project provides parsers for double, float, BigDecimal and BigInteger values.
2326-
2327-
## Copyright
2328-
2329-
Copyright © 2023 Werner Randelshofer, Switzerland.
2330-
2331-
## Licensing
2332-
2333-
This code is licensed under MIT License.
2334-
2335-
Some portions of the code have been derived from other projects.
2336-
All these projects require that we include a copyright notice, and
2337-
some require that we also include some text of their license file.
2338-
2339-
fast_double_parser, Copyright (c) 2022 Daniel Lemire. BSL License.
2340-
2341-
fast_float, Copyright (c) 2021 The fast_float authors. MIT License.
2342-
2343-
bigint, Copyright 2020 Tim Buktu. 2-clause BSD License.
2344-
2345-
https://github.com/lemire/fast_double_parser
2346-
2347-
Copyright (c) Daniel Lemire
2348-
2349-
Copyright 2022 Tim Buktu
2350-
2351-
---
2352-
Boost Software License - Version 1.0 - August 17th, 2003
2353-
2354-
Permission is hereby granted, free of charge, to any person or organization
2355-
obtaining a copy of the software and accompanying documentation covered by
2356-
this license (the "Software") to use, reproduce, display, distribute,
2357-
execute, and transmit the Software, and to prepare derivative works of the
2358-
Software, and to permit third-parties to whom the Software is furnished to
2359-
do so, all subject to the following:
2360-
2361-
The copyright notices in the Software and this entire statement, including
2362-
the above license grant, this restriction and the following disclaimer,
2363-
must be included in all copies of the Software, in whole or in part, and
2364-
all derivative works of the Software, unless such copies or derivative
2365-
works are solely in the form of machine-executable object code generated by
2366-
a source language processor.
2367-
2368-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2369-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2370-
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
2371-
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
2372-
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
2373-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2374-
DEALINGS IN THE SOFTWARE.
2375-
---
2376-
2377-
https://github.com/tbuktu/bigint/tree/floatfft
2378-
2379-
The following files are licensed under a 2-clause BSD license:
2380-
2381-
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigInteger.java.diff
2382-
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/MutableBigInteger.java.diff
2383-
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigDecimal.java.diff
2384-
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/MultBenchmark.java
2385-
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/DivBenchmark.java
2386-
https://github.com/tbuktu/bigint/tree/floatfft/src/test/java/BigIntegerTest.java.diff
2387-
https://github.com/tbuktu/bigint/tree/floatfft/src/test/java/BigIntegerTestOld.java
2388-
2389-
The following files are licensed under the General Public License 2.0 (GPL v2):
2390-
2391-
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigInteger.java
2392-
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/BigDecimal.java
2393-
https://github.com/tbuktu/bigint/tree/floatfft/src/main/java/java/math/MutableBigInteger.java
2394-
https://github.com/tbuktu/bigint/tree/floatfft/src/test/java/BigIntegerTest.java
2395-
2396-
(We only use those portions of the bigint project that can be licensed
2397-
under 2-clause BSD License.) (The file 'thirdparty-LICENSE' is
2398-
included in the sources and classes Jar files that are released by
2399-
this project - as is required by that license.)
2400-
2401-
------------------------------------------------------------------------
2402-
2403-
-- commons-logging
2290+
commons-logging
24042291

24052292
Apache Commons Logging
24062293
Copyright 2003-2016 The Apache Software Foundation
@@ -2410,7 +2297,7 @@ The Apache Software Foundation (http://www.apache.org/).
24102297

24112298
------------------------------------------------------------------------
24122299

2413-
-- jakarta.validation-api
2300+
jakarta.validation-api
24142301

24152302
Notices for Eclipse Jakarta Bean Validation
24162303

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>2.73.0</version>
7+
<version>2.79.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-accessgovernancecp</artifactId>
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.oracle.oci.sdk</groupId>
1818
<artifactId>oci-java-sdk-common</artifactId>
19-
<version>2.73.0</version>
19+
<version>2.79.0</version>
2020
</dependency>
2121
</dependencies>
2222
</project>

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.73.0</version>
7+
<version>2.79.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.73.0</version>
21+
<version>2.79.0</version>
2222
</dependency>
2323
</dependencies>
2424
</project>

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

Lines changed: 5 additions & 11 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.73.0</version>
7+
<version>2.79.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-addons-graalvm</artifactId>
@@ -132,30 +132,24 @@
132132
<dependency>
133133
<groupId>com.oracle.oci.sdk</groupId>
134134
<artifactId>oci-java-sdk-common</artifactId>
135-
<version>2.73.0</version>
135+
<version>2.79.0</version>
136136
</dependency>
137137
<dependency>
138138
<groupId>com.oracle.oci.sdk</groupId>
139139
<artifactId>oci-java-sdk-objectstorage-extensions</artifactId>
140-
<version>2.73.0</version>
140+
<version>2.79.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.73.0</version>
147-
<scope>test</scope>
148-
</dependency>
149-
<dependency>
150-
<groupId>com.oracle.oci.sdk</groupId>
151-
<artifactId>oci-java-sdk-objectstorage-extensions</artifactId>
152-
<version>2.73.0</version>
146+
<version>2.79.0</version>
153147
<scope>test</scope>
154148
</dependency>
155149
<dependency>
156150
<groupId>com.oracle.oci.sdk</groupId>
157151
<artifactId>oci-java-sdk-core</artifactId>
158-
<version>2.73.0</version>
152+
<version>2.79.0</version>
159153
<scope>test</scope>
160154
</dependency>
161155
</dependencies>

bmc-addons/bmc-graalvm-addon/src/main/java/com/oracle/bmc/graalvm/SdkAutomaticFeatureMetadata.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"com.oracle.bmc.datalabelingservicedataplane.SdkClientsMetadata",
5252
"com.oracle.bmc.datasafe.SdkClientsMetadata",
5353
"com.oracle.bmc.datascience.SdkClientsMetadata",
54+
"com.oracle.bmc.delegateaccesscontrol.SdkClientsMetadata",
5455
"com.oracle.bmc.demandsignal.SdkClientsMetadata",
5556
"com.oracle.bmc.desktops.SdkClientsMetadata",
5657
"com.oracle.bmc.devops.SdkClientsMetadata",
@@ -62,10 +63,13 @@
6263
"com.oracle.bmc.emwarehouse.SdkClientsMetadata",
6364
"com.oracle.bmc.events.SdkClientsMetadata",
6465
"com.oracle.bmc.filestorage.SdkClientsMetadata",
66+
"com.oracle.bmc.fleetappsmanagement.SdkClientsMetadata",
6567
"com.oracle.bmc.fleetsoftwareupdate.SdkClientsMetadata",
6668
"com.oracle.bmc.functions.SdkClientsMetadata",
6769
"com.oracle.bmc.fusionapps.SdkClientsMetadata",
6870
"com.oracle.bmc.generativeai.SdkClientsMetadata",
71+
"com.oracle.bmc.generativeaiagent.SdkClientsMetadata",
72+
"com.oracle.bmc.generativeaiagentruntime.SdkClientsMetadata",
6973
"com.oracle.bmc.generativeaiinference.SdkClientsMetadata",
7074
"com.oracle.bmc.genericartifactscontent.SdkClientsMetadata",
7175
"com.oracle.bmc.globallydistributeddatabase.SdkClientsMetadata",
@@ -126,6 +130,7 @@
126130
"com.oracle.bmc.rover.SdkClientsMetadata",
127131
"com.oracle.bmc.sch.SdkClientsMetadata",
128132
"com.oracle.bmc.secrets.SdkClientsMetadata",
133+
"com.oracle.bmc.securityattribute.SdkClientsMetadata",
129134
"com.oracle.bmc.servicecatalog.SdkClientsMetadata",
130135
"com.oracle.bmc.servicemanagerproxy.SdkClientsMetadata",
131136
"com.oracle.bmc.servicemesh.SdkClientsMetadata",
@@ -143,6 +148,7 @@
143148
"com.oracle.bmc.waa.SdkClientsMetadata",
144149
"com.oracle.bmc.waas.SdkClientsMetadata",
145150
"com.oracle.bmc.waf.SdkClientsMetadata",
146-
"com.oracle.bmc.workrequests.SdkClientsMetadata"
151+
"com.oracle.bmc.workrequests.SdkClientsMetadata",
152+
"com.oracle.bmc.zpr.SdkClientsMetadata"
147153
})
148154
final class SdkAutomaticFeatureMetadata {}

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

Lines changed: 2 additions & 26 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.73.0</version>
7+
<version>2.79.0</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010

@@ -38,31 +38,7 @@
3838
<dependency>
3939
<groupId>com.oracle.oci.sdk</groupId>
4040
<artifactId>oci-java-sdk-common</artifactId>
41-
<version>2.73.0</version>
42-
</dependency>
43-
<dependency>
44-
<groupId>com.oracle.oci.sdk</groupId>
45-
<artifactId>oci-java-sdk-core</artifactId>
46-
<version>2.73.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.73.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.73.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>
41+
<version>2.79.0</version>
6642
</dependency>
6743
</dependencies>
6844
</project>

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

Lines changed: 2 additions & 2 deletions
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>2.73.0</version>
8+
<version>2.79.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>com.oracle.oci.sdk</groupId>
2727
<artifactId>oci-java-sdk-common</artifactId>
28-
<version>2.73.0</version>
28+
<version>2.79.0</version>
2929
</dependency>
3030
</dependencies>
3131
</project>

bmc-addons/bmc-sasl/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>oci-java-sdk-addons</artifactId>
99
<groupId>com.oracle.oci.sdk</groupId>
10-
<version>2.73.0</version>
10+
<version>2.79.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -57,12 +57,12 @@
5757
<dependency>
5858
<groupId>com.google.protobuf</groupId>
5959
<artifactId>protobuf-java</artifactId>
60-
<version>3.19.6</version>
60+
<version>3.25.5</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>com.oracle.oci.sdk</groupId>
6464
<artifactId>oci-java-sdk-common</artifactId>
65-
<version>2.73.0</version>
65+
<version>2.79.0</version>
6666
</dependency>
6767
</dependencies>
6868

bmc-addons/pom.xml

Lines changed: 1 addition & 1 deletion
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>2.73.0</version>
8+
<version>2.79.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

bmc-adm/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>2.73.0</version>
7+
<version>2.79.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-adm</artifactId>
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.oracle.oci.sdk</groupId>
1818
<artifactId>oci-java-sdk-common</artifactId>
19-
<version>2.73.0</version>
19+
<version>2.79.0</version>
2020
</dependency>
2121
</dependencies>
2222
</project>

bmc-aianomalydetection/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>2.73.0</version>
7+
<version>2.79.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-aianomalydetection</artifactId>
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>com.oracle.oci.sdk</groupId>
1818
<artifactId>oci-java-sdk-common</artifactId>
19-
<version>2.73.0</version>
19+
<version>2.79.0</version>
2020
</dependency>
2121
</dependencies>
2222
</project>

0 commit comments

Comments
 (0)