Releases: SAP/cloud-sdk-js
Releases · SAP/cloud-sdk-js
v3.18.0
New Functionalities
- [connectivity] Support IAS tokens without the need to pass
iss
in the destination fetch options. (06e5c72) - [openapi-generator, generator-common] Introduce option
generateESM
in OpenAPI generator to generate ESM compatible code. (3a93e38)
Fixed Issues
- [connectivity] Fix the JwtPayload import.
- @sap-cloud-sdk/[email protected]
- @sap-cloud-sdk/[email protected] (c23ccfd)
- [mail-client] Fix the type of
replyTo
property in theMailConfig
interface. (00fa35d)
v3.17.0
New Functionalities
- [connectivity] Add
getTenantId()
function for convenience. (dbad36f) - [mail-client] Add support for multi-tenancy for on-premise mail destinations. (68a07d6)
Improvements
- [connectivity] Use tenant ID instead of tenant-aware authentication URL for the client credentials cache. (54a46a3)
- [connectivity] Retrieve service token for OAuth2ClientCredentials authentication only once. (99b5009)
- [openapi-generator] Generated OpenAPI clients support
application/merge-patch+json
media type for patch requests. (e9a243a)
Fixed Issues
- [connectivity] Fix token fetching for mail multi-tenancy scenarios.
- @sap-cloud-sdk/[email protected]
- @sap-cloud-sdk/[email protected] (86f4158)
- [mail-client] Fix token fetching for mail multi-tenancy scenarios. (86f4158)
v3.16.0
Compatibility Notes
- [connectivity] The JKU header in JWTs is no longer verified. Instead the signature of the JWT is verified, which is more secure. (4f29615)
- [generator] Generation of OData clients does no longer fail if
basePath
value cannot be determined. It will be set to/
by default. (ef3a800)
New Functionalities
-
[connectivity] Add convenience function
transformServiceBindingToDestination()
to create destination from service bindings.
The following service bindings are supported:- business-logging
- destination
- s4-hana-cloud
- saas-registry
- workflow
- service-manager
- xsuaa
- aicore (efa75d3)
Improvements
- [connectivity] Expose
getServiceBinding()
. This was previously an internal function. (efa75d3) - [generator] Generated clients support
noImplicitOverride
config option intsconfig.json
. (022adae) - [generator] If
basePath
cannot be determined, it is set to/
, and generation no longer fails. (28ab1a4) - [openapi-generator] Generate OpenAPI clients with header parameters. (aa0b849)
Fixed Issues
- [generator] Fix incorrect warning logs for operation imports that have a matching operation in the service specification. (9efe37e)
v3.15.0
v3.14.0
v3.13.0
v3.12.1
Fixed Issues
- [connectivity] Fix
fetchDestinationWithoutTokenRetrieval
to correctly return instance and subaccount destinations.- @sap-cloud-sdk/[email protected]
- @sap-cloud-sdk/[email protected] (60fdc04)
- [openapi, odata-common] Fix type in
addCustomRequestConfiguration
method to accept values of typeany
. (60fdc04)
v3.12.0
New Functionalities
- [connectivity] Support certificates in PEM format for
ClientCertificateAuthentication
. (36be489)
Fixed Issues
- [openapi] Fix incorrect encoding of query parameters in OpenAPI requests. Query parameters (except for additional custom parameters) are now encoded by default. To change this behavior overwrite the
parameterEncoder
in the request options. (d6b1c5b) - [openapi-generator] Fix types in generated OpenAPI schemas to have proper types instead of type
any
. (6bbdd4d)
v3.11.0
Improvements
- [mail-client] Add optional
logger
property to enable console logs. Defaults tofalse
. (7ec62fa)
Fixed Issues
- [mail-client] Fix "Hostname/IP does not match certificate's altnames" issues with "localhost" when sending e-mails OnPremise. Always pass the host and port of the MAIL destination explicitly to the underlying
nodemailer
instead of falling back to the default.- @sap-cloud-sdk/[email protected]
- @sap-cloud-sdk/[email protected] (62f31fb)
v3.10.0
Compatibility Notes
- [connectivity] The SAP Cloud SDK used to get all subaccount and instance destinations, that are available with your JWT (without potentially required token retrieval), through two requests to the destination service (
/subaccountDestinations
and/instanceDestinations
). While this approach can have advantages when caching, it can cause severe performance issues without caching. Therefore, from now on, only one destination is retrieved per requested destination through/destinations
.
You can no longer rely on the SDK to automatically cache all destinations on the first request. If needed, you can callgetAllDestinationsFromDestinationService()
with cache enabled instead. (c721bbd) - [connectivity] Using Principal Propagation through authentication type
NoAuthentication
is no longer supported. This resulted in erroneous behavior for destinations with authentication typeNoAuthentication
. If you need to use Principal Propagation use authentication typePrincipalPropagation
. (28c9cb7)
New Functionalities
- [util] Add support for setting log level for newly created logger using environment variable
SAP_CLOUD_SDK_LOG_LEVEL
. (4d2b49b)
Improvements
- [connectivity] Retrieve only one destination per requested destination instead of all subaccount and instance destinations. (See compatibility notes.) (c721bbd)
Fixed Issues
- [connectivity] Allow the use of authentication type
NoAuthentication
with proxy typeOnPremise
without requiring theSAP-Connectivity-Authentication
header. (28c9cb7)