Skip to content

Commit 708dc17

Browse files
authored
Releasing version 2.8.0
Releasing version 2.8.0
2 parents 3fa3458 + 407a3b3 commit 708dc17

File tree

853 files changed

+7620
-3092
lines changed

Some content is hidden

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

853 files changed

+7620
-3092
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ 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.8.0 - 2021-11-17
7+
### Added
8+
- Support for getting subnet topology in the Networking service
9+
- Support for encrypted FastConnect resources in the Networking service
10+
- Support for performance and high availability, as well as recommendation metrics, in the Optimizer service
11+
- Support for optional TDE wallet passwords in the Database service
12+
- Support for Object Storage service integration in the Big Data service
13+
14+
### Breaking Changes
15+
- Support for circuit breakers enabled by default in all services except Streaming and Compute
16+
- Support for retries enabled by default in all operations of the Functions and Roving Edge services, and in some operations of the Streaming service
17+
618
## 2.7.0 - 2021-11-09
719
### Added
820
- Support for drill down metadata in the Management Dashboard service

index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,3 +173,4 @@ export import waf = require("oci-waf");
173173
export import certificates = require("oci-certificates");
174174
export import certificatesmanagement = require("oci-certificatesmanagement");
175175
export import databasetools = require("oci-databasetools");
176+
export import servicemanagerproxy = require("oci-servicemanagerproxy");

lib/aianomalydetection/lib/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { composeResponse, composeRequest, GenericRetrier } from "oci-common";
2727

2828
export enum AnomalyDetectionApiKeys {}
2929
/**
30-
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
30+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
3131
*/
3232
export class AnomalyDetectionClient {
3333
protected static serviceEndpointTemplate =
@@ -51,7 +51,7 @@ export class AnomalyDetectionClient {
5151
: null;
5252
}
5353
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
54-
const specCircuitBreakerEnabled = false;
54+
const specCircuitBreakerEnabled = true;
5555
if (
5656
!this._circuitBreaker &&
5757
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!) &&

lib/aianomalydetection/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-aianomalydetection",
3-
"version": "2.7.0",
3+
"version": "2.8.0",
44
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
55
"repository": {
66
"type": "git",

lib/ailanguage/lib/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { composeResponse, composeRequest, GenericRetrier } from "oci-common";
2626

2727
export enum AIServiceLanguageApiKeys {}
2828
/**
29-
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
29+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
3030
*/
3131
export class AIServiceLanguageClient {
3232
protected static serviceEndpointTemplate =
@@ -49,7 +49,7 @@ export class AIServiceLanguageClient {
4949
: null;
5050
}
5151
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
52-
const specCircuitBreakerEnabled = false;
52+
const specCircuitBreakerEnabled = true;
5353
if (
5454
!this._circuitBreaker &&
5555
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!) &&

lib/ailanguage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-ailanguage",
3-
"version": "2.7.0",
3+
"version": "2.8.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/analytics/lib/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { composeResponse, composeRequest, GenericRetrier } from "oci-common";
2626

2727
export enum AnalyticsApiKeys {}
2828
/**
29-
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
29+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
3030
*/
3131
export class AnalyticsClient {
3232
protected static serviceEndpointTemplate = "https://analytics.{region}.ocp.{secondLevelDomain}";
@@ -49,7 +49,7 @@ export class AnalyticsClient {
4949
: null;
5050
}
5151
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
52-
const specCircuitBreakerEnabled = false;
52+
const specCircuitBreakerEnabled = true;
5353
if (
5454
!this._circuitBreaker &&
5555
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!) &&

lib/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-analytics",
3-
"version": "2.7.0",
3+
"version": "2.8.0",
44
"description": "OCI NodeJS client for Analytics Service",
55
"repository": {
66
"type": "git",

lib/announcementsservice/lib/client.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { composeResponse, composeRequest, GenericRetrier } from "oci-common";
2424

2525
export enum AnnouncementApiKeys {}
2626
/**
27-
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
27+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
2828
*/
2929
export class AnnouncementClient {
3030
protected static serviceEndpointTemplate = "https://announcements.{region}.{secondLevelDomain}";
@@ -46,7 +46,7 @@ export class AnnouncementClient {
4646
: null;
4747
}
4848
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
49-
const specCircuitBreakerEnabled = false;
49+
const specCircuitBreakerEnabled = true;
5050
if (
5151
!this._circuitBreaker &&
5252
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!) &&
@@ -393,7 +393,7 @@ export class AnnouncementClient {
393393
}
394394
export enum AnnouncementsPreferencesApiKeys {}
395395
/**
396-
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
396+
* This service client uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
397397
*/
398398
export class AnnouncementsPreferencesClient {
399399
protected static serviceEndpointTemplate = "https://announcements.{region}.{secondLevelDomain}";
@@ -415,7 +415,7 @@ export class AnnouncementsPreferencesClient {
415415
: null;
416416
}
417417
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
418-
const specCircuitBreakerEnabled = false;
418+
const specCircuitBreakerEnabled = true;
419419
if (
420420
!this._circuitBreaker &&
421421
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration!) &&

lib/announcementsservice/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-announcementsservice",
3-
"version": "2.7.0",
3+
"version": "2.8.0",
44
"description": "OCI NodeJS client for Announcement Service",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)