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
mongodbpackage!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
[email protected]. BSON functionality re-exported from the driver is subject to the changes outlined in the BSON V6 release notes.Optional peer dependency version bumps
kerberosoptional peer dependency minimum version raised to2.0.1, dropped support for1.xzstdoptional peer depedency minimum version raised to1.1.0from1.0.0mongodb-client-encryptionoptional peer dependency minimum version raised to6.0.0from2.3.0(note thatmongodb-client-encryptiondoes not have3.x-5.xversion releases)Note
As of version 6.0.0, all useful public APIs formerly exposed from
mongodb-client-encryptionhave 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-encryptionin your application code.Allow
socksto be installed optionallyThe driver uses the
socksdependency to connect tomongodormongosthrough a SOCKS5 proxy.socksused to be a required dependency of the driver and was installed automatically. Now,socksis apeerDependencythat must be installed to enablesocksproxy support.☀️ API usability improvements
findOneAndXfamily of methods will now return only the found document ornullby default (includeResultMetadatais false by default)Previously, the default return type of this family of methods was a
ModifyResultcontaining 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: truein 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.withSessionandwithTransactionreturn the value returned by the provided functionThe
await client.withSession(async session => {})now returns the value that the provided function returns. Previously, this function returnedvoidthis 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
withTransactionforifstatements or other conditional checks on the return value ofwithTransaction. Previously, the return value was the command response if the transaction was committed andundefinedif 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 towithTransactionwe suspect most existing functions passed to this method returnvoid, makingwithTransactionavoidreturning 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
MongoClientProviding a session from one
MongoClientto a method on a differentMongoClienthas never been a supported use case and leads to undefined behavior. To prevent this mistake, the driver now throws aMongoInvalidArgumentErrorif session is provided to a driver helper from a differentMongoClient.Callbacks removed from ClientEncryption's
encrypt,decrypt, andcreateDataKeymethodsDriver 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
ClientEncryptionclass.MongoCryptErroris now a subclass ofMongoErrorSince
MongoCryptErrormade use of Node.js 16'sErrorAPI, it has long supported setting theError.causefield using options passed in via the constructor. Now that Node.js 16 is our minimum supported version,MongoErrorhas been modified to make use of this API as well, allowing us to letMongoCryptErrorsubclass from it directly.⚙️ Option parsing improvements
useNewUrlParseranduseUnifiedTopologyemit 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 fortrueand'-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=falseare 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
MongoClientto store the file names provided to the existingtlsCAFileandtlsCertificateKeyFileoptions, as well as thetlsCRLFileoption, and only read these files the first time it connects. Prior to this change, the files were read synchronously onMongoClientconstruction.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
MongoClientis connected instead of at construction time.Take a look at our TLS documentation for more information on the
tlsCAFile,tlsCertificateKeyFile, andtlsCRLFileoptions.🐛 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 theiroptionstypes updated to accurately reflect options compatible on all commands that could be passed to either API.Perhaps most notably,
readConcernandwriteConcernoptions 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.optionsThe
optionsfield ofConnectionPoolCreatedEventnow has the following shape:Fixed parsing of empty readPreferenceTags in connection string
The following connection string will now produce the following readPreferenceTags:
The empty
readPreferenceTagsallows drivers to still select a server if the leading tag conditions are not met.Corrected
GridFSBucketWriteStream'sWritablemethod overrides and event emissionOur implementation of a writeable stream for
GridFSBucketWriteStreammistakenly 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
Writablestream 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 theGridFSFiledocument 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.CLOSEhave been removed to avoid confusion about the source of the events and the arguments their listeners accept.Fix manually emitted events from
GridFSBucketReadStreamThe
GridFSBucketReadStreaminternals 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.ENDhave been removed to avoid confusion about the source of the events and the arguments their listeners accept.createDataKeyreturn type fixPreviously, the TypeScript for
createDataKeyincorrectly declared the result to be aDataKeybut the method actually returns the DataKey'sinsertedId.📜 Removal of deprecated functionality
db.addUser()andadmin.addUser()removedThe deprecated
addUserAPIs have been removed. The driver maintains support across many server versions and thecreateUsercommand 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 thecreateUsercommand directly.The associated options interface with this API has also been removed:
AddUserOptions.See the
createUserdocumentation for more information.collection.stats()removedThe
collStatscommand is deprecated starting in server v6.2 so the driver is removing its bespoke helper in this major release. ThecollStatscommand is still available to run manually viaawait db.command(). However, the recommended migration is to use the$collStatsaggregation stage.The following interfaces associated with this API have also been removed:
CollStatsOptionsandWiredTigerData.BulkWriteResultdeprecated 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.insertedCountBulkWriteResult.nUpserted->BulkWriteResult.upsertedCountBulkWriteResult.nMatched->BulkWriteResult.matchedCountBulkWriteResult.nModified->BulkWriteResult.modifiedCountBulkWriteResult.nRemoved->BulkWriteResult.deletedCountBulkWriteResult.getUpsertedIds->BulkWriteResult.upsertedIds/BulkWriteResult.getUpsertedIdAt(index: number)BulkWriteResult.getInsertedIds->BulkWriteResult.insertedIdsDeprecated SSL options have been removed
The following options have been removed with their supported counterparts listed after the ->
sslCA->tlsCAFilesslCRL->tlsCRLFilesslCert->tlsCertificateKeyFilesslKey->tlsCertificateKeyFilesslPass->tlsCertificateKeyFilePasswordsslValidate->tlsAllowInvalidCertificatestlsCertificateFile->tlsCertificateKeyFileThe deprecated
keepAliveandkeepAliveInitialDelayoptions 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
MongoErrorand its subclasses now clearly indicate they are meant for internal use onlyMongoErrorand 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.AutoEncrypterandMongoClient.autoEncrypterare now internalAs of this release, users will no longer be able to access the
AutoEncrypterinterface or theMongoClient.autoEncrypterfield of an encryptedMongoClientinstance as they do not have a use outside the driver internals.ClientEncryption.onKMSProvidersRefreshfunction removedClientEncryption.onKMSProvidersRefreshwas added as a public API in version 2.3.0 ofmongodb-client-encryptionto 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, andonKMSProviderRefreshis no longer used.EvalOptionsremovedThis cleans up some dead code in the sense that there were no
evalcommand related APIs but theEvalOptionstype 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
mongodblibrary immediately, and report any issues to the NODE project.