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

libhoney

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libhoney - npm Package Compare versions

Comparing version 1.0.0-beta.7 to 1.0.0-beta.8

2

docs/package.json
{
"name": "libhoney",
"version": "1.0.0-beta.7",
"version": "1.0.0-beta.8",
"description": "Javascript library for sending data to Honeycomb",

@@ -5,0 +5,0 @@ "bugs": "https://github.com/honeycombio/libhoney-js/issues",

@@ -60,3 +60,6 @@ 'use strict';

// the maximum number of s we enqueue before we drop.
maxResponseQueueSize: 1000
maxResponseQueueSize: 1000,
// if this is false, all sending is disabled. useful for disabling libhoney when testing
disabled: false
});

@@ -473,2 +476,6 @@

function getAndInitTransmission(transmission, options) {
if (options.disabled) {
return null;
}
if (typeof transmission === "string") {

@@ -475,0 +482,0 @@ if (transmission === "base") {

@@ -29,3 +29,3 @@ 'use strict';

var userAgent = "libhoney-js/1.0.0-beta.7";
var userAgent = "libhoney-js/1.0.0-beta.8";

@@ -32,0 +32,0 @@ var _global = typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : undefined;

{
"name": "libhoney",
"version": "1.0.0-beta.7",
"version": "1.0.0-beta.8",
"description": "Javascript library for sending data to Honeycomb",

@@ -5,0 +5,0 @@ "bugs": "https://github.com/honeycombio/libhoney-js/issues",

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