API icon indicating copy to clipboard operation
API copied to clipboard

chore(deps): update dependency mongodb to v6

Open renovate[bot] opened this issue 11 months ago • 0 comments

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
mongodb 4.17.2 -> 6.20.0 age adoption passing confidence
mongodb ^5.1.0 -> ^6.0.0 age adoption passing confidence

Release Notes

mongodb/node-mongodb-native (mongodb)

v6.20.0

Compare Source

Features
Bug Fixes

v6.19.0

Compare Source

Features

v6.18.0

Compare Source

Features
Bug Fixes

v6.17.0

Compare Source

Features
Bug Fixes

v6.16.0

Compare Source

Features
Bug Fixes

v6.15.0

Compare Source

Features
Bug Fixes

v6.14.2

Compare Source

Bug Fixes

v6.14.1

Compare Source

Bug Fixes

v6.14.0

Compare Source

Features
Bug Fixes

v6.13.1

Compare Source

Bug Fixes

v6.13.0

Compare Source

Features
Bug Fixes
Performance Improvements

v6.12.0

Compare Source

Features
Bug Fixes

v6.11.0

Compare Source

Features
Bug Fixes
Performance Improvements

v6.10.0

Compare Source

Features
Bug Fixes
Performance Improvements

v6.9.0

Compare Source

Features
Bug Fixes
Performance Improvements

v6.8.2

Compare Source

The MongoDB Node.js team is pleased to announce version 6.8.2 of the mongodb package!

Release Notes

Fixed mixed use of cursor.next() and cursor[Symbol.asyncIterator]

In 6.8.0, we inadvertently prevented the use of cursor.next() along with using for await syntax to iterate cursors. If your code made use of the following pattern and the call to cursor.next retrieved all your documents in the first batch, then the for-await loop would never be entered. This issue is now fixed.

const firstDoc = await cursor.next();

for await (const doc of cursor) {
    // process doc
    // ...
}
Bug Fixes

Documentation

We invite you to try the mongodb library immediately, and report any issues to the NODE project.

v6.8.1

Compare Source

The MongoDB Node.js team is pleased to announce version 6.8.1 of the mongodb package!

Release Notes

Fixed enableUtf8Validation option

Starting in v6.8.0 we inadvertently removed the ability to disable UTF-8 validation when deserializing BSON. Validation is normally a good thing, but it was always meant to be configurable and the recent Node.js runtime issues (v22.7.0) make this option indispensable for avoiding errors from mistakenly generated invalid UTF-8 bytes.

Bug Fixes

Documentation

We invite you to try the mongodb library immediately, and report any issues to the NODE project.

v6.8.0

Compare Source

Features
Bug Fixes

v6.7.0

Compare Source

Features
Bug Fixes

v6.6.2

Compare Source

Bug Fixes

v6.6.1

Compare Source

Bug Fixes

v6.6.0

Compare Source

Features
Bug Fixes
Performance Improvements

v6.5.0

Compare Source

Features
Bug Fixes
Performance Improvements
  • NODE-6127: move error construction into setTimeout callback ([#​4094](https://redirect.github.com/mongodb/node-mongodb-native/issues/40

renovate[bot] avatar Feb 15 '25 06:02 renovate[bot]