chore(main): release 6.0.0 [skip-ci] #3762
Merged
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.
🌱 A new release!
6.0.0 (2023-08-22)
The MongoDB Node.js team is pleased to announce version 6.0.0 of the
mongodb
package!The main focus of this release was usability improvements and a streamlined API. Read on for details!
Release Notes
Important
This is a list of changes relative to v5.8.1 of the driver. ALL changes listed below are BREAKING.
Users migrating from an older version of the driver are advised to upgrade to at least v5.8.1 before adopting v6.
🛠️ Runtime and dependency updates
Minimum Node.js version is now v16.20.1
The minimum supported Node.js version is now v16.20.1. We strive to keep our minimum supported Node.js version in sync with the runtime's release cadence to keep up with the latest security updates and modern language features.
BSON version 6.0.0
This driver version has been updated to use
bson@6.0.0
. BSON functionality re-exported from the driver is subject to the changes outlined in the BSON V6 release notes.Optional peer dependency version bumps
kerberos
optional peer dependency minimum version raised to2.0.1
, dropped support for1.x
zstd
optional peer depedency minimum version raised to1.1.0
from1.0.0
mongodb-client-encryption
optional peer dependency minimum version raised to6.0.0
from2.3.0
(note thatmongodb-client-encryption
does not have3.x-5.x
version releases)Note
As of version 6.0.0, all useful public APIs formerly exposed from
mongodb-client-encryption
have been moved into the driver and should now be imported directly from the driver. These APIs rely internally on the functionality exposed frommongodb-client-encryption
, but there is no longer any need to explicitly referencemongodb-client-encryption
in your application code.Allow
socks
to be installed optionallyThe driver uses the
socks
dependency to connect tomongod
ormongos
through a SOCKS5 proxy.socks
used to be a required dependency of the driver and was installed automatically. Now,socks
is apeerDependency
that must be installed to enablesocks
proxy support.☀️ API usability improvements
findOneAndX
family of methods will now return only the found document ornull
by default (includeResultMetadata
is false by default)Previously, the default return type of this family of methods was a
ModifyResult
containing the found document and additional metadata. This additional metadata is unnecessary for the majority of use cases, so now, by default, they will return only the found document ornull
.The previous behavior is still available by explicitly setting
includeResultMetadata: true
in the options.See the following blog post for more information.
session.commitTransaction()
andsession.abortTransaction()
return voidEach of these methods erroneously returned server command results that can be different depending on server version or type the driver is connected to. These methods return a promise that if resolved means the command (aborting or commiting) sucessfully completed and rejects otherwise. Viewing command responses is possible through the command monitoring APIs on the
MongoClient
.withSession
andwithTransaction
return the value returned by the provided functionThe
await client.withSession(async session => {})
now returns the value that the provided function returns. Previously, this function returnedvoid
this is a feature to align with the following breaking change.The
await session.withTransaction(async () => {})
method now returns the value that the provided function returns. Previously, this function returned the server command response which is subject to change depending on the server version or type the driver is connected to. The return value got in the way of writing robust, reliable, consistent code no matter the backing database supporting the application.Warning
When upgrading to this version of the driver, be sure to audit any usages of
withTransaction
forif
statements or other conditional checks on the return value ofwithTransaction
. Previously, the return value was the command response if the transaction was committed andundefined
if it had been manually aborted. It would only throw if an operation or the author of the function threw an error. Since prior to this release it was not possible to get the result of the function passed towithTransaction
we suspect most existing functions passed to this method returnvoid
, makingwithTransaction
avoid
returning function in this major release. Take care to ensure that the return values of your function match the expectation of the code that follows the completion ofwithTransaction
.Driver methods throw if a session is provided from a different
MongoClient
Providing a session from one
MongoClient
to a method on a differentMongoClient
has never been a supported use case and leads to undefined behavior. To prevent this mistake, the driver now throws aMongoInvalidArgumentError
if session is provided to a driver helper from a differentMongoClient
.Callbacks removed from ClientEncryption's
encrypt
,decrypt
, andcreateDataKey
methodsDriver v5 dropped support for callbacks in asynchronous functions in favor of returning promises in order to provide more consistent type and API experience. In alignment with that, we are now removing support for callbacks from the
ClientEncryption
class.MongoCryptError
is now a subclass ofMongoError
Since
MongoCryptError
made use of Node.js 16'sError
API, it has long supported setting theError.cause
field using options passed in via the constructor. Now that Node.js 16 is our minimum supported version,MongoError
has been modified to make use of this API as well, allowing us to letMongoCryptError
subclass from it directly.⚙️ Option parsing improvements
useNewUrlParser
anduseUnifiedTopology
emit deprecation warningsThese options were removed in 4.0.0 but continued to be parsed and silently left unused. We have now added a deprecation warning through Node.js' warning system and will fully remove these options in the next major release.
Boolean options only accept 'true' or 'false' in connection strings
Prior to this change, we accepted the values
'1', 'y', 'yes', 't'
as synonyms fortrue
and'-1', '0', 'f', 'n', 'no'
as synonyms forfalse
. These have now been removed in an effort to make working with connection string options simpler.Repeated options are no longer allowed in connection strings
In order to avoid accidental misconfiguration the driver will no longer prioritize the first instance of an option provided on the URI. Instead repeated options that are not permitted to be repeated will throw an error.
This change will ensure that connection strings that contain options like
tls=true&tls=false
are no longer ambiguous.TLS certificate authority and certificate-key files are now read asynchronously
In order to align with Node.js best practices of keeping I/O async, we have updated the
MongoClient
to store the file names provided to the existingtlsCAFile
andtlsCertificateKeyFile
options, as well as thetlsCRLFile
option, and only read these files the first time it connects. Prior to this change, the files were read synchronously onMongoClient
construction.Note
This has no effect on driver functionality when TLS configuration files are properly specified. However, if there are any issues with the TLS configuration files (invalid file name), the error is now thrown when the
MongoClient
is connected instead of at construction time.Take a look at our TLS documentation for more information on the
tlsCAFile
,tlsCertificateKeyFile
, andtlsCRLFile
options.🐛 Bug fixes
db.command() and admin.command() unsupported options removed
These APIs allow for specifying a command BSON document directly, so the driver does not try to enumerate all possible commands that could be passed to this API in an effort to be as forward and backward compatible as possible.
The
db.command()
andadmin.command()
APIs have theiroptions
types updated to accurately reflect options compatible on all commands that could be passed to either API.Perhaps most notably,
readConcern
andwriteConcern
options are no longer handled by the driver. Users must attach these properties to the command that is passed to the.command()
method.Removed irrelevant fields from
ConnectionPoolCreatedEvent.options
The
options
field ofConnectionPoolCreatedEvent
now has the following shape:Fixed parsing of empty readPreferenceTags in connection string
The following connection string will now produce the following readPreferenceTags:
The empty
readPreferenceTags
allows drivers to still select a server if the leading tag conditions are not met.Corrected
GridFSBucketWriteStream
'sWritable
method overrides and event emissionOur implementation of a writeable stream for
GridFSBucketWriteStream
mistakenly overrode thewrite()
andend()
methods, as well as, manually emitted'close'
,'drain'
,'finish'
events. Per Node.js documentation, these methods and events are intended for the Node.js stream implementation to provide, and an author of a stream implementation is supposed to override_write
,_final
, and allow Node.js to manage event emitting.Since the API is still a
Writable
stream most usages will continue to work with no changes, the.write()
and.end()
methods are still available and take the same arguments. The breaking change relates to the improper manually emitted event listeners that are now handled by Node.js. The'finish'
and'drain'
events will no longer receive theGridFSFile
document as an argument (this is the document inserted to the bucket's files collection after all chunks have been inserted). Instead, it will be available on the stream itself as a property:gridFSFile
.Since the class no longer emits its own events: static constants
GridFSBucketWriteStream.ERROR
,GridFSBucketWriteStream.FINISH
,GridFSBucketWriteStream.CLOSE
have been removed to avoid confusion about the source of the events and the arguments their listeners accept.Fix manually emitted events from
GridFSBucketReadStream
The
GridFSBucketReadStream
internals have also been corrected to no longer emit events that are handled by Node's stream logic. Since the class no longer emits its own events: static constantsGridFSBucketReadStream.ERROR
,GridFSBucketReadStream.DATA
,GridFSBucketReadStream.CLOSE
, andGridFSBucketReadStream.END
have been removed to avoid confusion about the source of the events and the arguments their listeners accept.createDataKey
return type fixPreviously, the TypeScript for
createDataKey
incorrectly declared the result to be aDataKey
but the method actually returns the DataKey'sinsertedId
.📜 Removal of deprecated functionality
db.addUser()
andadmin.addUser()
removedThe deprecated
addUser
APIs have been removed. The driver maintains support across many server versions and thecreateUser
command has support for different features based on the server's version. Since applications can generally write code to work against a uniform and perhaps more modern server, the path forward is for applications to send thecreateUser
command directly.The associated options interface with this API has also been removed:
AddUserOptions
.See the
createUser
documentation for more information.collection.stats()
removedThe
collStats
command is deprecated starting in server v6.2 so the driver is removing its bespoke helper in this major release. ThecollStats
command is still available to run manually viaawait db.command()
. However, the recommended migration is to use the$collStats
aggregation stage.The following interfaces associated with this API have also been removed:
CollStatsOptions
andWiredTigerData
.BulkWriteResult
deprecated properties removedThe following deprecated properties have been removed as they duplicated those outlined in the [MongoDB CRUD specification|https://github.com/mongodb/specifications/blob/611ecb5d624708b81a4d96a16f98aa8f71fcc189/source/crud/crud.rst#write-results]. The list indicates what properties provide the correct migration:
BulkWriteResult.nInserted
->BulkWriteResult.insertedCount
BulkWriteResult.nUpserted
->BulkWriteResult.upsertedCount
BulkWriteResult.nMatched
->BulkWriteResult.matchedCount
BulkWriteResult.nModified
->BulkWriteResult.modifiedCount
BulkWriteResult.nRemoved
->BulkWriteResult.deletedCount
BulkWriteResult.getUpsertedIds
->BulkWriteResult.upsertedIds
/BulkWriteResult.getUpsertedIdAt(index: number)
BulkWriteResult.getInsertedIds
->BulkWriteResult.insertedIds
Deprecated SSL options have been removed
The following options have been removed with their supported counterparts listed after the ->
sslCA
->tlsCAFile
sslCRL
->tlsCRLFile
sslCert
->tlsCertificateKeyFile
sslKey
->tlsCertificateKeyFile
sslPass
->tlsCertificateKeyFilePassword
sslValidate
->tlsAllowInvalidCertificates
tlsCertificateFile
->tlsCertificateKeyFile
The deprecated
keepAlive
andkeepAliveInitialDelay
options have been removedTCP keep alive will always be on and now set to a value of 30000ms.
🗑️ Removal of "dead" code
The removed functionality listed in this section was either unused or not useful outside the driver internals.
Constructors for
MongoError
and its subclasses now clearly indicate they are meant for internal use onlyMongoError
and its subclasses are not meant to be constructed by users as they are thrown within the driver on specific error conditions to allow users to react to these conditions in ways which match their use cases. The constructors for these types are now subject to change outside of major versions and their API documentation has been updated to reflect this.AutoEncrypter
andMongoClient.autoEncrypter
are now internalAs of this release, users will no longer be able to access the
AutoEncrypter
interface or theMongoClient.autoEncrypter
field of an encryptedMongoClient
instance as they do not have a use outside the driver internals.ClientEncryption.onKMSProvidersRefresh
function removedClientEncryption.onKMSProvidersRefresh
was added as a public API in version 2.3.0 ofmongodb-client-encryption
to allow for automatic refresh of KMS provider credentials. Subsequently, we added the capability to automatically refresh KMS credentials using the KMS provider's preferred refresh mechanism, andonKMSProviderRefresh
is no longer used.EvalOptions
removedThis cleans up some dead code in the sense that there were no
eval
command related APIs but theEvalOptions
type was public, so we want to ensure there are no surprises now that this type has been removed.onKMSProvidersRefresh
(#3787)Documentation
We invite you to try the
mongodb
library immediately, and report any issues to the NODE project.