Skip to content

chore(deps): bump the npm-production-minor-patch group with 21 updates - #868

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-production-minor-patch-6c4fda7273
Open

chore(deps): bump the npm-production-minor-patch group with 21 updates#868
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-production-minor-patch-6c4fda7273

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-production-minor-patch group with 21 updates:

Package From To
mongodb-connection-string-url 7.0.1 7.0.2
socks 2.8.3 2.8.9
mongodb 7.5.0 7.6.0
resolve-mongodb-srv 1.1.3 1.1.7
mongodb-client-encryption 7.0.0 7.2.1
lru-cache 11.3.5 11.5.2
@aws-sdk/client-s3 3.1098.0 3.1117.0
ajv 8.18.0 8.20.0
semver 7.7.4 7.8.5
ipaddr.js 2.2.0 2.5.0
acorn 8.16.0 8.18.0
bson 7.3.1 7.3.2
tar 7.5.11 7.5.22
heap-js 2.3.0 2.7.1
yargs 18.0.0 18.1.0
@mongosh/shell-api 5.1.6 5.5.0
node-addon-api 8.3.1 8.9.2
@types/ssh2 1.11.19 1.15.5
eslint-plugin-filename-rules 1.2.0 1.3.1
eslint-plugin-react 7.30.1 7.37.5
chai-dom 1.11.0 1.12.1

Updates mongodb-connection-string-url from 7.0.1 to 7.0.2

Release notes

Sourced from mongodb-connection-string-url's releases.

v7.0.2

7.0.2 (2026-07-15)

The MongoDB Node.js team is pleased to announce version 7.0.2 of the mongodb-connection-string-url package!

Release Notes

Loosened type restriction on generic arugments

  • .typedSearchParams<...>()
  • CommaAndColonSeparatedRecord<...>

The generics passed into these APIs were inadvertently made stricter than desirable. They've been updated to use the extends {} condition which permits string keyed types as a type argument. Notably improving the compatibility with the driver's AuthMechanismProperties type, a possible output of connection string parsing.

Fixed parsing issue

Unescaped @ in credentials now throws instead of silently misparsing.

Error messages no longer reveal invalid connection strings

Invalid connection strings are no longer revealed in error messages, reducing sensitive information disclosure. Historically we've had URI's embedded in error messages from validation failures.

Bug Fixes

  • NODE-7449: loosen type requirement for generics on typedSearchParams and CommaAndColonSeparatedRecord (#116) (69bd1af)
  • NODE-7597: handle unescaped @ in the password (#125) (9b39443)
  • NODE-7663: uri disclosure on error (#131) (7a1f4ce)

Documentation

We invite you to try the mongodb-connection-string-url library immediately, and report any issues to the NODE project.

Changelog

Sourced from mongodb-connection-string-url's changelog.

7.0.2 (2026-07-09)

Bug Fixes

  • NODE-7449: loosen type requirement for generics on typedSearchParams and CommaAndColonSeparatedRecord (#116) (69bd1af)
  • NODE-7597: handle unescaped @ in the password COMPASS-10688 (#125) (9b39443)
  • NODE-7663: uri disclosure on error (#131) (7a1f4ce)
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for mongodb-connection-string-url since your current version.


Updates socks from 2.8.3 to 2.8.9

Commits

Updates mongodb from 7.5.0 to 7.6.0

Release notes

Sourced from mongodb's releases.

v7.6.0

7.6.0 (2026-08-21)

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

Release Notes

Support for MongoDB 4.2 is removed

[!WARNING] When the driver connects to a MongoDB server of version 4.2 or less, it will now throw an error.

HTTP proxy support for KMS requests in CSFLE and Queryable Encryption

In-use encryption can now route KMS requests through an HTTP proxy. Set kmsConnectCallback on your ClientEncryption or auto-encryption options to control how the driver connects to a KMS host. The callback receives the target host and port and returns a connected socket (for example, a tunnel opened with HTTP CONNECT); the driver then performs the KMS TLS handshake over that socket using the provider's configured TLS options. This unblocks CSFLE and Queryable Encryption in environments that require an HTTP forward proxy for outbound KMS traffic, which the existing SOCKS5 proxyOptions does not cover.

const clientEncryption = new ClientEncryption(keyVaultClient, {
  keyVaultNamespace,
  kmsProviders,
  // Establish the KMS connection through your HTTP proxy; the driver adds TLS.
  kmsConnectCallback: ({ host, port }) => connectThroughHttpProxy(host, port)
});

Improved Intelligent Workload Management

Improved performance for MongoDB 9.0's Intelligent Workload Management (IWM) by only retrying overload errors when doing so is expected to not worsen server conditions

Bundling the driver into ESM no longer throws ReferenceError: require is not defined

v7.2.0 introduced the experimental runtimeAdapters option and, as part of it, replaced the driver’s static import of Node’s os module with a runtime require('os'). That works in a CommonJS build, but when the driver is bundled into ESM output (e.g. a Vite/esbuild/rollup server build with "type": "module"), there is no require in module scope, so constructing a client threw ReferenceError: require is not defined. The driver now loads the default os adapter through a dynamic import() that survives bundling, so new MongoClient() works in ESM bundles. CommonJS usage is unchanged, and supplying your own runtimeAdapters.os continues to work.

Bulk writes serialize each document only once

insertMany and bulkWrite previously processed each document twice - once to measure its size for batch splitting (a full recursive walk via calculateObjectSize) and again to serialize it into the command sent to the server. Documents are now serialized a single time and the resulting bytes are reused for both, decreasing the BSON-encoding CPU spent on bulk writes and reducing event-loop blocking during large batches. The improvement is most noticeable with high document counts and documents that have many fields.

Features

  • NODE-7546: add HTTP Proxy support for QE & CSFLE (#5007) (3366c21)
  • NODE-7547: bump minimum support server/wire versions to '4.4' & '9' respectively (#4994) (3d97028)
  • NODE-7624: support baseBackoffMS and update client backpressure backoff (#5020) (560837b)

Bug Fixes

  • NODE-7603: emit dynamic import('os') via tsconfig (#4992) (52f5e61)

Performance Improvements

... (truncated)

Changelog

Sourced from mongodb's changelog.

7.6.0 (2026-08-21)

Features

  • NODE-7546: add HTTP Proxy support for QE & CSFLE (#5007) (3366c21)
  • NODE-7547: bump minimum support server/wire versions to '4.4' & '9' respectively (#4994) (3d97028)
  • NODE-7624: support baseBackoffMS and update client backpressure backoff (#5020) (560837b)

Bug Fixes

  • NODE-7603: emit dynamic import('os') via tsconfig (#4992) (52f5e61)

Performance Improvements

  • NODE-7660: serialize bulk write documents a single time (#4999) (1217aa1)
Commits
  • 0fb2c13 chore(main): release 7.6.0 (#5001)
  • bb35ded docs: Add preliminary checks to release instructions (#5028)
  • 560837b feat(NODE-7624): support baseBackoffMS and update client backpressure backoff...
  • ce33c59 chore(NODE-7767): bson compat tests snappy fix (#5025)
  • 0f2ed29 chore(NODE-7770): add server 9.0 to the test matrix (#5024)
  • bc92c29 chore(NODE-7767): snappy 7.4 is incompatible in CI (#5021)
  • dce7939 chore(NODE-7759): pin bson-compat server (#5018)
  • 7f8edf3 chore: run bson compat tests against latest server (#5017)
  • 30c31e5 ci(deps): bump drivers-evergreen-tools from 3741fa9 to e86753e (#5016)
  • 3366c21 feat(NODE-7546): add HTTP Proxy support for QE & CSFLE (#5007)
  • Additional commits viewable in compare view

Updates resolve-mongodb-srv from 1.1.3 to 1.1.7

Commits

Updates mongodb-client-encryption from 7.0.0 to 7.2.1

Release notes

Sourced from mongodb-client-encryption's releases.

v7.2.1

7.2.1 (2026-07-29)

The MongoDB Node.js team is pleased to announce version 7.2.1 of the mongodb-client-encryption package!

Release Notes

macOS x64 prebuild

Fixes ERR_DLOPEN_FAILED when loading the addon in an x64 Node.js process on macOS. The x86_64 half of the universal binary in 7.1.0 and 7.2.0 was missing libmongocrypt's symbols. arm64 processes and 7.0.0 are not affected.

Bug Fixes

  • NODE-7704: build libmongocrypt for both macOS architectures (#137) (9335322)

[!IMPORTANT] This library provides encryption functionality for the MongoDB Node.js driver but is not intended to be consumed in isolation. The public API that uses the functionality in this library is available in the mongodb package.

v7.2.0

7.2.0 (2026-07-06)

Features

  • NODE-7653: bump libmongocrypt to 1.20.0 (#135) (e9d1a1c)

v7.1.0

7.1.0 (2026-06-25)

Features

  • NODE-7569: upgrade libmongocrypt to 1.19.2 (#133) (952c6cb)
Changelog

Sourced from mongodb-client-encryption's changelog.

7.2.1 (2026-07-29)

Bug Fixes

  • NODE-7704: build libmongocrypt for both macOS architectures (#137) (9335322)

7.2.0 (2026-07-06)

Features

  • NODE-7653: bump libmongocrypt to 1.20.0 (#135) (e9d1a1c)

7.1.0 (2026-06-24)

Features

  • NODE-7569: upgrade to libmongocrypt 1.19.2 from GitHub Releases (#133) (952c6cb)
Commits
  • d068409 chore(main): release 7.2.1 (#138)
  • 9335322 fix(NODE-7704): build libmongocrypt for both macOS architectures (#137)
  • ab0a1a3 chore(main): release 7.2.0 (#136)
  • e9d1a1c feat(NODE-7653): bump libmongocrypt to 1.20.0 (#135)
  • e34e350 chore(NODE-7523): update prod/dev dependencies (#131)
  • 5e42621 chore(main): release 7.1.0 (#134)
  • 952c6cb feat(NODE-7569): upgrade to libmongocrypt 1.19.2 from GitHub Releases (#133)
  • 3a2f2fb chore(NODE-7599): update release integrity docs (#130)
  • 2c6fa35 chore: fix release job, remove unused id-token permission (#129)
  • bb1633c chore(NODE-7565): migrate release workflow to npm Trusted Publishing (#128)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for mongodb-client-encryption since your current version.


Updates lru-cache from 11.3.5 to 11.5.2

Changelog

Sourced from lru-cache's changelog.

cringe lorg

11.5

  • Add backgroundFetchSize option, defaulting to 1, to set an effective size for provisional background fetch objects while in flight, if they do not shadow an existing stale entry.

11.4

  • Add cache property to status objects, in order to differentiate which cache is emitting the metric or trace.
  • Several small bugs regarding fetch behavior edge cases.
    • onInsert does not fire for background fetch internal promises.
    • dispose() and disposeAfter() now fire for the stale value left behind when an in-process background fetch is pre-empted by eviction.
    • fetchMethod that returns a non-Promise value is handled correctly.
    • No Error is created, or abort() signaled, when a background fetch promise is resolved. (Presumably the implementation is done by that point.)

11.3

  • Add observability features, expand the coverage of LRUCache.Status objects.

11.2

  • Add the perf option to specify performance, Date, or any other object with a now() method that returns a number.

11.1

  • Add the onInsert method

11.0

  • Drop support for node less than v20

10.4

  • Accidental minor update, should've been patch.

10.3

  • add forceFetch() method
  • set disposeReason to 'expire' when it's the result of a TTL

... (truncated)

Commits

Updates @aws-sdk/client-s3 from 3.1098.0 to 3.1117.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.1117.0

3.1117.0(2026-08-24)

Documentation Changes
  • client-batch: Doc Update, Add note that UpdatePolicy applies only to EC2 managed compute environments (26c213cf)
New Features
  • client-securityagent: Adding private and self-signed certificate configuration support for penetration tests (42f6ecb8)
  • client-bedrock: Adds support for specifying an inference profile ID or ARN, or an application inference profile ARN as the target model in CreateAdvancedPromptOptimizationJob. (9110f46b)
  • client-connect-contact-lens: This release adds the ExtractedInformation segment to the ListRealtimeContactAnalysisSegments API, enabling customers to retrieve information extracted from real-time contact analysis. (9c5bda85)
  • client-dsql: Corrected the validation pattern on the ServiceName response field in the GetVpcEndpointServiceName API to match the values Amazon Aurora DSQL actually returns. (1b689a9f)
  • client-connect: This release adds the ExtractedInformation segment to the ListRealtimeContactAnalysisSegmentsV2 API, enabling customers to retrieve information extracted from real-time contact analysis. (775d1ad4)
  • client-launch-wizard: Added accountConstraints and patternType to GetWorkload, ListWorkloads, GetWorkloadDeploymentPattern and ListWorkloadDeploymentPatterns for Launch Wizard (721b9f47)
  • client-elementalinference: Added support for the GetFixture API, enabling customers to retrieve the details of a fixture from its fixture ID, and added the access role ARN to the CreateFeed, GetFeed, and UpdateFeed responses. (d4b71834)
  • client-kafka: Amazon MSK Replicator now supports OAuth authentication when connecting to external Apache Kafka clusters, enabling customers to replicate data from clusters that require OAuth for client authentication. This new capability is supported in all AWS Regions where MSK Express brokers are available. (a461b5a0)
  • client-timestream-influxdb: Service-managed parameter groups now only apply optimized defaults to DB Clusters automatically. New field effectiveDbParameterGroupIdentifier surfaces the parameter group actually applied. (8c7f04cd)

For list of updated packages, view updated-packages.md in assets-3.1117.0.zip

v3.1116.0

3.1116.0(2026-08-21)

Chores
Documentation Changes
  • client-backup: Updating CLI Docs for Backup Audit Manager List Job Summaries APIs. (98f47ffe)
  • client-wafv2: DataProtectionConfig field Key Documentation Update (a8f1fb90)
New Features
  • client-cloudwatch: Allows customers to specify an initial warm up period to wait for metrics to arrive when creating metric or log alarms (e354f162)
  • client-device-farm: Added support to CreateRemoveAccessSession for selecting a server version on the mobile WebDriver endpoint. (d91e09c8)
  • client-bedrock-agentcore: Increase spans count from 1k to 20k (e83264aa)
  • client-kinesis: Generate account endpoint for Kinesis Data Streams requests when the account ID is available (ed9966e2)
  • client-bedrock-agentcore-control: Update Dataset schema to THIRDPARTYEVALUATIONV1 (f0fe8db3)

For list of updated packages, view updated-packages.md in assets-3.1116.0.zip

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.1117.0 (2026-08-24)

Note: Version bump only for package @​aws-sdk/client-s3

3.1116.0 (2026-08-21)

Note: Version bump only for package @​aws-sdk/client-s3

3.1115.0 (2026-08-20)

Note: Version bump only for package @​aws-sdk/client-s3

3.1114.0 (2026-08-19)

Note: Version bump only for package @​aws-sdk/client-s3

3.1113.0 (2026-08-18)

Note: Version bump only for package @​aws-sdk/client-s3

3.1112.0 (2026-08-17)

Note: Version bump only for package @​aws-sdk/client-s3

3.1111.0 (2026-08-14)

... (truncated)

Commits

Updates ajv from 8.18.0 to 8.20.0

Release notes

Sourced from ajv's releases.

v8.20.0

What's Changed

Full Changelog: ajv-validator/ajv@v8.19.0...v8.20.0

v8.19.0

What's Changed

Full Changelog: ajv-validator/ajv@v8.18.0...v8.19.0

Commits

Updates semver from 7.7.4 to 7.8.5

Release notes

Sourced from semver's releases.

v7.8.5

7.8.5 (2026-06-19)

Bug Fixes

v7.8.4

7.8.4 (2026-06-09)

Bug Fixes

v7.8.3

7.8.3 (2026-06-08)

Bug Fixes

Chores

v7.8.2

7.8.2 (2026-06-04)

Bug Fixes

v7.8.1

7.8.1 (2026-05-21)

Bug Fixes

v7.8.0

7.8.0 (2026-05-08)

Features

Bug Fixes

Documentation

Chores

Changelog

Sourced from semver's changelog.

7.8.5 (2026-06-19)

Bug Fixes

7.8.4 (2026-06-09)

Bug Fixes

7.8.3 (2026-06-08)

Bug Fixes

Chores

7.8.2 (2026-06-04)

Bug Fixes

7.8.1 (2026-05-21)

Bug Fixes

7.8.0 (2026-05-08)

Features

Bug Fixes

Documentation

Chores

Commits

Updates ipaddr.js from 2.2.0 to 2.5.0

Changelog

Sourced from ipaddr.js's changelog.

2.5.0 - 2026-08-04

  • remove ipaddr.min.js, end users must provide own minification/bundling
  • fix: compress the leftmost zero run in toString (RFC 5952, 4.2.3)
  • fix: strict IPv6 validation — reject :: with zero compression and hextets >4 hex digits
  • fix: reject non-numeric prefix length in subnetMaskFromPrefixLength
  • fix: compress trailing zero run in toString when a zoneIndex is present
  • fix: throw a descriptive error for malformed input in IPv6.parse

2.4.0 - 2026-05-03

  • remove Bower support
  • add RFC9637, RFC9602, RFC8215, RFC3879 reserved address ranges

2.3.0 - 2025-11-27

  • add isValidCIDRFourPartDecimal helper for IPv4 CIDR in four-part decimal form
  • upgrade eslint dev dependency to v9
  • remove duplicated LICENSE entry from published files list
Commits

Updates acorn from 8.16.0 to 8.18.0

Commits
  • d788421 Mark version 8.18.0
  • b61cb9a Add startLocation option
  • c8d515c Don't compute curLine when locations are off
  • a7bd3cd Reject an unparenthesized arrow function as the left operand of **
  • b7c31b6 Fix mistake in previous patch
  • 5c4af50 Avoid scanning from start of document in loose parser's resetTo
  • 5b9d16c Mark version 8.17.0

Bumps the npm-production-minor-patch group with 21 updates:

| Package | From | To |
| --- | --- | --- |
| [mongodb-connection-string-url](https://github.com/mongodb-js/mongodb-connection-string-url) | `7.0.1` | `7.0.2` |
| [socks](https://github.com/JoshGlazebrook/socks) | `2.8.3` | `2.8.9` |
| [mongodb](https://github.com/mongodb/node-mongodb-native) | `7.5.0` | `7.6.0` |
| [resolve-mongodb-srv](https://github.com/mongodb-js/resolve-mongodb-srv) | `1.1.3` | `1.1.7` |
| [mongodb-client-encryption](https://github.com/mongodb-js/mongodb-client-encryption) | `7.0.0` | `7.2.1` |
| [lru-cache](https://github.com/isaacs/node-lru-cache) | `11.3.5` | `11.5.2` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.1098.0` | `3.1117.0` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.18.0` | `8.20.0` |
| [semver](https://github.com/npm/node-semver) | `7.7.4` | `7.8.5` |
| [ipaddr.js](https://github.com/whitequark/ipaddr.js) | `2.2.0` | `2.5.0` |
| [acorn](https://github.com/acornjs/acorn) | `8.16.0` | `8.18.0` |
| [bson](https://github.com/mongodb/js-bson) | `7.3.1` | `7.3.2` |
| [tar](https://github.com/isaacs/node-tar) | `7.5.11` | `7.5.22` |
| [heap-js](https://github.com/ignlg/heap-js) | `2.3.0` | `2.7.1` |
| [yargs](https://github.com/yargs/yargs) | `18.0.0` | `18.1.0` |
| [@mongosh/shell-api](https://github.com/mongodb-js/mongosh) | `5.1.6` | `5.5.0` |
| [node-addon-api](https://github.com/nodejs/node-addon-api) | `8.3.1` | `8.9.2` |
| [@types/ssh2](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ssh2) | `1.11.19` | `1.15.5` |
| [eslint-plugin-filename-rules](https://github.com/dolsem/eslint-plugin-filename-rules) | `1.2.0` | `1.3.1` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.30.1` | `7.37.5` |
| [chai-dom](https://github.com/nathanboktae/chai-dom) | `1.11.0` | `1.12.1` |


Updates `mongodb-connection-string-url` from 7.0.1 to 7.0.2
- [Release notes](https://github.com/mongodb-js/mongodb-connection-string-url/releases)
- [Changelog](https://github.com/mongodb-js/mongodb-connection-string-url/blob/main/HISTORY.md)
- [Commits](mongodb-js/mongodb-connection-string-url@v7.0.1...v7.0.2)

Updates `socks` from 2.8.3 to 2.8.9
- [Release notes](https://github.com/JoshGlazebrook/socks/releases)
- [Commits](JoshGlazebrook/socks@2.8.3...2.8.9)

Updates `mongodb` from 7.5.0 to 7.6.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@v7.5.0...v7.6.0)

Updates `resolve-mongodb-srv` from 1.1.3 to 1.1.7
- [Release notes](https://github.com/mongodb-js/resolve-mongodb-srv/releases)
- [Commits](mongodb-js/resolve-mongodb-srv@v1.1.3...v1.1.7)

Updates `mongodb-client-encryption` from 7.0.0 to 7.2.1
- [Release notes](https://github.com/mongodb-js/mongodb-client-encryption/releases)
- [Changelog](https://github.com/mongodb-js/mongodb-client-encryption/blob/main/HISTORY.md)
- [Commits](mongodb-js/mongodb-client-encryption@v7.0.0...v7.2.1)

Updates `lru-cache` from 11.3.5 to 11.5.2
- [Changelog](https://github.com/isaacs/node-lru-cache/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-lru-cache@v11.3.5...v11.5.2)

Updates `@aws-sdk/client-s3` from 3.1098.0 to 3.1117.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1117.0/clients/client-s3)

Updates `ajv` from 8.18.0 to 8.20.0
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.18.0...v8.20.0)

Updates `semver` from 7.7.4 to 7.8.5
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.7.4...v7.8.5)

Updates `ipaddr.js` from 2.2.0 to 2.5.0
- [Changelog](https://github.com/whitequark/ipaddr.js/blob/main/Changes.md)
- [Commits](https://github.com/whitequark/ipaddr.js/commits)

Updates `acorn` from 8.16.0 to 8.18.0
- [Commits](acornjs/acorn@8.16.0...8.18.0)

Updates `bson` from 7.3.1 to 7.3.2
- [Release notes](https://github.com/mongodb/js-bson/releases)
- [Changelog](https://github.com/mongodb/js-bson/blob/main/HISTORY.md)
- [Commits](mongodb/js-bson@v7.3.1...v7.3.2)

Updates `tar` from 7.5.11 to 7.5.22
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-tar@v7.5.11...v7.5.22)

Updates `heap-js` from 2.3.0 to 2.7.1
- [Release notes](https://github.com/ignlg/heap-js/releases)
- [Commits](ignlg/heap-js@v2.3.0...v2.7.1)

Updates `yargs` from 18.0.0 to 18.1.0
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
- [Commits](yargs/yargs@v18.0.0...v18.1.0)

Updates `@mongosh/shell-api` from 5.1.6 to 5.5.0
- [Release notes](https://github.com/mongodb-js/mongosh/releases)
- [Commits](https://github.com/mongodb-js/mongosh/compare/@mongosh/shell-api@5.1.6...@mongosh/shell-api@5.5.0)

Updates `node-addon-api` from 8.3.1 to 8.9.2
- [Release notes](https://github.com/nodejs/node-addon-api/releases)
- [Changelog](https://github.com/nodejs/node-addon-api/blob/main/CHANGELOG.md)
- [Commits](nodejs/node-addon-api@v8.3.1...v8.9.2)

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

Updates `eslint-plugin-filename-rules` from 1.2.0 to 1.3.1
- [Commits](dolsem/eslint-plugin-filename-rules@v1.2.0...v1.3.1)

Updates `eslint-plugin-react` from 7.30.1 to 7.37.5
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.30.1...v7.37.5)

Updates `chai-dom` from 1.11.0 to 1.12.1
- [Commits](nathanboktae/chai-dom@v1.11.0...v1.12.1)

---
updated-dependencies:
- dependency-name: mongodb-connection-string-url
  dependency-version: 7.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production-minor-patch
- dependency-name: socks
  dependency-version: 2.8.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production-minor-patch
- dependency-name: mongodb
  dependency-version: 7.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: resolve-mongodb-srv
  dependency-version: 1.1.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production-minor-patch
- dependency-name: mongodb-client-encryption
  dependency-version: 7.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: lru-cache
  dependency-version: 11.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.1117.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: ajv
  dependency-version: 8.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: semver
  dependency-version: 7.8.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: ipaddr.js
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: acorn
  dependency-version: 8.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: bson
  dependency-version: 7.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production-minor-patch
- dependency-name: tar
  dependency-version: 7.5.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production-minor-patch
- dependency-name: heap-js
  dependency-version: 2.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: yargs
  dependency-version: 18.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: "@mongosh/shell-api"
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: node-addon-api
  dependency-version: 8.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: "@types/ssh2"
  dependency-version: 1.15.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: eslint-plugin-filename-rules
  dependency-version: 1.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: eslint-plugin-react
  dependency-version: 7.37.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
- dependency-name: chai-dom
  dependency-version: 1.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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