Skip to content

Commit a66af7e

Browse files
authored
Merge pull request #35 from oracle/release_2020-12-08
Releasing version 1.9.1
2 parents a6c1899 + f540826 commit a66af7e

File tree

127 files changed

+777
-160
lines changed

Some content is hidden

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

127 files changed

+777
-160
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+
## 1.9.1 - 2020-12-08
7+
### Added
8+
- Support for Integration Service custom endpoint feature
9+
- Support for metadata field in IdentityProvider Get and List response
10+
- Support for fine-grained data analysis and improved SQL insights
11+
- Support for ADB Dedicated - ORDS and SSL cert rotation at AEI
12+
- Support for Maintenance Schedule feature for Exadata Infrastructure resources for ExaCC
13+
614
## 1.9.0 - 2020-12-01
715
### Added
816
- Support for calling Oracle Cloud Infrastructure services in the sa-santiago-1 region

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": "1.9.0",
3+
"version": "1.9.1",
44
"description": "OCI NodeJS client for Analytics Service",
55
"repository": {
66
"type": "git",

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": "1.9.0",
3+
"version": "1.9.1",
44
"description": "OCI NodeJS client for Announcement Service",
55
"repository": {
66
"type": "git",

lib/apigateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-apigateway",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "OCI NodeJS client for API gateway service",
55
"repository": {
66
"type": "git",

lib/applicationmigration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-applicationmigration",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "OCI NodeJS client for Application Migration service",
55
"repository": {
66
"type": "git",

lib/audit/package.json

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

lib/autoscaling/package.json

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

lib/bds/package.json

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

lib/blockchain/package.json

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

lib/budget/package.json

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

lib/cims/package.json

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

lib/cloudguard/package.json

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

lib/common/lib/auth/instance-principals-authentication-detail-provider.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,11 @@ export default class InstancePrincipalsAuthenticationDetailsProviderBuilder exte
4848
InstancePrincipalsAuthenticationDetailsProviderBuilder,
4949
InstancePrincipalsAuthenticationDetailsProvider
5050
> {
51-
constructor() {
51+
constructor(purpose?: string) {
5252
super();
53+
if (purpose) {
54+
this.purpose = purpose;
55+
}
5356
}
5457

5558
async build(): Promise<InstancePrincipalsAuthenticationDetailsProvider> {

lib/common/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-common",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "OCI Common module for NodeJS",
55
"repository": {
66
"type": "git",
@@ -19,6 +19,10 @@
1919
"license": "(UPL-1.0 OR Apache-2.0)",
2020
"dependencies": {
2121
"@types/isomorphic-fetch": "0.0.35",
22+
"@types/jsonwebtoken": "^8.5.0",
23+
"@types/jssha": "^2.0.0",
24+
"@types/opossum": "4.1.1",
25+
"@types/sshpk": "^1.10.3",
2226
"es6-promise": "4.2.6",
2327
"http-signature": "1.3.1",
2428
"isomorphic-fetch": "2.2.1",
@@ -30,12 +34,8 @@
3034
},
3135
"devDependencies": {
3236
"@types/chai": "^4.1.7",
33-
"@types/jsonwebtoken": "^8.5.0",
34-
"@types/jssha": "^2.0.0",
35-
"@types/mocha": "^5.2.5",
3637
"@types/node": "10.17.0",
37-
"@types/opossum": "4.1.1",
38-
"@types/sshpk": "^1.10.3",
38+
"@types/mocha": "^5.2.5",
3939
"awesome-typescript-loader": "3.1.3",
4040
"chai": "^4.2.0",
4141
"mocha": "^5.2.0",

lib/computeinstanceagent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-computeinstanceagent",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "OCI NodeJS client for Compute Instance Agent Service",
55
"repository": {
66
"type": "git",

lib/containerengine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oci-containerengine",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "OCI NodeJS client for Container Engine",
55
"repository": {
66
"type": "git",

lib/core/package.json

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

0 commit comments

Comments
 (0)