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

loopback-connector-mongodb

Package Overview
Dependencies
Maintainers
4
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

loopback-connector-mongodb - npm Package Compare versions

Comparing version 1.4.1 to 1.4.2

14

lib/mongodb.js

@@ -807,2 +807,16 @@ /*!

MongoDB.prototype.ping = function (cb) {
var self = this;
if (self.db) {
this.db.collection('dummy').findOne({_id: 1}, cb);
} else {
self.dataSource.once('connected', function () {
self.ping(cb);
});
self.dataSource.once('error', function (err) {
cb(err);
});
}
};

2

package.json
{
"name": "loopback-connector-mongodb",
"version": "1.4.1",
"version": "1.4.2",
"description": "LoopBack MongoDB Connector",

@@ -5,0 +5,0 @@ "keywords": [

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