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

mongodb-core

Package Overview
Dependencies
Maintainers
3
Versions
177
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongodb-core - npm Package Compare versions

Comparing version 3.0.7 to 3.0.8

CODE_OF_CONDUCT.md

10

HISTORY.md

@@ -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)

6

lib/connection/pool.js

@@ -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);

2

package.json
{
"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",

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