uuid-mongodb
Advanced tools
Comparing version 2.4.2 to 2.4.3
@@ -0,1 +1,12 @@ | ||
## <small>2.4.3 (2021-04-18)</small> | ||
* fix: example/package.json & example/package-lock.json to reduce vulnerabilities ([b54f92b](https://github.com/cdimascio/uuid-mongodb/commit/b54f92b)) | ||
* fix: upgrade mongoose from 5.11.8 to 5.11.9 ([5ae3ad0](https://github.com/cdimascio/uuid-mongodb/commit/5ae3ad0)) | ||
* chore(deps): bump y18n from 4.0.0 to 4.0.1 ([83dec56](https://github.com/cdimascio/uuid-mongodb/commit/83dec56)) | ||
* allow 4.x betas ([fffcea9](https://github.com/cdimascio/uuid-mongodb/commit/fffcea9)) | ||
* missing new operator added ([b9a313f](https://github.com/cdimascio/uuid-mongodb/commit/b9a313f)) | ||
* Update uuid-mongodb_spec.js ([fcbab01](https://github.com/cdimascio/uuid-mongodb/commit/fcbab01)) | ||
## <small>2.4.2 (2021-02-15)</small> | ||
@@ -2,0 +13,0 @@ |
@@ -65,3 +65,3 @@ /* | ||
const uuid = uuidv(null, Buffer.alloc(16)); | ||
return apply(Binary(uuid, Binary.SUBTYPE_UUID)); | ||
return apply(new Binary(uuid, Binary.SUBTYPE_UUID)); | ||
} | ||
@@ -68,0 +68,0 @@ } |
{ | ||
"name": "uuid-mongodb", | ||
"version": "2.4.2", | ||
"version": "2.4.3", | ||
"description": "Generates and parses MongoDB BSON UUIDs. Plays nicely with others including the MongoDB native driver and Mongoose.", | ||
@@ -30,3 +30,3 @@ "main": "lib/index.js", | ||
"peerDependencies": { | ||
"mongodb": "^3.6.3" | ||
"mongodb": ">=3.6.0 ~4.0.0-0 <5.0.0" | ||
}, | ||
@@ -33,0 +33,0 @@ "devDependencies": { |
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
15958