Skip to content
This repository was archived by the owner on Jul 18, 2024. It is now read-only.

chore: bump the dev-dependencies group across 1 directory with 6 updates#260

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-9a9aeea7de
Open

chore: bump the dev-dependencies group across 1 directory with 6 updates#260
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-9a9aeea7de

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jul 15, 2024

Bumps the dev-dependencies group with 6 updates in the / directory:

Package From To
@types/node 20.11.24 20.14.10
mongodb 6.4.0 6.8.0
mongodb-memory-server 9.1.6 9.4.1
tap 18.7.0 21.0.0
tsc-alias 1.8.8 1.8.10
typescript 5.3.3 5.5.3

Updates @types/node from 20.11.24 to 20.14.10

Commits

Updates mongodb from 6.4.0 to 6.8.0

Release notes

Sourced from mongodb's releases.

v6.8.0

6.8.0 (2024-06-27)

The MongoDB Node.js team is pleased to announce version 6.8.0 of the mongodb package!

Release Notes

Add ReadConcernMajorityNotAvailableYet to retryable errors

ReadConcernMajorityNotAvailableYet (error code 134) is now a retryable read error.

ClientEncryption.createDataKey() and other helpers now support named KMS providers

KMS providers can now be associated with a name and multiple keys can be provided per-KMS provider. The following example configures a ClientEncryption object with multiple AWS keys:

const clientEncryption = new ClientEncryption(keyVaultClient, {
  'aws:key1': {
    accessKeyId: ...,
    secretAccessKey: ...
  },
  'aws:key2': {
    accessKeyId: ...,
    secretAccessKey: ...
  },
clientEncryption.createDataKey('aws:key-1', { ... });

Named KMS providers are supported for azure, AWS, KMIP, local and gcp KMS providers. Named KMS providers cannot be used if the application is using the automatic KMS provider refresh capability.

This feature requires mongodb-client-encryption>=6.0.1.

KMIP data keys now support a delegated option

When creating a KMIP data key, delegated can now be specified. If true, the KMIP provider will perform encryption / decryption of the data key locally, ensuring that the encryption key never leaves the KMIP server.

clientEncryption.createDataKey('kmip', { masterKey: { delegated: true } } );

This feature requires mongodb-client-encryption>=6.0.1.

Cursor responses are now parsed lazily 🦥

MongoDB cursors (find, aggregate, etc.) operate on batches of documents equal to batchSize. Each time the driver runs out of documents for the current batch it gets more (getMore) and returns each document one at a time through APIs like cursor.next() or for await (const doc of cursor).

Prior to this change, the Node.js driver was designed in such a way that the entire BSON response was decoded after it was received. Parsing BSON, just like parsing JSON, is a synchronous blocking operation. This means that throughout a cursor's lifetime invocations of .next() that need to fetch a new batch hold up on parsing batchSize (default 1000) documents before returning to the user.

... (truncated)

Changelog

Sourced from mongodb's changelog.

6.8.0 (2024-06-27)

Features

  • NODE-5718: add ReadConcernMajorityNotAvailableYet to retryable errors (#4154) (4f32dec)
  • NODE-5801: allow multiple providers providers per type (#4137) (4d209ce)
  • NODE-5853: support delegated KMIP data key option (#4129) (aa429f8)
  • NODE-6136: parse cursor responses on demand (#4112) (3ed6a2a)
  • NODE-6157: add signature to github releases (#4119) (f38c5fe)

Bug Fixes

  • NODE-5801: use more specific key typing for multiple KMS provider support (#4146) (465ffd9)
  • NODE-6085: add TS support for KMIP data key options (#4128) (f790cc1)
  • NODE-6241: allow Binary as local KMS provider key (#4160) (fb724eb)
  • NODE-6242: close becomes true after calling close when documents still remain (#4161) (e3d70c3)

6.7.0 (2024-05-29)

Features

  • NODE-5464: OIDC machine and callback workflow (#3912) (2ba8434)

Bug Fixes

  • NODE-6165: useBigInt64 causes compareTopologyVersion to throw (#4109) (21b729b)

6.6.2 (2024-05-15)

Bug Fixes

  • NODE-6171: RTT set to zero when serverMonitoringMode=stream (#4110) (7a7ec5b)

6.6.1 (2024-05-06)

Bug Fixes

  • NODE-6151: MongoClient connect does not keep Node.js running (#4101) (7e0d9e6)

6.6.0 (2024-05-02)

Features

... (truncated)

Commits
  • 25c84a4 chore(main): release 6.8.0 [skip-ci] (#4125)
  • 9f447e9 chore(NODE-6243): move Node release tooling to drivers-github-tools (#4159)
  • e3d70c3 fix(NODE-6242): close becomes true after calling close when documents still r...
  • fb724eb fix(NODE-6241): allow Binary as local KMS provider key (#4160)
  • 4f32dec feat(NODE-5718): add ReadConcernMajorityNotAvailableYet to retryable errors (...
  • 27cb35b chore(NODE-6118): generate authorized publisher report and compliance report ...
  • 8fb43f8 chore(NODE-5974): sync CSOT tests (#4153)
  • 8d5d984 chore(NODE-6199): Update test/lambda/mongodb dependencies (#4145)
  • ec3caba test(NODE-6202): use single mongos in unacknowledged write tests (#4149)
  • c948d9c refactor: move CountDocument logic into collection API (#4148)
  • Additional commits viewable in compare view

Updates mongodb-memory-server from 9.1.6 to 9.4.1

Release notes

Sourced from mongodb-memory-server's releases.

v9.4.1

9.4.1 (2024-07-13)

Note: This is purely a documentational update, no functionality has changed (aside from error messages)

Fixes

v9.4.0

9.4.0 (2024-06-24)

Fixes

  • MongoMemoryReplSet: dont warn unless storage engine is set explicitly (582bf0a)

Refactor

  • utils::removeDir: remove nodejs 12 workaround (a852513)

Dependencies

  • async-mutex: upgrade to version 0.4.1 (b67c783)
  • debug: upgrade to version 4.3.5 (72a0b76)
  • mongodb: upgrade to version 5.9.2 (4c1ccc9)
  • tslib: upgrade to version 2.6.3 (a49993b)

v9.4.0-beta.1

9.4.0-beta.1 (2024-06-05)

Fixes

  • MongoMemoryReplSet: dont warn unless storage engine is set explicitly (582bf0a)

Refactor

  • utils::removeDir: remove nodejs 12 workaround (a852513)

Dependencies

  • async-mutex: upgrade to version 0.4.1 (b67c783)
  • debug: upgrade to version 4.3.5 (72a0b76)
  • tslib: upgrade to version 2.6.3 (a49993b)

... (truncated)

Changelog

Sourced from mongodb-memory-server's changelog.

9.4.1 (2024-07-13)

Fixes

9.4.0 (2024-06-24)

Fixes

  • MongoMemoryReplSet: dont warn unless storage engine is set explicitly (582bf0a)

Refactor

  • utils::removeDir: remove nodejs 12 workaround (a852513)

Dependencies

  • async-mutex: upgrade to version 0.4.1 (b67c783)
  • debug: upgrade to version 4.3.5 (72a0b76)
  • mongodb: upgrade to version 5.9.2 (4c1ccc9)
  • tslib: upgrade to version 2.6.3 (a49993b)

9.4.0-beta.1 (2024-06-05)

Fixes

  • MongoMemoryReplSet: dont warn unless storage engine is set explicitly (582bf0a)

Refactor

  • utils::removeDir: remove nodejs 12 workaround (a852513)

Dependencies

  • async-mutex: upgrade to version 0.4.1 (b67c783)
  • debug: upgrade to version 4.3.5 (72a0b76)
  • tslib: upgrade to version 2.6.3 (a49993b)

9.3.0 (2024-05-30)

Fixes

... (truncated)

Commits

Updates tap from 18.7.0 to 21.0.0

Commits
  • f4c46d4 update versions
  • bf403c1 Drop nodes before 20, update all deps
  • 161ff8a update versions
  • cd17ec3 fully uninstall installed plugins, reduce noise
  • 3a4f8ae core: do not run prepare if src not present
  • 85d100c test: set plugin package.json, link to @​tapjs/core
  • a528863 test: link tests's core into the plugins, to avoid duality issues
  • b0400de update versions
  • 412c644 trivial: prevent dupe array creation in plugin add
  • fa107ce clock: remove unneeded guard
  • Additional commits viewable in compare view

Updates tsc-alias from 1.8.8 to 1.8.10

Release notes

Sourced from tsc-alias's releases.

v1.8.10 (2024-05-13)

What's Changed

New Contributors

Full Changelog: justkey007/tsc-alias@v1.8.9...v1.8.10

v1.8.9 (2024-05-09)

What's Changed

New Contributors

Full Changelog: justkey007/tsc-alias@v1.8.8...v1.8.9

Commits

Updates typescript from 5.3.3 to 5.5.3

Release notes

Sourced from typescript's releases.

TypeScript 5.5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

... (truncated)

Commits
  • f0e9921 Bump version to 5.5.3 and LKG
  • 738bd60 Cherry-pick #58966 to release-5.5 (#59002)
  • ce2e60e Update LKG
  • f3b21a2 🤖 Pick PR #58931 (Defer creation of barebonesLibSourc...) into release-5.5 (#...
  • 7b1620b 🤖 Pick PR #58811 (fix(58801): "Move to file" on globa...) into release-5.5 (#...
  • 5367ae1 Bump version to 5.5.2 and LKG
  • 02132e5 🤖 Pick PR #58895 (Fix global when typescript.js loade...) into release-5.5 (#...
  • 45b1e3c 🤖 Pick PR #58872 (Fix declaration emit crash) into release-5.5 (#58874)
  • 17933ee 🤖 Pick PR #58810 (Fixed declaration emit issue relate...) into release-5.5 (#...
  • 552b07e 🤖 Pick PR #58786 (Fixed declaration emit crash relate...) into release-5.5 (#...
  • Additional commits viewable in compare view

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 close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dev-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.24` | `20.14.10` |
| [mongodb](https://github.com/mongodb/node-mongodb-native) | `6.4.0` | `6.8.0` |
| [mongodb-memory-server](https://github.com/typegoose/mongodb-memory-server/tree/HEAD/packages/mongodb-memory-server) | `9.1.6` | `9.4.1` |
| [tap](https://github.com/tapjs/tapjs) | `18.7.0` | `21.0.0` |
| [tsc-alias](https://github.com/justkey007/tsc-alias) | `1.8.8` | `1.8.10` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.5.3` |



Updates `@types/node` from 20.11.24 to 20.14.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `mongodb` from 6.4.0 to 6.8.0
- [Release notes](https://github.com/mongodb/node-mongodb-native/releases)
- [Changelog](https://github.com/mongodb/node-mongodb-native/blob/main/HISTORY.md)
- [Commits](mongodb/node-mongodb-native@v6.4.0...v6.8.0)

Updates `mongodb-memory-server` from 9.1.6 to 9.4.1
- [Release notes](https://github.com/typegoose/mongodb-memory-server/releases)
- [Changelog](https://github.com/typegoose/mongodb-memory-server/blob/master/CHANGELOG.md)
- [Commits](https://github.com/typegoose/mongodb-memory-server/commits/v9.4.1/packages/mongodb-memory-server)

Updates `tap` from 18.7.0 to 21.0.0
- [Release notes](https://github.com/tapjs/tapjs/releases)
- [Commits](https://github.com/tapjs/tapjs/compare/[email protected]@21.0.0)

Updates `tsc-alias` from 1.8.8 to 1.8.10
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.8.8...v1.8.10)

Updates `typescript` from 5.3.3 to 5.5.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.3.3...v5.5.3)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: mongodb
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: mongodb-memory-server
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: tap
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: tsc-alias
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 15, 2024
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 javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants