New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@instana/core

Package Overview
Dependencies
Maintainers
3
Versions
266
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instana/core - npm Package Compare versions

Comparing version 3.1.3 to 3.2.0

src/tracing/opentelemetry-instrumentations/tedious.js

10

CHANGELOG.md

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

# [3.2.0](https://github.com/instana/nodejs/compare/v3.1.3...v3.2.0) (2024-02-27)
### Bug Fixes
- depreacted request-promise module ([#1017](https://github.com/instana/nodejs/issues/1017)) ([6bb88dd](https://github.com/instana/nodejs/commit/6bb88dd4ca08d2482ff917fb3b9f884f4e4bdf8e))
### Features
- added otel instrumentation for tedious ([#1030](https://github.com/instana/nodejs/issues/1030)) ([87de73d](https://github.com/instana/nodejs/commit/87de73dd5b290a76663405822dc7845315e1d18d))
## [3.1.3](https://github.com/instana/nodejs/compare/v3.1.2...v3.1.3) (2024-01-31)

@@ -8,0 +18,0 @@

11

package.json
{
"name": "@instana/core",
"version": "3.1.3",
"version": "3.2.0",
"description": "Core library for Instana's Node.js packages",

@@ -15,5 +15,5 @@ "main": "src/index.js",

"audit": "npm audit --omit=dev",
"test": "NODE_ENV=debug USE_OPENTRACING_DEBUG_IMPL=true mocha --sort $(find test -iname '*test.js' -not -path '*node_modules*')",
"test": "NODE_ENV=debug USE_OPENTRACING_DEBUG_IMPL=true mocha --sort $(find test -iname '*test.js')",
"test:debug": "WITH_STDOUT=true npm run test",
"test:ci": "echo \"******* Files to be tested:\n $CI_CORE_TEST_FILES\" && if [ -z \"${CI_CORE_TEST_FILES}\" ]; then echo \"No test files have been assigned to this CircleCI executor.\"; else mocha --reporter mocha-multi-reporters --reporter-options configFile=reporter-config.json --sort ${CI_CORE_TEST_FILES}; fi",
"test:ci": "mocha --config=test/.mocharc.js --reporter mocha-multi-reporters --reporter-options configFile=reporter-config.json 'test/**/*test.js'",
"lint": "eslint src test",

@@ -62,5 +62,6 @@ "verify": "npm run lint && npm test",

"@opentelemetry/context-async-hooks": "1.19.0",
"@opentelemetry/instrumentation-fs": "0.8.1",
"@opentelemetry/instrumentation-fs": "0.9.0",
"@opentelemetry/instrumentation-restify": "0.34.0",
"@opentelemetry/instrumentation-socket.io": "0.34.1",
"@opentelemetry/instrumentation-tedious": "^0.7.0",
"@opentelemetry/sdk-trace-base": "1.19.0",

@@ -74,3 +75,3 @@ "cls-bluebird": "^2.1.0",

},
"gitHead": "3623cf92780e867b194f5c698c69df7f057a7af8"
"gitHead": "4e9af9e088ed97732fc93ac6157cfad90eb96fa2"
}

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

module.exports = exports = function esmSupportedVersion(version) {
return semver.satisfies(version, '>=14.0.0 <20.0.0');
// https://github.com/nodejs/node/pull/44710
return semver.satisfies(version, '>=14.0.0 <18.19');
};

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

'@opentelemetry/instrumentation-restify': { name: 'restify' },
'@opentelemetry/instrumentation-socket.io': { name: 'socket.io' }
'@opentelemetry/instrumentation-socket.io': { name: 'socket.io' },
'@opentelemetry/instrumentation-tedious': { name: 'tedious' }
};

@@ -25,0 +26,0 @@

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