@sap/xssec
Advanced tools
Comparing version 4.2.0 to 4.2.1
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
## 4.2.1 - 2024-07-25 | ||
- fix JWKS URL construction for XSA service bindings whose url contains already a path | ||
## 4.2.0 - 2024-07-22 | ||
@@ -5,0 +8,0 @@ - move credential validation from Service constructors to fine-grained property validation upon use to support token fetches with partial credentials |
{ | ||
"name": "@sap/xssec", | ||
"version": "4.2.0", | ||
"version": "4.2.1", | ||
"description": "XS Advanced Container Security API for node.js", | ||
@@ -5,0 +5,0 @@ "main": "./src", |
@@ -137,3 +137,3 @@ 'use strict'; | ||
async fetchJwks(jwksParams, correlationId) { | ||
const jwksUrl = new URL(this.endpoints.jwks, this.jwksBaseUrl); | ||
const jwksUrl = new URL(this.jwksBaseUrl + this.endpoints.jwks); | ||
@@ -140,0 +140,0 @@ if(jwksParams.zid) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
250912