Update dependency mongodb to v3.5.8#11
Open
mend-for-github-com[bot] wants to merge 1 commit intomainfrom
Open
Conversation
838a171 to
a834651
Compare
a834651 to
92c6f49
Compare
92c6f49 to
af2549a
Compare
af2549a to
b5410a5
Compare
b5410a5 to
c0cf845
Compare
c0cf845 to
98f77cd
Compare
98f77cd to
c094af5
Compare
0014860 to
c094af5
Compare
c094af5 to
24c97b9
Compare
24c97b9 to
f923204
Compare
f923204 to
25a68e5
Compare
25a68e5 to
f82ac64
Compare
f82ac64 to
2f35876
Compare
2f35876 to
fae5426
Compare
fae5426 to
dfd916a
Compare
Author
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.5.7→3.5.8By merging this PR, the issue #15 will be automatically resolved and closed:
Release Notes
mongodb/node-mongodb-native (mongodb)
v3.5.8Compare Source
The MongoDB Node.js team is pleased to announce version 3.5.8 of the driver
Release Highlights
Fixes for NEAREST latency window calculation
@adityapatadia helped uncover an issue with our server selection logic which
filtered out servers after evaluating whether they were in the latency window.
This meant that non-viable servers were considered during the window calculation
and would render certain viable servers unviable.
BulkWriteError
writeErrorsproperty@vkarpov15 submitted a patch to always include
writeErrorson aBulkWriteError.We have logic to set the
messageofBulkWriteErrorto the message of the firsterror encountered if there is only one error. Unfortunately, this logic removed
the
writeErrorsfield when doing that, so users could be faced with an errorwhich conditionally changed shape.
Memory leak in timed out wait queue members
@dead-horse identified a memory leak in the new connection pool where wait queue
members which timed out might be left in the queue indefinitely under sufficient
load. The fix here was to ensure that all wait queue members are flushed during
wait queue processing before evaluating whether there were available sockets to
process new requests.
Implicit sessions cleanup improvements
Once @dead-horse was able to patch the connection pool memory leak, they also
identified a edge case where implicit sessions could be leaked in a very specific
error condition. The logic to release implicit sessions was simplified, preventing
this from happening in the future
Unordered bulk writes continue-on-error
A bug introduced last summer prevented unordered bulk write operations from
continuing after the first write error - one of the most important features of
being an unordered operation. We now properly support this feature again.
journalin connection string is ignored@nknighter filed a report that the
journaloption was ignored when providedvia the connection string. The paramater
jwas supported both through theconnection string and explicit added to
MongoClientoptions, but the officialdocumentation for connection strings support a
journaloption.Documentation
Reference: http://mongodb.github.io/node-mongodb-native/3.5/
API: http://mongodb.github.io/node-mongodb-native/3.5/api/
Changelog: https://github.com/mongodb/node-mongodb-native/blob/3.5/HISTORY.md
We invite you to try the driver immediately, and report any issues to the NODE project.
Thanks very much to all the community members who contributed to this release!
Release Notes
Bug
Task
Improvement