Skip to content

Releasing version 2.7.0 #107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file.

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

## 2.7.0 - 2021-11-09
### Added
- Support for drill down metadata in the Management Dashboard service
- Support for operator access control on dedicated autonomous databases in the Operator Access Control service

### Breaking Changes
- Update the property `isFullyPreApproved`, `approverGroupsList`, `operatorControlName` from optional to required in `UpdateOperatorControlDetails` in Operator Access Control service.
- Update the property `isEnforcedAlways` from optional to required in `UpdateOperatorControlAssignmentDetails` in Operator Access Control service.
- Update the property `approverGroupsList` from optional to required in `CreateOpereatorControlDetails` in Operator Access Control service.
- Update the property `resourceType` from optional to required in `CreateOpereatorControlAssignmentDetails` in Operator Access Control service.
- Update the property `resourceType` from type `string` to type`model.ResourceTypes` in `OperatorControlAssignmentSummary` in Operator Access Control service.

## 2.6.1 - 2021-11-02
### Added
- Support for the Database Tools service
Expand Down
2 changes: 1 addition & 1 deletion examples/javascript/identity.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const tenancyId = {
};

(async () => {
const identityClient = await new identity.IdentityClient({
const identityClient = new identity.IdentityClient({
authenticationDetailsProvider: provider
});
const regions = await identityClient.listRegionSubscriptions(tenancyId);
Expand Down
2 changes: 1 addition & 1 deletion examples/javascript/instance-principal.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const common = require("oci-common");
(async () => {
const authenticationProvider = await new common.InstancePrincipalsAuthenticationDetailsProviderBuilder().build();
try {
const identityClient = await new identity.IdentityClient({
const identityClient = new identity.IdentityClient({
authenticationDetailsProvider: authenticationProvider
});
const regions = await identityClient.listRegions({});
Expand Down
2 changes: 1 addition & 1 deletion examples/javascript/resource-principal.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const common = require("oci-common");
(async () => {
const authenticationProvider = await common.ResourcePrincipalAuthenticationDetailsProvider.builder();
try {
const identityClient = await new identity.IdentityClient({
const identityClient = new identity.IdentityClient({
authenticationDetailsProvider: authenticationProvider
});
const regions = await identityClient.listRegions({});
Expand Down
2 changes: 1 addition & 1 deletion examples/javascript/resourceresearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ async function usersByFreeformTagAndValue(tag, value) {
}

(async () => {
searchClient = await new resourceSearch.ResourceSearchClient({
searchClient = new resourceSearch.ResourceSearchClient({
authenticationDetailsProvider: provider
});
await resourceType();
Expand Down
2 changes: 1 addition & 1 deletion examples/javascript/tagging.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const provider = new common.ConfigFileAuthenticationDetailsProvider();

(async () => {
const compartmentId = provider.getTenantId() || "";
const identityClient = await new identity.IdentityClient({
const identityClient = new identity.IdentityClient({
authenticationDetailsProvider: provider
});

Expand Down
4 changes: 2 additions & 2 deletions examples/typescript/audit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ async function getAuditEvents(
}

(async () => {
identityClient = await new identity.IdentityClient({ authenticationDetailsProvider: provider });
auditClient = await new audit.AuditClient({ authenticationDetailsProvider: provider });
identityClient = new identity.IdentityClient({ authenticationDetailsProvider: provider });
auditClient = new audit.AuditClient({ authenticationDetailsProvider: provider });

const endTime: Date = new Date();
const offset = new Date().setDate(new Date().getDate() - 5);
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/instance-principal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import common = require("oci-common");
(async () => {
const authenticationProvider = await new common.InstancePrincipalsAuthenticationDetailsProviderBuilder().build();
try {
const identityClient = await new identity.IdentityClient({
const identityClient = new identity.IdentityClient({
authenticationDetailsProvider: authenticationProvider
});
const regions = await identityClient.listRegions({});
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/resource-principal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import common = require("oci-common");
(async () => {
const authenticationProvider = await common.ResourcePrincipalAuthenticationDetailsProvider.builder();
try {
const identityClient = await new identity.IdentityClient({
const identityClient = new identity.IdentityClient({
authenticationDetailsProvider: authenticationProvider
});
const regions = await identityClient.listRegions({});
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript/resourceresearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ async function usersByFreeformTagAndValue(tag: string, value: string) {
}

(async () => {
searchClient = await new ResourceSearchClient({
searchClient = new ResourceSearchClient({
authenticationDetailsProvider: provider
});
await resourceType();
Expand Down
2 changes: 1 addition & 1 deletion lib/aianomalydetection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-aianomalydetection",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/ailanguage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-ailanguage",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Ai Language Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-analytics",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Analytics Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/announcementsservice/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-announcementsservice",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Announcement Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/apigateway/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-apigateway",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for API gateway service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/apmconfig/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-apmconfig",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Apm Config Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/apmcontrolplane/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-apmcontrolplane",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Apm Control Plane Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/apmsynthetics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-apmsynthetics",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Apm Synthetics Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/apmtraces/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-apmtraces",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Apm Traces Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/applicationmigration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-applicationmigration",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Application Migration service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/artifacts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-artifacts",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Artifacts Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/audit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-audit",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Audit Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/autoscaling/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-autoscaling",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Autoscaling Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/bastion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-bastion",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Bastion Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/bds/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-bds",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for BDS Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/blockchain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-blockchain",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Blockchain Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/budget/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-budget",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Budget Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/certificates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-certificates",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Certificates Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/certificatesmanagement/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-certificatesmanagement",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Certificates Management Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/cims/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-cims",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Cims ",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/cloudguard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-cloudguard",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Cloud Guard Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-common",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI Common module for NodeJS",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/computeinstanceagent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-computeinstanceagent",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Compute Instance Agent Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/containerengine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-containerengine",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Container Engine",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-core",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Core",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/database/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-database",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Database",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/databasemanagement/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-databasemanagement",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Database Management Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/databasemigration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-databasemigration",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Database Migration Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/databasetools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-databasetools",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Database Tools Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/datacatalog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-datacatalog",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Data catalogue Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/dataflow/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-dataflow",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Dataflow service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/dataintegration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-dataintegration",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Data Integration Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/datalabelingservice/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-datalabelingservice",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Data Labeling Service Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/datalabelingservicedataplane/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-datalabelingservicedataplane",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Data Labeling Service Dataplane Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/datasafe/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-datasafe",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Data Safe ",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/datascience/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-datascience",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Data Science Service",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion lib/devops/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oci-devops",
"version": "2.6.1",
"version": "2.7.0",
"description": "OCI NodeJS client for Devops Service",
"repository": {
"type": "git",
Expand Down
Loading