Skip to content
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

Fix Node.js product name #298

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
- Support for domains while creating integration instances in Oracle Integration Cloud service

### Fixed
- Fixed an issue that causes http request failures when requesting certificates from the server in `URLBasedX509CertificateSupplier` with NodeJS 20
- Fixed an issue that causes http request failures when requesting certificates from the server in `URLBasedX509CertificateSupplier` with Node.js 20

## 2.70.1 - 2023-09-12

Expand Down Expand Up @@ -622,7 +622,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
- Support for support field in class metric in the AI Language service
- Support for Compute Cloud at Customer resource type in the Operator Access Control service
- Support for managing account management info, account recovery settings, app roles, apps, app status changers, grants, identity propagation trusts and settings, request-able groups, requests, security questions, OAuth tokens, and user attribute settings in the Identity Domains service
- Added support for NodeJS 20
- Added support for Node.js 20


### Breaking Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ Full documentation can be found [on the sdk for typescript and javascript docume

## Versions Supported

The SDK for TypeScript and JavaScript currently supports NodeJS version 14, 16, 20 and TypeScript version 4.1.3.
The SDK for TypeScript and JavaScript currently supports Node.js version 14, 16, 20 and TypeScript version 4.1.3.

## Node & Browser Support

The SDK for TypeScript and JavaScript currently supports NodeJS but does not have browser support.
The SDK for TypeScript and JavaScript currently supports Node.js but does not have browser support.

## Help

Expand Down
4 changes: 2 additions & 2 deletions examples/javascript/objectstorage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 2024 Oracle and/or its affiliates. All rights reserved.
* 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.
*/

Expand All @@ -10,7 +10,7 @@
* <li>The third is the name of object to create inside bucket</li>
* <li>The fourth is the path of the file. i.e: "/Users/File/location";
* </ul>
* Note: there is a 2GB for 64-bit machine and 1GB for 32-bit machine buffer limitation from the NodeJS V8 Engine
* Note: there is a 2GB for 64-bit machine and 1GB for 32-bit machine buffer limitation from the Node.js V8 Engine
* Cannot upload file size greater than the limit
*/

Expand Down
2 changes: 1 addition & 1 deletion examples/javascript/uploadmanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* <li>The second argument is the namespaceName</li>
* <li>The third argument is the name of an existing bucket to uplod object</li>
* </ul>
* NodeJS V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine.
* Node.js V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine.
* Do not pass in a partSize option greater than the buffer size limitation.
*/

Expand Down
6 changes: 3 additions & 3 deletions examples/typescript/objectstorage.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 2024 Oracle and/or its affiliates. All rights reserved.
* 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.
*/

Expand All @@ -11,7 +11,7 @@
* <li>The third is the name of object to create inside bucket</li>
* <li>The fourth is the path of the file. i.e: "/Users/File/location";
* </ul>
* Note: there is a 2GB for 64-bit machine and 1GB for 32-bit machine buffer limitation from the NodeJS V8 Engine
* Note: there is a 2GB for 64-bit machine and 1GB for 32-bit machine buffer limitation from the Node.js V8 Engine
* Cannot upload file size greater than the limit
*/

Expand Down Expand Up @@ -121,7 +121,7 @@ const client = new os.ObjectStorageClient({ authenticationDetailsProvider: provi
function compareStreams(stream1: any, stream2: any): boolean {
return streamToString(stream1) === streamToString(stream2);
}
// When using NodeJS version >= 18, use the following definition for the function
// When using Node.js version >= 18, use the following definition for the function
/*
async function streamToString(stream: any) {
const data = await consumers.buffer(getObjectResponse.value as NodeJS.ReadableStream).toString("utf8");
Expand Down
4 changes: 2 additions & 2 deletions examples/typescript/uploadmanager.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2020, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 2024 Oracle and/or its affiliates. All rights reserved.
* 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.
*/

Expand All @@ -19,7 +19,7 @@ const provider: common.ConfigFileAuthenticationDetailsProvider = new common.Conf
* <li>The second argument is the namespaceName</li>
* <li>The third argument is the name of an existing bucket to uplod object</li>
* </ul>
* NodeJS V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine.
* Node.js V8 Engine have a buffer size limitation, 2GB for 64-bit machine and 1GB for 32-bit machine.
* Do not pass in a partSize option greater than the buffer size limitation.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/accessgovernancecp/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Access Governance Cp Service
# OCI Node.js client for Access Governance Cp Service

This module enables you to write code to manage resources for Access Governance Cp Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/accessgovernancecp/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-accessgovernancecp",
"version": "2.89.2",
"description": "OCI NodeJS client for Access Governance Cp Service",
"description": "OCI Node.js client for Access Governance Cp Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/adm/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Adm Service
# OCI Node.js client for Adm Service

This module enables you to write code to manage resources for Adm Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/adm/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-adm",
"version": "2.89.2",
"description": "OCI NodeJS client for Adm Service",
"description": "OCI Node.js client for Adm Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/aianomalydetection/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Ai Anomaly Detection Service
# OCI Node.js client for Ai Anomaly Detection Service

This module enables you to write code to manage resources for Ai Anomaly Detection Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/aianomalydetection/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-aianomalydetection",
"version": "2.89.2",
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
"description": "OCI Node.js client for Ai Anomaly Detection Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/aidocument/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Ai Document Service
# OCI Node.js client for Ai Document Service

This module enables you to write code to manage resources for Ai Document Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/aidocument/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-aidocument",
"version": "2.89.2",
"description": "OCI NodeJS client for Ai Document Service",
"description": "OCI Node.js client for Ai Document Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/ailanguage/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Ai Language Service
# OCI Node.js client for AI Language Service

This module enables you to write code to manage resources for Ai Language Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/ailanguage/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-ailanguage",
"version": "2.89.2",
"description": "OCI NodeJS client for Ai Language Service",
"description": "OCI Node.js client for AI Language Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/aispeech/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Ai Speech Service
# OCI Node.js client for Ai Speech Service

This module enables you to write code to manage resources for Ai Speech Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/aispeech/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-aispeech",
"version": "2.89.2",
"description": "OCI NodeJS client for Ai Speech Service",
"description": "OCI Node.js client for Ai Speech Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/aivision/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Ai Vision Service
# OCI Node.js client for Ai Vision Service

This module enables you to write code to manage resources for Ai Vision Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/aivision/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-aivision",
"version": "2.89.2",
"description": "OCI NodeJS client for Ai Vision Service",
"description": "OCI Node.js client for Ai Vision Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/analytics/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OCI NodeJS client for Analytics Service
# OCI Node.js client for Analytics Service

This module enables you to write code to manage resources for Analytics Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-analytics",
"version": "2.89.2",
"description": "OCI NodeJS client for Analytics Service",
"description": "OCI Node.js client for Analytics Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/announcementsservice/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OCI NodeJS client for Announcements Service
# OCI Node.js client for Announcements Service

This module enables you to write code to manage resources for Announcements Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/announcementsservice/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-announcementsservice",
"version": "2.89.2",
"description": "OCI NodeJS client for Announcement Service",
"description": "OCI Node.js client for Announcement Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/apigateway/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OCI NodeJS client for Apigateway Service
# OCI Node.js client for Apigateway Service

This module enables you to write code to manage resources for Apigateway Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/apigateway/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-apigateway",
"version": "2.89.2",
"description": "OCI NodeJS client for API gateway service",
"description": "OCI Node.js client for API gateway service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/apmconfig/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Apm Config Service
# OCI Node.js client for Apm Config Service

This module enables you to write code to manage resources for Apm Config Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/apmconfig/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-apmconfig",
"version": "2.89.2",
"description": "OCI NodeJS client for Apm Config Service",
"description": "OCI Node.js client for Apm Config Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/apmcontrolplane/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Apm Control Plane Service
# OCI Node.js client for Apm Control Plane Service

This module enables you to write code to manage resources for Apm Control Plane Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/apmcontrolplane/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-apmcontrolplane",
"version": "2.89.2",
"description": "OCI NodeJS client for Apm Control Plane Service",
"description": "OCI Node.js client for Apm Control Plane Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/apmsynthetics/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Apm Synthetics Service
# OCI Node.js client for Apm Synthetics Service

This module enables you to write code to manage resources for Apm Synthetics Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/apmsynthetics/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-apmsynthetics",
"version": "2.89.2",
"description": "OCI NodeJS client for Apm Synthetics Service",
"description": "OCI Node.js client for Apm Synthetics Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/apmtraces/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Apm Traces Service
# OCI Node.js client for Apm Traces Service

This module enables you to write code to manage resources for Apm Traces Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/apmtraces/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-apmtraces",
"version": "2.89.2",
"description": "OCI NodeJS client for Apm Traces Service",
"description": "OCI Node.js client for Apm Traces Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/appmgmtcontrol/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Appmgmt Control Service
# OCI Node.js client for Appmgmt Control Service

This module enables you to write code to manage resources for Appmgmt Control Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/appmgmtcontrol/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-appmgmtcontrol",
"version": "2.89.2",
"description": "OCI NodeJS client for Appmgmt Control Service",
"description": "OCI Node.js client for Appmgmt Control Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/artifacts/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Artifacts Service
# OCI Node.js client for Artifacts Service

This module enables you to write code to manage resources for Artifacts Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/artifacts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-artifacts",
"version": "2.89.2",
"description": "OCI NodeJS client for Artifacts Service",
"description": "OCI Node.js client for Artifacts Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/audit/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OCI NodeJS client for Audit Service
# OCI Node.js client for Audit Service

This module enables you to write code to manage resources for Audit Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/audit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-audit",
"version": "2.89.2",
"description": "OCI NodeJS client for Audit Service",
"description": "OCI Node.js client for Audit Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/autoscaling/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OCI NodeJS client for Autoscaling Service
# OCI Node.js client for Autoscaling Service

This module enables you to write code to manage resources for Autoscaling Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/autoscaling/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-autoscaling",
"version": "2.89.2",
"description": "OCI NodeJS client for Autoscaling Service",
"description": "OCI Node.js client for Autoscaling Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
2 changes: 1 addition & 1 deletion lib/bastion/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# OCI NodeJS client for Bastion Service
# OCI Node.js client for Bastion Service

This module enables you to write code to manage resources for Bastion Service.

Expand Down
2 changes: 1 addition & 1 deletion lib/bastion/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oci-bastion",
"version": "2.89.2",
"description": "OCI NodeJS client for Bastion Service",
"description": "OCI Node.js client for Bastion Service",
"repository": {
"type": "git",
"url": "https://github.com/oracle/oci-typescript-sdk"
Expand Down
Loading