Comparing version 1.0.9 to 1.0.10
@@ -20,2 +20,8 @@ ## [Unreleased] | ||
## [1.0.10] - 2018-08-22 | ||
### Fixed | ||
- deprecation messages: maxScan and snapshot deprecated find() options, insert() method | ||
## [1.0.9] - 2018-08-22 | ||
@@ -563,2 +569,3 @@ | ||
[1.0.10]: https://github.com/Yonirt/moltyjs/compare/v1.0.9...v1.0.10 | ||
[1.0.9]: https://github.com/Yonirt/moltyjs/compare/v1.0.8...v1.0.9 | ||
@@ -565,0 +572,0 @@ [1.0.8]: https://github.com/Yonirt/moltyjs/compare/v1.0.7...v1.0.8 |
@@ -43,7 +43,5 @@ 'use strict'; | ||
explain: false, | ||
snapshot: false, | ||
timeout: false, | ||
tailable: false, | ||
returnKey: false, | ||
maxScan: null, | ||
min: null, | ||
@@ -422,3 +420,3 @@ max: null, | ||
try { | ||
var _ref2 = yield to(conn.db(tenant, _this._tenantsOptions).collection(collection).insert(doc._data, insertOneOptions)), | ||
var _ref2 = yield to(conn.db(tenant, _this._tenantsOptions).collection(collection).insertOne(doc._data, insertOneOptions)), | ||
_ref3 = _slicedToArray(_ref2, 2); | ||
@@ -660,7 +658,5 @@ | ||
explain = findOptions.explain, | ||
snapshot = findOptions.snapshot, | ||
timeout = findOptions.timeout, | ||
tailable = findOptions.tailable, | ||
returnKey = findOptions.returnKey, | ||
maxScan = findOptions.maxScan, | ||
min = findOptions.min, | ||
@@ -667,0 +663,0 @@ max = findOptions.max, |
{ | ||
"name": "moltyjs", | ||
"version": "1.0.9", | ||
"version": "1.0.10", | ||
"description": "A tiny ODM for MongoDB with multy tenancy support.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
133431
2423