The MongoDB Node.js team is pleased to announce version 5.0.0 of the mongodb
package!
Release Highlights
Node.js driver v5 emphazises the modernization of our API.
Farewell to Callbacks
Most notably, we have removed support for callbacks in favor of a Promise-only public API.
To ease the migration to a Promise-only approach when using the Node.js driver, callback support is available via the mongodb-legacy
package. You can read more about this change in the Optional callback support migrated to mongodb-legacy
section of the migration guide.
Dot Notation No Longer Enabled by Default
Version 4.3.0 of the Node.js driver introduced strict type checking on Filter
queries that used dot notation. This functionality was enabled by default and proved to be a barrier for users upgrading to later versions of the Node.js v4.x driver. In order to ease the migration to v5.0.0, type strictness on queries that use dot notation has been removed from the CRUD API. The type checking capabilities are still available in an experimental type called StrictFilter
. You can read more about this change in the Dot Notation TypeScript Support Removed By Default section of the migration guide.
BSON v5
This release also adopts all the changes in BSON v5.0.0 (see the release notes).
The driver now exports a BSON
namespace that also has BSON.EJSON
APIs available.
When working in projects where both the driver and bson
are used, we recommend importing BSON types (ObjectId
, Long
, etc.) and BSON APIs from the driver instead of from BSON directly to ensure consistency when serializing and deserializing instances of the BSON types.
Other Notable Changes
@aws-sdk/credential-providers
has now been moved to an optional peer dependency.
Consequently, in v5.0.0 or later versions of the driver, the AWS credential provider module must be installed manually to enable the use of the native AWS SDK for authentication.
Collection.insert
, Collection.update
, and Collection.remove
methods have been removed in favor of their non-deprecated counterparts. You can read more about this and other changes in our Driver v5 Migration Guide.
⚠BREAKING CHANGES
- NODE-4522: remove callback support (#3499)
- NODE-4817: remove legacy logger (#3518)
- NODE-4867: adopt BSON v5 (#3490)
- NODE-4738: remove dot notation support by default (#3520)
- NODE-4950: remove bson-ext import (#3523)
- NODE-4756: ok 1 with write concern failure event changes (#3525)
- NODE-4034: make internal bulk result private (#3515)
- NODE-4751: drop support for client encryption < 2.3.0 (#3521)
- NODE-4684: remove collection insert, update, remove methods (#3500)
- NODE-4924: remove mapReduce collection helper (#3511)
- NODE-4925: remove deprecated options and types (#3513)
- NODE-3818: remove slaveOk options (#3503)
- NODE-3695: remove lastop and optime from bulk result (#3504)
- NODE-3489: remove cursor close options (#3505)
- NODE-4598: close cursor on early loop break (#3502)
- NODE-3482: remove unref (#3494)
- NODE-4521: remove custom promise library support (#3498)
- NODE-4898: aws credential providers now optional peerDependency (#3497)
- NODE-4436: update minimum supported node version (#3496)
- NODE-4899: support only snappy 7 or later (#3491)
Features
- NODE-5016: compile ts with target es2020 (#3545) (def266a)
- NODE-3482: remove unref (#3494) (556812f)
- NODE-3489: remove cursor close options (#3505) (88c03a1)
- NODE-3695: remove lastop and optime from bulk result (#3504) (8900d40)
- NODE-3818: remove slaveOk options (#3503) (2e28009)
- NODE-4034: make internal bulk result private (#3515) (ebac1f5)
- NODE-4436: update minimum supported node version (#3496) (cca5362)
- NODE-4509: send 1 with hello commands (#3508) (cc8ea1d)
- NODE-4521: remove custom promise library support (#3498) (af36ebb)
- NODE-4522: remove callback support (#3499) (52853ff)
- NODE-4598: close cursor on early loop break (#3502) (30c0aee)
- NODE-4684: remove collection insert, update, remove methods (#3500) (14427d1)
- NODE-4738: remove dot notation support by default (#3520) (26145df)
- NODE-4751: drop support for client encryption < 2.3.0 (#3521) (3dae6da)
- NODE-4756: ok 1 with write concern failure event changes (#3525) (fee783c)
- NODE-4767: Change abstract cursor return type (#3531) (410ef30)
- NODE-4817: remove legacy logger (#3518) (28c7cdd)
- NODE-4867: adopt BSON v5 (#3490) (b850868)
- NODE-4898: aws credential providers now optional peerDependency (#3497) (b9e4c7c)
- NODE-4899: support only snappy 7 or later (#3491) (21db1a9)
- NODE-4924: remove mapReduce collection helper (#3511) (10d757a)
- NODE-4925: remove deprecated options and types (#3513) (8f8ea45)
- NODE-4950: remove bson-ext import (#3523) (1470115)
Documentation
- Reference: https://docs.mongodb.com/drivers/node/current/
- API: https://mongodb.github.io/node-mongodb-native/5.0/
- Changelog: HISTORY.md
We invite you to try the mongodb
library and report any issues to the NODE project.