mongodb-core
Advanced tools
Comparing version 3.0.7 to 3.0.8
@@ -0,1 +1,11 @@ | ||
<a name="3.0.8"></a> | ||
## [3.0.8](https://github.com/mongodb-js/mongodb-core/compare/v3.0.7...v3.0.8) (2018-05-08) | ||
### Bug Fixes | ||
* **pool:** ensure that lsid is sent in get requests to mongos ([4f37841](https://github.com/mongodb-js/mongodb-core/commit/4f37841)) | ||
<a name="3.0.7"></a> | ||
@@ -2,0 +12,0 @@ ## [3.0.7](https://github.com/mongodb-js/mongodb-core/compare/v3.0.6...v3.0.7) (2018-04-17) |
@@ -1225,3 +1225,7 @@ 'use strict'; | ||
if (command instanceof Query) { | ||
Object.assign(command.query, sessionOptions); | ||
if (command.query.$query) { | ||
Object.assign(command.query.$query, sessionOptions); | ||
} else { | ||
Object.assign(command.query, sessionOptions); | ||
} | ||
} else { | ||
@@ -1228,0 +1232,0 @@ Object.assign(command, sessionOptions); |
{ | ||
"name": "mongodb-core", | ||
"version": "3.0.7", | ||
"version": "3.0.8", | ||
"description": "Core MongoDB driver functionality, no bells and whistles and meant for integration not end applications", | ||
@@ -5,0 +5,0 @@ "main": "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
44
12160
513168