Socket
Socket
Sign inDemoInstall

@sap/xssec

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap/xssec - npm Package Compare versions

Comparing version 4.2.3 to 4.2.4

5

CHANGELOG.md
# Change Log
All notable changes to this project will be documented in this file.
## 4.2.4 - 2024-09-05
- fix missing x-zid header in XSUAA token fetches via v3 compatibility requests with zoneId parameter
- add clientsecret as optional property to type XsuaaServiceCredentials
## 4.2.3 - 2024-09-03
- bugfix passport v3 wrapper so it does not call the error callback twice in specific scenario
- add certurl as optional property to type XsuaaServiceCredentials

@@ -7,0 +12,0 @@ ## 4.2.2 - 2024-08-29

2

package.json
{
"name": "@sap/xssec",
"version": "4.2.3",
"version": "4.2.4",
"description": "XS Advanced Container Security API for node.js",

@@ -5,0 +5,0 @@ "main": "./src",

@@ -662,3 +662,3 @@ @sap/xssec: SAP BTP Security Services Node.js Integration Library

### Debug Logs
To enable debug logging, set the environment variable DEBUG as follows when starting your application: `DEBUG=xssec:*`.
To enable debug logging, set the environment variable DEBUG as follows when starting your application: `DEBUG=xssec`. Note that `DEBUG=xssec:*` works only for xssec 3.

@@ -679,2 +679,2 @@

Unfortunately, we can *NOT* offer consulting via support channels.
Unfortunately, we can *NOT* offer consulting via support channels.

@@ -10,2 +10,3 @@ /** @typedef {import('crypto').X509Certificate} X509Certificate */

* @property {string} [key] PEM-encoded client key
* @property {string} [clientsecret] to be used as alternative authentication method to mTLS-based authentication. Must be defined when `certificate` is NOT defined.
*/

@@ -12,0 +13,0 @@

@@ -70,3 +70,4 @@ const IdentityService = require("../service/IdentityService");

timeout: config.timeout,
app_tid: zoneId
app_tid: zoneId,
zid: zoneId
};

@@ -73,0 +74,0 @@

@@ -13,2 +13,6 @@ export type X509Certificate = import("crypto").X509Certificate;

key?: string;
/**
* to be used as alternative authentication method to mTLS-based authentication. Must be defined when `certificate` is NOT defined.
*/
clientsecret?: string;
};

@@ -15,0 +19,0 @@ export type IdentityServiceCredentials = {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc