You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@instana/serverless

Package Overview
Dependencies
Maintainers
4
Versions
290
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instana/serverless - npm Package Compare versions

Comparing version
4.21.1
to
4.21.2
+11
-0
CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [4.21.2](https://github.com/instana/nodejs/compare/v4.21.1...v4.21.2) (2025-08-05)
### Bug Fixes
* **aws-lambda:** improved heartbeat timeout ([#1912](https://github.com/instana/nodejs/issues/1912)) ([08290bb](https://github.com/instana/nodejs/commit/08290bbe83772c3c49bb4cb4cdab0a745c7b6455))
## [4.21.1](https://github.com/instana/nodejs/compare/v4.21.0...v4.21.1) (2025-08-05)

@@ -8,0 +19,0 @@

+3
-3
{
"name": "@instana/serverless",
"version": "4.21.1",
"version": "4.21.2",
"description": "Internal utility package for serverless Node.js tracing and monitoring with Instana",

@@ -68,6 +68,6 @@ "author": {

"dependencies": {
"@instana/core": "4.21.1",
"@instana/core": "4.21.2",
"https-proxy-agent": "^7.0.2"
},
"gitHead": "793031707b7002af0487c2afd6caef7abfe9b2f2"
"gitHead": "eb915807798a18a1fb0d318ec4461d431d0c87b9"
}

@@ -20,3 +20,4 @@ /*

// NOTE: The heartbeat is usually really, really fast (<30ms).
const layerExtensionHeartbeatTimeout = 100;
// But we have seen in some cases that it can take up to 500ms.
const layerExtensionHeartbeatTimeout = 500;

@@ -203,3 +204,3 @@ // NOTE: The initial heartbeat can be very slow when the Lambda is in cold start.

const duration = endTime - startTime;
logger.debug(`[${requestId}] Took ${duration}ms to receive response from extension`);
logger.debug(`[${requestId}] Took ${duration}ms to receive response from extension for the heartbeat.`);

@@ -206,0 +207,0 @@ heartbeatIsActive = false;