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

lightstep-tracer

Package Overview
Dependencies
Maintainers
8
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lightstep-tracer - npm Package Compare versions

Comparing version 0.20.14 to 0.21.0

4

CHANGELOG.md
# CHANGELOG
*Log of significant changes, especially those affecting the supported API.*
## 0.20.15
* Update `thrift` to `0.11.0`. This breaks support for node.js versions <= 5.8.
## 0.20.14

@@ -5,0 +9,0 @@

'use strict';
/* global WorkerGlobalScope */
// Find the HTML element that included the tracing library (if there is one).

@@ -8,2 +9,6 @@ // This relies on the fact that scripts are executed as soon as they are

var hostScriptElement = function () {
// check to see if we're in a webworker
if (typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope) {
return null;
}
var scripts = document.getElementsByTagName('SCRIPT');

@@ -10,0 +15,0 @@ if (!(scripts.length > 0)) {

14

package.json
{
"name": "lightstep-tracer",
"version": "0.20.14",
"version": "0.21.0",
"main": "index.js",

@@ -22,13 +22,13 @@ "engines": {

"source-map-support": "0.3.3",
"thrift": "0.10.0"
"thrift": "0.11.0"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.3.26",
"babel-core": "^6.26.3",
"babel-loader": "7",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-check-es2015-constants": "6.7.2",
"babel-plugin-transform-es2015-arrow-functions": "6.5.2",
"babel-plugin-transform-es2015-block-scoped-functions": "6.6.5",
"babel-plugin-transform-es2015-block-scoping": "6.7.1",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-classes": "6.6.5",

@@ -55,4 +55,4 @@ "babel-plugin-transform-es2015-computed-properties": "6.6.5",

"express": "^4.16.3",
"istanbul": "0.4.4",
"mocha": "2.3.4",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"opentracing": "0.14.3",

@@ -59,0 +59,0 @@ "protobufjs": "6.8.8",

@@ -0,1 +1,2 @@

/* global WorkerGlobalScope */
// Find the HTML element that included the tracing library (if there is one).

@@ -6,2 +7,6 @@ // This relies on the fact that scripts are executed as soon as they are

let hostScriptElement = (function () {
// check to see if we're in a webworker
if (typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope) {
return null;
}
let scripts = document.getElementsByTagName('SCRIPT');

@@ -8,0 +13,0 @@ if (!(scripts.length > 0)) {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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