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

@fluent-org/logger

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluent-org/logger - npm Package Compare versions

Comparing version 1.0.9 to 1.0.10

6

build/src/socket.js

@@ -280,3 +280,7 @@ "use strict";

createTlsSocket() {
return tls.connect({ ...this.tlsOptions, ...this.socketParams });
let opts = { ...this.tlsOptions, ...this.socketParams };
if (this.timeout >= 0) {
opts = { ...opts, timeout: this.timeout };
}
return tls.connect(opts);
}

@@ -283,0 +287,0 @@ /**

2

package.json
{
"name": "@fluent-org/logger",
"version": "1.0.9",
"version": "1.0.10",
"description": "A node fluent protocol compatible logger",

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

@@ -403,3 +403,7 @@ import * as net from "net";

private createTlsSocket(): tls.TLSSocket {
return tls.connect({...this.tlsOptions, ...this.socketParams});
let opts: net.NetConnectOpts = {...this.tlsOptions, ...this.socketParams};
if (this.timeout >= 0) {
opts = {...opts, timeout: this.timeout};
}
return tls.connect(opts);
}

@@ -406,0 +410,0 @@

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