Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

elastic-apm-node

Package Overview
Dependencies
Maintainers
3
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elastic-apm-node - npm Package Compare versions

Comparing version 4.7.3 to 4.8.0

2

lib/apm-client/http-apm-client/container-info.js

@@ -15,3 +15,3 @@ /*

const taskSource = '[0-9a-f]{32}';
const awsEcsSource = '[0-9a-f]{32}-[0-9]{10}';
const awsEcsSource = '[0-9a-f]{32}-[0-9]{1,10}';

@@ -18,0 +18,0 @@ const lineReg = /^(\d+):([^:]*):(.+)$/;

@@ -15,3 +15,3 @@ /*

if (!enabled) return Router;
if (!semver.satisfies(version, '>=5.2.0 <13')) {
if (!semver.satisfies(version, '>=5.2.0 <14')) {
agent.logger.debug(

@@ -23,2 +23,13 @@ 'koa-router version %s not supported - aborting...',

}
if (
semver.satisfies(version, '>=13') &&
semver.satisfies(process.version, '<18')
) {
agent.logger.debug(
'koa-router version %s not supported for node %s - aborting...',
version,
process.version,
);
return Router;
}

@@ -25,0 +36,0 @@ agent.logger.debug('shimming koa-router prototype.match function');

@@ -17,4 +17,15 @@ /*

if (!enabled) return tedious;
if (version === '4.0.0' || !semver.satisfies(version, '>=1.9.0 <19')) {
if (
semver.satisfies(version, '>=19') &&
!semver.satisfies(process.version, '>=18.17')
) {
agent.logger.debug(
'tedious version %s not supported for node %s - aborting...',
version,
process.version,
);
return tedious;
}
if (version === '4.0.0' || !semver.satisfies(version, '>=1.9.0 <20')) {
agent.logger.debug(
'tedious version %s not supported - aborting...',

@@ -21,0 +32,0 @@ version,

{
"name": "elastic-apm-node",
"version": "4.7.3",
"version": "4.8.0",
"description": "The official Elastic APM agent for Node.js",

@@ -100,3 +100,3 @@ "type": "commonjs",

"breadth-filter": "^2.0.0",
"cookie": "^0.6.0",
"cookie": "^0.7.1",
"core-util-is": "^1.0.2",

@@ -110,3 +110,3 @@ "end-of-stream": "^1.4.4",

"http-headers": "^3.0.2",
"import-in-the-middle": "1.11.0",
"import-in-the-middle": "1.11.2",
"json-bigint": "^1.0.0",

@@ -142,5 +142,5 @@ "lru-cache": "10.2.0",

"@elastic/elasticsearch": "^8.6.0",
"@fastify/formbody": "^7.0.1",
"@fastify/formbody": "^8.0.1",
"@hapi/hapi": "^21.0.0",
"@koa/router": "^12.0.0",
"@koa/router": "^13.0.1",
"@types/node": "^22.0.0",

@@ -170,3 +170,3 @@ "ajv": "^8.12.0",

"express-queue": "^0.0.13",
"fastify": "^4.16.3",
"fastify": "^5.0.0",
"finalhandler": "^1.1.2",

@@ -187,3 +187,3 @@ "generic-pool": "^3.7.1",

"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"koa-router": "^13.0.1",
"lambda-local": "^2.0.2",

@@ -208,3 +208,3 @@ "memcached": "^2.2.2",

"tape": "^5.0.0",
"tedious": "^18.1.0",
"tedious": "^19.0.0",
"test-all-versions": "^6.1.0",

@@ -216,5 +216,5 @@ "thunky": "^1.1.0",

"vasync": "^2.2.0",
"wait-on": "^7.0.1",
"wait-on": "^8.0.0",
"ws": "^7.2.1"
}
}
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