Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -587,12 +587,17 @@ void testClientIdWithTenantId()
"urn:sap:identity:consumer:clientid:client-id:apptid:tenant-id",
"app_tid",
PROVIDER_TENANT_ID));
/*
* Note: having two different apptid values here is intentional.
* The first one is the tenant ID used by the target system.
* The second one is the tenant ID of the current application.
* While they can be the same, they do not have to be.
*/
}

@Test
void testProviderClientId()
{
@SuppressWarnings( "deprecation" )
final ServiceBindingDestinationOptions options =
ServiceBindingDestinationOptions
.forService(BINDING)
Expand Down Expand Up @@ -622,7 +627,6 @@ void testProviderClientId()
@Test
void testProviderClientIdWithTenantId()
{
@SuppressWarnings( "deprecation" )
final ServiceBindingDestinationOptions options =
ServiceBindingDestinationOptions
.forService(BINDING)
Expand Down
2 changes: 2 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
### ✨ New Functionality

- Add support for using the Zero Trust Identity Service (ZTIS) on Kyma by detecting the [well-known environment variable `SPIFFE_ENDPOINT_SOCKET`](https://github.com/spiffe/spiffe/blob/main/standards/SPIFFE_Workload_Endpoint.md#4-locating-the-endpoint).
- Add support for explicitly passing the `clientid` of the target system when using the IAS App2App authentication flow.
Use the new methods `withProviderClient(clientid)` and `withProviderClient(clientid, apptid)` under `BtpServiceOptions.IasOptions`.

### 📈 Improvements

Expand Down