Skip to content

Commit 1fb4918

Browse files
authored
chore: Update guide (#2046)
1 parent c885824 commit 1fb4918

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

docs-js/guides/upgrade-to-version-4.mdx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@ description: This document will guide you through the upgrade process from versi
99

1010
# How to Upgrade to Version 4 of the SAP Cloud SDK for JavaScript <!-- omit from toc -->
1111

12-
This document will guide you through the steps necessary to upgrade to version 4 of the SAP Cloud SDK.
13-
Depending on your project, some steps might not be applicable.
14-
The To-Do list is:
12+
This document outlines changes introduced in version 4 of the SAP Cloud SDK and provides guidance for updating your project where needed.
13+
Some points highlight changes in default behavior rather than required actions.
1514

1615
- [Update Your Project Dependencies](#update-your-project-dependencies)
1716
- [Update to Node 22 or Newer](#update-to-node-22-or-newer)
18-
- [Set `useCache` explicitly to `false` to turn off destination caching](#set-usecache-explicitly-to-false-to-turn-off-destination-caching)
19-
- [Set `iasToXsuaaTokenExchange` to `true` to enable IAS to XSUAA token exchange](#set-iastoxsuaatokenexchange-to-true-to-enable-ias-to-xsuaa-token-exchange)
17+
- [Destination caching is enabled by default](#destination-caching-is-enabled-by-default)
18+
- [`iasToXsuaaTokenExchange` option is `false` by default](#iastoxsuaatokenexchange-option-is-false-by-default)
2019
- [Remove Deprecated Content](#remove-deprecated-content)
2120

2221
## Update Your Project Dependencies
@@ -34,7 +33,7 @@ All SAP Cloud SDK for JavaScript libraries now support node 22 (LTS) as the **mi
3433
If you are using a node version older than 22, update your runtime environment to a newer version.
3534
On Cloud Foundry you can do this by [setting the node engine in your `package.json`](https://docs.cloudfoundry.org/buildpacks/node/index.html#runtime).
3635

37-
## Set `useCache` explicitly to `false` to turn off destination caching
36+
## Destination caching is enabled by default
3837

3938
**Destination caching while retrieving destinations via the destination service is now enabled by default.**
4039

@@ -46,7 +45,7 @@ To disable caching set `useCache: false` in the options, for example in `execute
4645
.execute({ destinationName: 'DESTINATION', jwt: 'JWT', useCache: false })
4746
```
4847

49-
## Set `iasToXsuaaTokenExchange` to `true` to enable IAS to XSUAA token exchange
48+
## `iasToXsuaaTokenExchange` option is `false` by default
5049

5150
**Token exchange from IAS to XSUAA is now disabled by default.
5251
Set `iasToXsuaaTokenExchange` to `true` explicitly if token exchange is expected.**

0 commit comments

Comments
 (0)