Skip to content

Commit 01e931a

Browse files
Releasing version 2.56.0
Releasing version 2.56.0
2 parents b16316f + defcea3 commit 01e931a

File tree

138 files changed

+387
-161
lines changed

Some content is hidden

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

138 files changed

+387
-161
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ 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.56.0 - 2023-04-04
7+
### Added
8+
- Support for pre-emptible worker nodes in the Container Engine for Kubernetes service
9+
- Support for larger data storage (now up to 128TB) in the MySQL Database service
10+
- Support for HTTP health checks for HTTPS backend sets in the Load Balancer service
11+
12+
### Breaking Changes
13+
- The property `backendSetName` has been changed from optional to required in the model `ForwardToBackendSet` in the Load Balancer service
14+
15+
616
## 2.55.1 - 2023-03-28
717
### Added
818
- Support for ACD and OKV wallet naming for autonomous databases and dedicated autonomous databases on Exadata Cloud at Customer in the Database service

examples/typescript/session-auth.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ import * as identity from "oci-identity";
1616
const identityClient = new identity.IdentityClient({ authenticationDetailsProvider: provider });
1717

1818
const listUserReq = { compartmentId: compartmentId };
19-
const users = await identityClient.listUsers(listUserReq);
20-
console.log("users: ", users);
19+
let users = await identityClient.listUsers(listUserReq);
20+
21+
// Refresh
22+
await provider.refreshSessionToken(); // Refresh the token.
23+
users = await identityClient.listUsers(listUserReq); // API should still work.
24+
return users;
2125
} catch (e) {
2226
console.log("error: ", e);
2327
}

lib/adm/package.json

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

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.55.1",
3+
"version": "2.56.0",
44
"description": "OCI NodeJS client for Ai Anomaly Detection Service",
55
"repository": {
66
"type": "git",

lib/aidocument/package.json

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

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.55.1",
3+
"version": "2.56.0",
44
"description": "OCI NodeJS client for Ai Language Service",
55
"repository": {
66
"type": "git",

lib/aispeech/package.json

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

lib/aivision/package.json

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

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

0 commit comments

Comments
 (0)