Skip to content
This repository has been archived by the owner on May 16, 2019. It is now read-only.

chore: bump mongodb from 3.1.13 to 3.2.1 #107

Merged
merged 1 commit into from
Mar 22, 2019

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Mar 22, 2019

Bumps mongodb from 3.1.13 to 3.2.1.

Release notes

Sourced from mongodb's releases.

v3.2.1

The MongoDB Node.js team is pleased to announce version 3.2.1 of the driver.

Due to a publishing snafu v3.2.1 was immediately published without a proper v3.2.0 release

Release Highlights

2.x EOL

With the v3.1.0 release we officially deprecated the 2.x driver. With this release that driver is effectively EOL, and will no longer be supported. Please update your driver as soon as possible.

Unified Topology

In this release we are very excited to announce the immediate availability of a complete rewrite of the driver's "topology" layer. This is the core brains of the driver responsible for things like server selection, server discovery and monitoring. This work combines the three existing topology concepts (`Mongos`, `ReplSet`, and `Server`) into a single type `Topology`. The new `Topology` type uses the same machinery to represent all three types, greatly improving our ability to maintain the code, and reducing the chance for bug duplication.

The Topology class no longer uses a callback store, instead relying on a server selection loop for operation execution. This means failed operations will fail faster, with more accurate stack traces and specifics about the failure. It generally makes it much easier to reason about what the driver is doing each time an operation is executed.

You can enable it with the useUnifiedTopology feature flag passed to your MongoClient constructor, like so:

const client = MongoClient('mongodb://localhost:27017', { useUnifiedTopology: true });

This topology layer will replace the existing topologies in a breaking 4.x release later this year, so we strongly encourage our users to try it out as soon as possible.

`withTransaction` helper

Reliably committing a transaction in the face of errors can be a complicated endeavor using the MongoDB 4.0 drivers API. This version introduces a `withTransaction` helper method on the `ClientSession` object that allows application logic to be executed within a transaction. This method is capable of retrying either the commit operation or entire transaction as needed (and when the error permits) to better ensure that the transaction can complete successfully. Consider using this for all but the most complicated of transactions use cases.

A call to withTransaction begins a new transaction, executes the provided function, and then attempts to commit the transaction. The function passed to withTransaction must take a session parameter, and this session must be passed to all methods within the function. If some error is encountered, it will attempt to re-commit the transaction before ultimately failing back to the user after aborting the transaction.
NOTE: A mentioned, the passed in function MAY be retried multiple times, please keep this in mind when executing non-database operations within the function.

Here’s an example of it in action:

const client = new MongoClient();
await client.connect();

const session = client.startSession();

// NOTE: the `withTransaction` method only supports functions that return a `Promise`
try {
  await session.withTransaction(async function(session) {
     const coll = client.db('foo').collection('coll');
     await coll.insertOne({ a: 42 }, { session });
  });
} catch (err) {
  // transaction failed after attempted retry
  console.dir({ err });
}

Cursors support asyncInterator and for..await..of loops

`Symbol.asyncIterator` is defined on cursors for Node.js versions that support it (>=v10.x.x). This allows you to use for..await..of loops with cursors: ... (truncated)
Changelog

Sourced from mongodb's changelog.

3.2.1 (2019-03-21)

Features

  • core: update to mongodb-core v3.2.1 (30b0100)

3.2.0 (2019-03-21)

Bug Fixes

  • aggregate: do not send batchSize for aggregation with $out (ddb8d90)
  • bulkWrite: always count undefined values in bson size for bulk (436d340)
  • db_ops: rename db to add user on (79931af)
  • mongo_client_ops: only skip authentication if no authMechanism is specified (3b6957d)
  • mongo-client: ensure close callback is called with client (f39e881)

Features

  • core: pin to mongodb-core v3.2.0 (22af15a)
  • Cursor: adds support for AsyncIterator in cursors (b972c1e)
  • db: add database-level aggregation (b629b21)
  • mongo-client: remove deprecated logout and print warning (542859d)
  • topology-base: support passing callbacks to close method (7c111e0)
  • transactions: support pinning mongos for sharded txns (3886127)
  • unified-sdam: backport unified SDAM to master for v3.2.0 (79f33ca)

Commits
  • 0e6153b chore(release): 3.2.1
  • 30b0100 feat(core): update to mongodb-core v3.2.1
  • 2604bc7 chore(release): 3.2.0
  • 22af15a feat(core): pin to mongodb-core v3.2.0
  • eebb6c8 test: fix change stream expectations for mongodb-latest
  • 9002ca4 docs: updating documentation version and branch
  • d7123a9 Added links to compatibility with MongoDB & NodeJS.
  • caf1169 Added links to compatibility with MongoDB & NodeJS.
  • 305f4c0 doc: merge 3.1.1 release notes into master
  • c6fd568 refactor: put recovery tokens behind a feature flag for now
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Mar 22, 2019
@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/mongodb-3.2.1 branch from 7f7c66d to 27d5b93 Compare March 22, 2019 18:26
@stackdumper stackdumper merged commit cc7dd31 into master Mar 22, 2019
@dependabot-preview dependabot-preview bot deleted the dependabot/npm_and_yarn/mongodb-3.2.1 branch March 22, 2019 19:15
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants