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

mquery

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mquery - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

6

History.md
0.5.1 / 2014-01-17
==================
* added; deprecation notice to tags parameter #27 [ashtuchkin](https://github.com/ashtuchkin)
* readme; add links
0.5.0 / 2014-01-16

@@ -3,0 +9,0 @@ ==================

4

lib/mquery.js

@@ -1458,2 +1458,6 @@ 'use strict';

Query.prototype.read = function (pref) {
if (arguments.length > 1 && !Query.prototype.read.deprecationWarningIssued) {
console.error("Deprecation warning: 'tags' argument is not supported anymore in Query.read() method. Please use mongodb.ReadPreference object instead.");
Query.prototype.read.deprecationWarningIssued = true;
}
this.options.readPreference = utils.readPref(pref);

@@ -1460,0 +1464,0 @@ return this;

2

package.json
{
"name": "mquery",
"version": "0.5.0",
"version": "0.5.1",
"description": "Expressive query building for MongoDB",

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

@@ -45,2 +45,63 @@ #mquery

- [find](#find)
- [findOne](#findOne)
- [count](#count)
- [remove](#remove)
- [update](#update)
- [findOneAndUpdate](#findoneandupdate)
- [findOneAndRemove](#findoneandremove)
- [distinct](#distinct)
- [exec](#exec)
- [all](#all)
- [and](#and)
- [box](#box)
- [circle](#circle)
- [elemMatch](#elemmatch)
- [equals](#equals)
- [exists](#exists)
- [geometry](#geometry)
- [gt](#gt)
- [gte](#gte)
- [in](#in)
- [intersects](#intersects)
- [lt](#lt)
- [lte](#lte)
- [maxDistance](#maxdistance)
- [mod](#mod)
- [ne](#ne)
- [nin](#nin)
- [nor](#nor)
- [near](#near)
- [or](#or)
- [polygon](#polygon)
- [regex](#regex)
- [select](#select)
- [selected](#selected)
- [selectedInclusively](#selectedinclusively)
- [selectedExclusively](#selectedexclusively)
- [size](#size)
- [slice](#slice)
- [within](#within)
- [where](#where)
- [$where](#where-1)
- [batchSize](#batchsize)
- [comment](#comment)
- [hint](#hint)
- [limit](#limit)
- [maxScan](#maxscan)
- [skip](#skip)
- [sort](#sort)
- [read](#read)
- [slaveOk](#slaveok)
- [snapshot](#snapshot)
- [tailable](#tailable)
## Helpers
- [collection](#collection)
- [merge](#mergeobject)
- [setOptions](#setoptionsoptions)
- [mquery.canMerge](#mquerycanmerge)
- [mquery.use$geoWithin](#mqueryusegeowithin)
###find()

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