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

disconnect

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

disconnect - npm Package Compare versions

Comparing version 0.6.7 to 0.6.8

5

HISTORY.md

@@ -0,1 +1,6 @@

0.6.8 / 2015-11-06
==================
* Dependency updates
* Fixed a minor bug in `DiscogsClient.authenticated()`
0.6.7 / 2015-09-15

@@ -2,0 +7,0 @@ ==================

2

lib/client.js

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

level = level||0;
return (this.auth && (this.auth.level > 0) && (this.auth.level >= level));
return (!(typeof this.auth === 'undefined') && (this.auth.level > 0) && (this.auth.level >= level));
};

@@ -82,0 +82,0 @@

{
"name": "disconnect",
"description": "A full featured Discogs API v2.0 client library",
"version": "0.6.7",
"version": "0.6.8",
"keywords": ["discogs", "api", "client", "oauth"],

@@ -22,6 +22,6 @@ "homepage": "https://github.com/bartve/disconnect",

"dependencies": {
"oauth-1.0a": "0.2.x"
"oauth-1.0a": "1.x.x"
},
"devDependencies": {
"nock": "^0.48.1",
"nock": "2.x.x",
"wru": "0.2.x"

@@ -28,0 +28,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