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

unleash-client

Package Overview
Dependencies
Maintainers
3
Versions
135
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unleash-client - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

lib/strategy.d.ts

3

CHANGELOG.md
# Changelog
## 2.1.2
- Unleash should not throw if os.userInfo throws #35
## 2.1.1 (March 2017)

@@ -4,0 +7,0 @@ - allow appName to contain "/" when storing file backup

@@ -44,3 +44,10 @@ 'use strict';

if (!instanceId) {
var info = os_2.userInfo();
var info = void 0;
try {
info = os_2.userInfo();
}
catch (e) {
//unable to read info;
info = {};
}
var prefix = info.username ? info.username : "generated-" + Math.round(Math.random() * 1000000) + "-" + process.pid;

@@ -47,0 +54,0 @@ instanceId = prefix + "-" + os_2.hostname();

2

package.json
{
"name": "unleash-client",
"version": "2.1.1",
"version": "2.1.2",
"description": "Unleash Client for Node",

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

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