Skip to content

Commit b64d430

Browse files
Releasing version
Releasing version
2 parents f1b151b + 73a712b commit b64d430

File tree

267 files changed

+11005
-712
lines changed

Some content is hidden

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

267 files changed

+11005
-712
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ 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.67.3 - 2025-06-24
7+
### Added
8+
- Support for database backups to Amazon S3 as default option for all databases running on Exa@AWS in the Database service
9+
- Support for customer-managed encryption keys in hosted environments in the NoSQL Database service
10+
- Support for upgrading a fleet of Grid Infrastructure and Databases to 23ai for ExaCS and ExaCC in the Exadata Fleet Update service
11+
- Support for Bring Your Own IPv6 (BYOIPv6) in the Load Balancer service
12+
- Support for Agent Development Kit (ADK) add-on
13+
614
## 3.67.2 - 2025-06-17
715
### Added
816
- Support for node cycling (reboot/replaceBootVolume) for worker nodes in the Kubernetes Engine service

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>3.67.2</version>
7+
<version>3.67.3</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.67.2</version>
18+
<version>3.67.3</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

bmc-addons/bmc-adk/pom.xml

Lines changed: 158 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>com.oracle.oci.sdk</groupId>
8+
<artifactId>oci-java-sdk-addons</artifactId>
9+
<version>3.67.3</version>
10+
</parent>
11+
12+
<artifactId>oci-java-sdk-addons-adk</artifactId>
13+
14+
<properties>
15+
<maven.compiler.source>8</maven.compiler.source>
16+
<maven.compiler.target>8</maven.compiler.target>
17+
<jacoco-maven-plugin-version>0.8.8</jacoco-maven-plugin-version>
18+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
</properties>
20+
21+
22+
<build>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-surefire-plugin</artifactId>
27+
<version>3.5.3</version>
28+
<configuration>
29+
<skipTests>true</skipTests>
30+
</configuration>
31+
</plugin>
32+
<plugin>
33+
<groupId>org.apache.maven.plugins</groupId>
34+
<artifactId>maven-compiler-plugin</artifactId>
35+
<version>3.10.1</version>
36+
<configuration>
37+
<compilerArgs>
38+
<arg>-parameters</arg>
39+
</compilerArgs>
40+
</configuration>
41+
</plugin>
42+
<plugin>
43+
<groupId>org.codehaus.mojo</groupId>
44+
<artifactId>exec-maven-plugin</artifactId>
45+
<version>3.0.0</version>
46+
<configuration>
47+
<classpathScope>compile</classpathScope>
48+
<arguments>
49+
<argument>-Djava.system.class.loader=java.net.URLClassLoader</argument>
50+
</arguments>
51+
</configuration>
52+
</plugin>
53+
<!-- Java code coverage -->
54+
<plugin>
55+
<groupId>org.jacoco</groupId>
56+
<artifactId>jacoco-maven-plugin</artifactId>
57+
<version>${jacoco-maven-plugin-version}</version>
58+
<configuration>
59+
<outputDirectory>${project.build.directory}/jacoco-reports</outputDirectory>
60+
</configuration>
61+
<executions>
62+
<execution>
63+
<id>default-prepare-agent</id>
64+
<goals>
65+
<goal>prepare-agent</goal>
66+
</goals>
67+
</execution>
68+
<execution>
69+
<id>default-report</id>
70+
<phase>test</phase>
71+
<goals>
72+
<goal>report</goal>
73+
</goals>
74+
</execution>
75+
</executions>
76+
</plugin>
77+
</plugins>
78+
</build>
79+
80+
<dependencies>
81+
82+
<dependency>
83+
<groupId>org.slf4j</groupId>
84+
<artifactId>slf4j-api</artifactId>
85+
<version>2.0.7</version>
86+
</dependency>
87+
<dependency>
88+
<groupId>org.slf4j</groupId>
89+
<artifactId>slf4j-simple</artifactId>
90+
<version>2.0.7</version>
91+
</dependency>
92+
<dependency>
93+
<groupId>com.oracle.oci.sdk</groupId>
94+
<artifactId>oci-java-sdk-common</artifactId>
95+
<version>${project.version}</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>com.oracle.oci.sdk</groupId>
99+
<artifactId>oci-java-sdk-generativeaiagent</artifactId>
100+
<version>${project.version}</version>
101+
</dependency>
102+
<dependency>
103+
<groupId>com.oracle.oci.sdk</groupId>
104+
<artifactId>oci-java-sdk-generativeaiagentruntime</artifactId>
105+
<version>${project.version}</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>com.oracle.oci.sdk</groupId>
109+
<artifactId>oci-java-sdk-common-httpclient-jersey3</artifactId>
110+
<version>${project.version}</version>
111+
</dependency>
112+
<dependency>
113+
<groupId>com.fasterxml.jackson.core</groupId>
114+
<artifactId>jackson-databind</artifactId>
115+
<version>2.17.1</version>
116+
</dependency>
117+
<dependency>
118+
<groupId>com.fasterxml.jackson.core</groupId>
119+
<artifactId>jackson-core</artifactId>
120+
<version>2.17.1</version>
121+
</dependency>
122+
<dependency>
123+
<groupId>org.junit.jupiter</groupId>
124+
<artifactId>junit-jupiter-api</artifactId>
125+
<version>5.9.0</version>
126+
<scope>test</scope>
127+
</dependency>
128+
<dependency>
129+
<groupId>org.junit.jupiter</groupId>
130+
<artifactId>junit-jupiter-engine</artifactId>
131+
<version>5.9.0</version>
132+
<scope>test</scope>
133+
</dependency>
134+
<dependency>
135+
<groupId>org.apache.commons</groupId>
136+
<artifactId>commons-lang3</artifactId>
137+
<version>3.17.0</version>
138+
</dependency>
139+
<dependency>
140+
<groupId>com.google.code.gson</groupId>
141+
<artifactId>gson</artifactId>
142+
<version>2.11.0</version>
143+
</dependency>
144+
<dependency>
145+
<groupId>org.mockito</groupId>
146+
<artifactId>mockito-core</artifactId>
147+
<version>4.8.0</version>
148+
<scope>test</scope>
149+
</dependency>
150+
<dependency>
151+
<groupId>org.mockito</groupId>
152+
<artifactId>mockito-junit-jupiter</artifactId>
153+
<version>4.8.0</version>
154+
<scope>test</scope>
155+
</dependency>
156+
</dependencies>
157+
158+
</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)