Skip to content

dependabot npm(deps): bump mongodb from 4.13.0 to 5.0.0

Depen d'Abot requested to merge dependabot-npm_and_yarn-mongodb-5.0.0 into master

Bumps mongodb from 4.13.0 to 5.0.0.

Release notes

Sourced from mongodb's releases.

v5.0.0

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)

... (truncated)

Changelog

Sourced from mongodb's changelog.

5.0.0 (2023-01-31)

BREAKING CHANGES

  • NODE-5016: compile ts with target es2020 (#3545)

Features

  • NODE-5016: compile ts with target es2020 (#3545) (def266a)

Bug Fixes

  • NODE-4998: use ipv4 in socks5 tests for node 18 (#3538) (425dbe0)

5.0.0-alpha.0 (2023-01-24)

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

... (truncated)

Commits
  • 1414393 chore(release): 5.0.0
  • d855cc4 chore(NODE-4983): bump BSON to v5.0.0 (#3548)
  • d5df24f docs(NODE-4900): Cleanup CHANGES_5.0.0.md (#3543)
  • def266a feat(NODE-5016)!: compile ts with target es2020 (#3545)
  • 13c6072 docs(NODE-4990): comment about serverNonce format (#3547)
  • c2da84e docs(NODE-4916, NODE-4523): update readme and upgrade guide with callback rem...
  • 425dbe0 fix(NODE-4998): use ipv4 in socks5 tests for node 18 (#3538)
  • f7961a7 test(NODE-4965): unskip FLE range index spec tests and implement spec prose t...
  • 4fcae82 chore(release): 5.0.0-alpha.0
  • bc046ff docs: generate docs from latest main (#3489)
  • Additional commits viewable in compare view

Merge request reports

Loading