Skip to content
This repository has been 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 #249

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2024

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

Package From To
@types/node 20.11.24 20.14.2
mongodb 6.4.0 6.7.0
mongodb-memory-server 9.1.6 9.3.0
tap 18.7.0 19.2.3
tsc-alias 1.8.8 1.8.10
typescript 5.3.3 5.4.5

Updates @types/node from 20.11.24 to 20.14.2

Commits

Updates mongodb from 6.4.0 to 6.7.0

Release notes

Sourced from mongodb's releases.

v6.7.0

6.7.0 (2024-05-29)

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

Release Notes

Support for MONGODB-OIDC Authentication

MONGODB-OIDC is now supported as an authentication mechanism for MongoDB server versions 7.0+. The currently supported facets to authenticate with are callback authentication, human interaction callback authentication, Azure machine authentication, and GCP machine authentication.

Azure Machine Authentication

The MongoClient must be instantiated with authMechanism=MONGODB-OIDC in the URI or in the client options. Additional required auth mechanism properties of TOKEN_RESOURCE and ENVIRONMENT are required and another optional username can be provided. Example:

const client = new MongoClient('mongodb+srv://<username>@<host>:<port>/?authMechanism=MONGODB-OIDC&authMechanismProperties=TOKEN_RESOURCE:<azure_token>,ENVIRONMENT=azure');
await client.connect();

GCP Machine Authentication

The MongoClient must be instantiated with authMechanism=MONGODB-OIDC in the URI or in the client options. Additional required auth mechanism properties of TOKEN_RESOURCE and ENVIRONMENT are required. Example:

const client = new MongoClient('mongodb+srv://<host>:<port>/?authMechanism=MONGODB-OIDC&authMechanismProperties=TOKEN_RESOURCE:<gcp_token>,ENVIRONMENT=gcp');
await client.connect();

Callback Authentication

The user can provide a custom callback to the MongoClient that returns a valid response with an access token. The callback is provided as an auth mechanism property an has the signature of:

const oidcCallBack = (params: OIDCCallbackParams): Promise<OIDCResponse> => {
  // params.timeoutContext is an AbortSignal that will abort after 30 seconds for non-human and 5 minutes for human.
  // params.version is the current OIDC API version.
  // params.idpInfo is the IdP info returned from the server.
  // params.username is the optional username.
// Make a call to get a token.
const token = ...;
return {
accessToken: token,
expiresInSeconds: 300,
refreshToken: token
};
}
</tr></table>

... (truncated)

Changelog

Sourced from mongodb's changelog.

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

  • NODE-3639: add a general stage to the aggregation pipeline builder (#4079) (8fca1aa)
  • NODE-5678: add options parsing support for timeoutMS and defaultTimeoutMS (#4068) (ddd1e81)
  • NODE-5762: include cause and package name for all MongoMissingDependencyErrors (#4067) (62ea94b)
  • NODE-5825: add minRoundTripTime to ServerDescription and change roundTripTime to a moving average (#4059) (0e3d6ea)
  • NODE-5919: support new type option in create search index helpers (#4060) (3598c23)
  • NODE-6020: upgrade BSON to ^6.5.0 (#4035) (8ab2055)

Bug Fixes

  • NODE-3681: Typescript error in Collection.findOneAndModify UpdateFilter $currentDate (#4047) (a8670a7)
  • NODE-5530: make topology descriptions JSON stringifiable (#4070) (3a0e011)
  • NODE-5745: ignore Read/Write Concern in Atlas Search Index Helpers (#4042) (67d7bab)
  • NODE-5925: driver throws error when non-read operation in a transaction has a ReadPreferenceMode other than 'primary' (#4075) (39fc198)
  • NODE-5971: attach v to createIndexes command when version is specified (#4043) (1879a04)
  • NODE-5999: Change TopologyDescription.error type to MongoError (#4028) (30432e8)
  • NODE-6019: indexExists always returns false when full is set to true (#4034) (0ebc1ac)
  • NODE-6029: update types for collection listing indexes (#4072) (232bf3c)
  • NODE-6051: only provide expected allowed keys to libmongocrypt after fetching aws kms credentials (#4057) (c604e74)

... (truncated)

Commits
  • f56938f chore(main): release 6.7.0 [skip-ci] (#4118)
  • 2ba8434 feat(NODE-5464): OIDC machine and callback workflow (#3912)
  • d3031a5 docs(NODE-6191): clarify that operations should not be parallelized in transa...
  • d1695c4 docs: fix typos, punctuation, caps, formatting (#4103)
  • 652af8d chore(NODE-6170): update release please owner (#4115)
  • 21b729b fix(NODE-6165): useBigInt64 causes compareTopologyVersion to throw (#4109)
  • 9285c42 chore(NODE-6178): enable codeql scans (#4116)
  • 6acb5e5 chore(main): release 6.6.2 [skip-ci] (#4111)
  • 7a7ec5b fix(NODE-6171): RTT set to zero when serverMonitoringMode=stream (#4110)
  • 7c91272 ci(NODE-6162): add server 8.0 to evergreen (#4107)
  • Additional commits viewable in compare view

Updates mongodb-memory-server from 9.1.6 to 9.3.0

Release notes

Sourced from mongodb-memory-server's releases.

v9.3.0

9.3.0 (2024-05-30)

Fixes

  • DryMongoBinary::locateBinary: check if download-lock still exists (c600609), closes #872
  • DryMongoBinary: resolve modulesCache relative to config options package.json (be934a0)

Refactor

  • utils: add function "lockfilePath" (9db479f)

Dependencies

  • semver: upgrade to version 7.6.2 (e101c06)

Dev-Dependencies

  • rimraf: upgrade to version 5.0.7 (4334a5f)
  • ts-jest: upgrade to version 29.1.4 (f2cf51a)

v9.3.0-beta.1

9.3.0-beta.1 (2024-05-30)

Dependencies

  • semver: upgrade to version 7.6.2 (e101c06)

Dev-Dependencies

  • rimraf: upgrade to version 5.0.7 (4334a5f)
  • ts-jest: upgrade to version 29.1.4 (f2cf51a)

v9.2.1-beta.2

9.2.1-beta.2 (2024-05-17)

Fixes

  • DryMongoBinary: resolve modulesCache relative to config options package.json (be934a0)

v9.2.1-beta.1

9.2.1-beta.1 (2024-05-16)

... (truncated)

Changelog

Sourced from mongodb-memory-server's changelog.

9.3.0 (2024-05-30)

Fixes

  • DryMongoBinary::locateBinary: check if download-lock still exists (c600609), closes #872
  • DryMongoBinary: resolve modulesCache relative to config options package.json (be934a0)

Refactor

  • utils: add function "lockfilePath" (9db479f)

Dependencies

  • semver: upgrade to version 7.6.2 (e101c06)

Dev-Dependencies

  • rimraf: upgrade to version 5.0.7 (4334a5f)
  • ts-jest: upgrade to version 29.1.4 (f2cf51a)

9.3.0-beta.1 (2024-05-30)

Dependencies

  • semver: upgrade to version 7.6.2 (e101c06)

Dev-Dependencies

  • rimraf: upgrade to version 5.0.7 (4334a5f)
  • ts-jest: upgrade to version 29.1.4 (f2cf51a)

9.2.1-beta.2 (2024-05-17)

Fixes

  • DryMongoBinary: resolve modulesCache relative to config options package.json (be934a0)

9.2.1-beta.1 (2024-05-16)

Fixes

  • DryMongoBinary::locateBinary: check if download-lock still exists (c600609), closes #872

... (truncated)

Commits

Updates tap from 18.7.0 to 19.2.3

Commits
  • c2005fa update versions
  • 31bace4 chdir: don't need to depend on @​tapjs/after
  • c32cded fixture: safely delete when in a subdir of testdir
  • 4c23c76 update versions
  • 5edeb4b run: add missing origin in resolveImport
  • b540d4e update versions
  • 956aeb5 chdir: fix detection of original cwd
  • 71570ad add @​tapjs/chdir to typedocs
  • 42f02af update versions
  • 4e65ee7 changelog 19.2
  • 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.4.5

Release notes

Sourced from typescript's releases.

TypeScript 5.4.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.4.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4.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.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • 27bcd4c Update LKG
  • 9f33bf1 🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...
  • 71b2f84 Bump version to 5.4.5 and LKG
  • 892936f 🤖 Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...
  • 38a7c05 release-5.4: Always set node-version for setup-node (#58117)
  • b754fc3 🤖 Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...
  • 8eb3367 Bump version to 5.4.4 and LKG
  • de9096b 🤖 Pick PR #57871 (Divide-and-conquer strategy for int...) into release-5.4 (#...
  • 06aae98 🤖 Pick PR #57973 (Compare package.json paths with cor...) into release-5.4 (#...
  • 6d8134e 🤖 Pick PR #57637 (Fixed a regression related to deter...) into release-5.4 (#...
  • 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.2` |
| [mongodb](https://github.com/mongodb/node-mongodb-native) | `6.4.0` | `6.7.0` |
| [mongodb-memory-server](https://github.com/nodkz/mongodb-memory-server/tree/HEAD/packages/mongodb-memory-server) | `9.1.6` | `9.3.0` |
| [tap](https://github.com/tapjs/tapjs) | `18.7.0` | `19.2.3` |
| [tsc-alias](https://github.com/justkey007/tsc-alias) | `1.8.8` | `1.8.10` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.5` |



Updates `@types/node` from 20.11.24 to 20.14.2
- [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.7.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.7.0)

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

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

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.4.5
- [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.4.5)

---
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 Jun 10, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 17, 2024

Superseded by #252.

@dependabot dependabot bot closed this Jun 17, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-dependencies-3a202bdf35 branch June 17, 2024 12:04
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