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

to
1.4.4

2

lib/mongodb.js

@@ -432,2 +432,4 @@ /*!

query[k] = {$not: new RegExp(cond)};
} else if (spec === 'neq') {
query[k] = {$ne: cond};
}

@@ -434,0 +436,0 @@ else {

2

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

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

@@ -706,2 +706,22 @@ // This test written in mocha+should.js

it('should support neq for match', function (done) {
Post.create({title: 'My Post', content: 'Hello'}, function (err, post) {
Post.find({where: {title: {neq: 'XY'}}}, function (err, posts) {
should.not.exist(err);
posts.should.have.property('length', 1);
done();
});
});
});
it('should support neq for no match', function (done) {
Post.create({title: 'My Post', content: 'Hello'}, function (err, post) {
Post.find({where: {title: {neq: 'My Post'}}}, function (err, posts) {
should.not.exist(err);
posts.should.have.property('length', 0);
done();
});
});
});
// The where object should be parsed by the connector

@@ -708,0 +728,0 @@ it('should support where for count', function (done) {