Skip to content

Commit 9e73030

Browse files
authored
Merge pull request #439 from oracle/release_2022-09-13
Releasing version 2.43.0
2 parents a6b4f6d + 5fe641e commit 9e73030

File tree

192 files changed

+5011
-462
lines changed

Some content is hidden

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

192 files changed

+5011
-462
lines changed

ApacheConnector-README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The SDK for Java also provides an environment variable to switch back to the old
7171

7272
### Switching off auto-close of streams
7373

74-
For API calls that return binary/stream response, the SDK will auto-close the stream once the stream has been completely read by the customer. If reading the stream completely, the SDK will automatically try to close the stream to release the connection from the connection pool, to disable this feature of auto-closing streams on full read, please call `ResponseHelper.shouldAutoCloseResponseInputStream(false)`. This is because the SDK for Java supports the Apache Connector for sending requests and managing connections to the service. By default, the Apache Connector supports connection pooling and in the cases where the stream from the response is not closed, the connections don't get released from the connection pool and in turn results in an indefinite wait time.
74+
For API calls that return binary/stream response, the SDK will auto-close the stream once the stream has been completely read by the customer. If reading the stream completely, the SDK will automatically try to close the stream to release the connection from the connection pool, to disable this feature of auto-closing streams on full read, please call `Options.shouldAutoCloseResponseInputStream(false)`. This is because the SDK for Java supports the Apache Connector for sending requests and managing connections to the service. By default, the Apache Connector supports connection pooling and in the cases where the stream from the response is not closed, the connections don't get released from the connection pool and in turn results in an indefinite wait time.
7575

7676
## Configuration for Apache Connector
7777

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ 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+
## 2.43.0 - 2022-09-13
7+
### Added
8+
- Support for calling Oracle Cloud Infrastructure services in the eu-madrid-1 region
9+
- Support for exporting and importing larger model artifacts in the model catalog in the Data Science service
10+
- Support for Request Based Authorization in the API Gateway service
11+
- Support for Dynamic Authentication in the API Gateway service
12+
- Support for Dynamic Routing Backend in the API Gateway service
13+
14+
### Breaking Changes
15+
- Support for retries by default on some operations of the Data Science service
16+
617
## 2.42.0 - 2022-09-06
718
### Added
819
- Support for generic REST, OCI Streaming service, and Lake House connectors in the Data Connectivity Management service

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ If the request to the server hangs for an indefinite time and the program gets s
8080
because the connection is not released from the Apache connection
8181
pool. If you're calling APIs that return a binary/stream response,
8282
please make sure to close all the streams returned from the response to release the connections from the connection pool in case of partial reads. If reading the stream completely, the SDK will
83-
automatically try to close the stream to release the connection from the connection pool, to disable this feature of auto-closing streams on full read, please call `ResponseHelper.shouldAutoCloseResponseInputStream(false)`. This is because the SDK for Java supports the Apache Connector for sending requests and managing connections to the service. By default, the Apache Connector supports connection pooling and in the cases where the stream from the response is not closed, the connections don't get released from the connection pool and in turn results in an indefinite wait time. This can be avoided either by closing the streams or switching back to the Jersey default connector, i.e. `HttpUrlConnector`. You can find more information about the same in the OCI Java SDK Troubleshooting section.
83+
automatically try to close the stream to release the connection from the connection pool, to disable this feature of auto-closing streams on full read, please call `Options.shouldAutoCloseResponseInputStream(false)`. This is because the SDK for Java supports the Apache Connector for sending requests and managing connections to the service. By default, the Apache Connector supports connection pooling and in the cases where the stream from the response is not closed, the connections don't get released from the connection pool and in turn results in an indefinite wait time. This can be avoided either by closing the streams or switching back to the Jersey default connector, i.e. `HttpUrlConnector`. You can find more information about the same in the OCI Java SDK Troubleshooting section.
8484

8585
### Performance issues and switching between connection closing strategies with the Apache Connector
8686

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.42.0</version>
7+
<version>2.43.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.42.0</version>
21+
<version>2.43.0</version>
2222
</dependency>
2323
</dependencies>
2424
</project>

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

Lines changed: 6 additions & 6 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.42.0</version>
7+
<version>2.43.0</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>oci-java-sdk-addons-graalvm</artifactId>
@@ -132,30 +132,30 @@
132132
<dependency>
133133
<groupId>com.oracle.oci.sdk</groupId>
134134
<artifactId>oci-java-sdk-common</artifactId>
135-
<version>2.42.0</version>
135+
<version>2.43.0</version>
136136
</dependency>
137137
<dependency>
138138
<groupId>com.oracle.oci.sdk</groupId>
139139
<artifactId>oci-java-sdk-objectstorage-extensions</artifactId>
140-
<version>2.42.0</version>
140+
<version>2.43.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.42.0</version>
146+
<version>2.43.0</version>
147147
<scope>test</scope>
148148
</dependency>
149149
<dependency>
150150
<groupId>com.oracle.oci.sdk</groupId>
151151
<artifactId>oci-java-sdk-objectstorage-extensions</artifactId>
152-
<version>2.42.0</version>
152+
<version>2.43.0</version>
153153
<scope>test</scope>
154154
</dependency>
155155
<dependency>
156156
<groupId>com.oracle.oci.sdk</groupId>
157157
<artifactId>oci-java-sdk-core</artifactId>
158-
<version>2.42.0</version>
158+
<version>2.43.0</version>
159159
<scope>test</scope>
160160
</dependency>
161161
</dependencies>

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.42.0</version>
8+
<version>2.43.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.42.0</version>
28+
<version>2.43.0</version>
2929
</dependency>
3030
</dependencies>
3131
</project>

bmc-addons/bmc-sasl/pom.xml

Lines changed: 2 additions & 2 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.42.0</version>
10+
<version>2.43.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>com.oracle.oci.sdk</groupId>
6464
<artifactId>oci-java-sdk-common</artifactId>
65-
<version>2.42.0</version>
65+
<version>2.43.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.42.0</version>
8+
<version>2.43.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.42.0</version>
7+
<version>2.43.0</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>2.42.0</version>
18+
<version>2.43.0</version>
1919
</dependency>
2020
</dependencies>
2121
</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.42.0</version>
7+
<version>2.43.0</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>2.42.0</version>
18+
<version>2.43.0</version>
1919
</dependency>
2020
</dependencies>
2121
</project>

0 commit comments

Comments
 (0)