Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 10, 2025

Bumps the major group with 14 updates in the / directory:

Package From To
bson 6.10.4 7.0.0
@biomejs/biome 1.9.4 2.3.4
@rollup/plugin-commonjs 22.0.2 29.0.0
@rollup/plugin-json 4.1.0 6.1.0
@rollup/plugin-node-resolve 15.2.3 16.0.3
@types/jest 29.5.14 30.0.0
@types/node 20.14.15 24.10.0
eslint 8.57.0 9.39.1
eslint-config-prettier 8.5.0 10.1.8
eslint-plugin-jest 28.11.0 29.0.1
prettier 2.8.8 3.6.2
rimraf 3.0.2 6.1.0
rollup 2.79.2 4.53.2
typescript 4.7.4 5.9.3

Updates bson from 6.10.4 to 7.0.0

Release notes

Sourced from bson's releases.

v7.0.0

7.0.0 (2025-11-05)

The MongoDB Node.js team is pleased to announce version 7.0.0 of the bson package!

Release Notes

⚠ Breaking Changes

Minimum supported Node.js version now 20.19.0

The minimum supported Node.js version is now v20.19.0. 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. Our TypeScript target has also been updated to ES2023.

BSON now requires BigInt literal support

BSON now uses Javascript BigInt syntax and requires a JS engine with support for BigInt literal syntax.

All BSON bundles now use globalThis.crypto for random byte generation

Until BSON@7.x, BSON has supported Node.js v16. Node.js v16 does not include crypto in the global object, which necessitated importing crypto from node:crypto. This require has caused many headaches for bundlers. We improved the situation in NODE-6074, but this release updates our Node.js bundle to rely on the global object instead and removes all requires from the bundle.

BSON no longer vendors atob, btoa, and TextEncoder for react native builds

The React Native JS engine (Hermes) now supports atob, btoa, and TextEncoder natively and polyfills are no longer needed. BSON no longer includes these polyfills for react native builds.

ObjectId constructor no longer accepts a number

If you wish to create an ObjectId from a numeric timestamp, use ObjectId.createFromTime() instead.

BSON Binary subtype 2 constant deprecated

BSON Binary subtype 2 was previously deprecated in the BSON specification, but the corresponding subtype constant remained available in the BSON library. This constant has now been deprecated to align with the specification.

Non-breaking Features

New bsonType symbol property as an alias for _bsontype

JS classes representing BSON values now have a bsonType symbol property as an alias for the existing _bsontype property. This makes it easier to distinguish between values of a specific BSON type and documents with arbitrary keys after deserializing:

import { bsonType, deserialize } from 'bson';
const doc = deserialize(...);
// will be set when doc.value is a BSON wrapper class or a sub-document { _bsontype: '...' }
console.log(doc.value._bsontype);
// will be set if and only if doc.value is a BSON wrapper class
console.log(doc.value[bsonType]);

It is safe to replace all uses of value._bsontype with value[bsonType].

... (truncated)

Changelog

Sourced from bson's changelog.

7.0.0 (2025-11-05)

Miscellaneous Chores

7.0.0-alpha.2 (2025-10-24)

Bug Fixes

  • NODE-7271: revert private property usage in ObjectId (#835) (79faf75)

7.0.0-alpha.1 (2025-10-21)

⚠ BREAKING CHANGES

  • bump BSON_MAJOR_VERSION to 7 (#832)

Features

7.0.0-alpha (2025-10-21)

⚠ BREAKING CHANGES

  • NODE-7098: use bigint literal syntax (#826)
  • NODE-5763: remove support for new ObjectId() (#824)
  • NODE-6625: remove support for Node 16 and 18 (#821)

Features

  • NODE-5763: remove support for new ObjectId(<number>) (#824) (21cc3ff)
  • NODE-6321: remove require('crypto') from Nodejs bundle (#825) (7ba8917)
  • NODE-6625: remove support for Node 16 and 18 (#821) (f636254)
  • NODE-7019: remove react native vendor polyfills (#827) (883f238)
  • NODE-7098: use bigint literal syntax (#826) (94bf732)
  • NODE-7099: deprecate BSON binary subtype 2 constant (#812) (f61946d)
  • NODE-7255: add well-known Symbol alias for _bsontype (#829) (1e1b619)
Commits
  • 988fa17 chore(main): release 7.0.0 (#848)
  • b925f26 chore: prerelease false (#847)
  • 186d5f3 chore: remove alpha tag on main (#846)
  • d9bf5c8 chore: prepare for 7.0.0 release (#845)
  • 40a6082 docs(NODE-7173): update v7 compat table (#844)
  • e8840dc test(NODE-7281): add node 24 to ci (#839)
  • 5d9ff9d chore(deps-dev): bump tar from 7.5.1 to 7.5.2 (#838)
  • b2be66a chore(deps-dev): bump the development-dependencies group across 1 directory w...
  • baa070a chore(deps): bump mongodb-labs/drivers-github-tools from 2 to 3 (#822)
  • 1a6afc6 chore(deps-dev): bump sinon from 18.0.1 to 21.0.0 (#819)
  • Additional commits viewable in compare view

Updates @biomejs/biome from 1.9.4 to 2.3.4

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.4

2.3.4

Patch Changes

  • #7989 4855c4a Thanks @​alissonlauffer! - Fixed a regression in Astro frontmatter parsing where comments inside quoted strings were incorrectly detected as actual comments. This caused the parser to prematurely terminate frontmatter parsing when encountering strings like const test = "//";. For example, the following Astro frontmatter now parses correctly:

    ---
    const test = "// not a real comment";
    ---
  • #7968 0b28f5f Thanks @​denbezrukov! - Refactored formatter to use strict Token element for better performance. The new Token variant is optimized for static, ASCII-only text (keywords, operators, punctuation) with the following constraints:

    • ASCII only (no Unicode characters)
    • No newlines (\n, \r)
    • No tab characters (\t)

    This enables faster printing and fitting logic by using bulk string operations (push_str, len()) instead of character-by-character iteration with Unicode width calculations.

  • #7941 19b8280 Thanks @​Conaclos! - Fixed #7943. Rules' options are now properly merged with the inherited options from a shared configuration.

    This means that you can now override a specific option from a rule without resetting the other options to their default.

    Given the following shared configuration:

    {
      "linter": {
        "rules": {
          "style": {
            "useNamingConvention": {
              "level": "on",
              "options": {
                "strictCase": false,
                "conventions": [
                  {
                    "selector": { "kind": "variable", "scope": "global" },
                    "formats": ["CONSTANT_CASE"]
                  }
                ]
              }
            }
          }
        }
      }
    }

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.4

Patch Changes

  • #7989 4855c4a Thanks @​alissonlauffer! - Fixed a regression in Astro frontmatter parsing where comments inside quoted strings were incorrectly detected as actual comments. This caused the parser to prematurely terminate frontmatter parsing when encountering strings like const test = "//";. For example, the following Astro frontmatter now parses correctly:

    ---
    const test = "// not a real comment";
    ---
  • #7968 0b28f5f Thanks @​denbezrukov! - Refactored formatter to use strict Token element for better performance. The new Token variant is optimized for static, ASCII-only text (keywords, operators, punctuation) with the following constraints:

    • ASCII only (no Unicode characters)
    • No newlines (\n, \r)
    • No tab characters (\t)

    This enables faster printing and fitting logic by using bulk string operations (push_str, len()) instead of character-by-character iteration with Unicode width calculations.

  • #7941 19b8280 Thanks @​Conaclos! - Fixed #7943. Rules' options are now properly merged with the inherited options from a shared configuration.

    This means that you can now override a specific option from a rule without resetting the other options to their default.

    Given the following shared configuration:

    {
      "linter": {
        "rules": {
          "style": {
            "useNamingConvention": {
              "level": "on",
              "options": {
                "strictCase": false,
                "conventions": [
                  {
                    "selector": { "kind": "variable", "scope": "global" },
                    "formats": ["CONSTANT_CASE"]
                  }
                ]
              }
            }
          }
        }
      }
    }

    And the user configuration that extends this shared configuration:

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by ematipico, a new releaser for @​biomejs/biome since your current version.


Updates @rollup/plugin-commonjs from 22.0.2 to 29.0.0

Changelog

Sourced from @​rollup/plugin-commonjs's changelog.

v29.0.0

2025-10-30

Breaking Changes

  • feat!: revert #1909 and add requireNodeBuiltins option (#1937)

v28.0.9

2025-10-24

Bugfixes

  • fix: handle node: builtins with strictRequires: auto (#1930)

v28.0.8

2025-10-16

Bugfixes

  • fix: guard moduleSideEffects for wrapped externals (#1914)

v28.0.7

2025-10-14

Bugfixes

  • fix: avoid hoisting dynamically required node: builtins under strictRequires (#1909)

v28.0.6

2025-06-17

Bugfixes

  • fix: fix crash with invalidated proxy modules (#1876)

v28.0.5

2025-06-14

Bugfixes

  • fix: crawl dynamicRequireRoot outside cwd (#1859)

v28.0.4

... (truncated)

Commits
  • c8e78c8 chore(release): commonjs v29.0.0
  • d2b14ed feat(commonjs)!: revert #1909 and add requireNodeBuiltins option (#1937)
  • b079b59 chore(release): commonjs v28.0.9
  • 0881496 fix(commonjs): handle node: builtins with strictRequires: auto (#1930)
  • 232dcf8 chore(release): commonjs v28.0.8
  • 5a6175b fix(commonjs): guard moduleSideEffects for wrapped externals (#1914)
  • 1935e9e chore(release): commonjs v28.0.7
  • e80d4b2 fix(commonjs): avoid hoisting dynamically required node: builtins under stric...
  • 0862902 chore(repo): update commonjs comment to clarify top-level this rewrite (#1888)
  • a433ac9 chore(release): commonjs v28.0.6
  • Additional commits viewable in compare view

Updates @rollup/plugin-json from 4.1.0 to 6.1.0

Changelog

Sourced from @​rollup/plugin-json's changelog.

v6.1.0

2023-12-12

Features

  • feat: add includeArbitraryNames option (#1641)

v6.0.1

2023-10-05

Bugfixes

  • fix: ensure rollup 4 compatibility #1595

v6.0.0

2022-12-17

Breaking Changes

  • fix: log more robustly when JSON parsing fails #1361

v5.0.2

2022-11-27

Updates

  • docs: correct minimatch to picomatch #1332

v5.0.1

2022-10-21

Updates

  • chore: update rollup dependencies (3038271)

v5.0.0

2022-10-10

Breaking Changes

  • fix: prepare for Rollup 3 #1291

Updates

... (truncated)

Commits
  • 8205497 chore(repo): automatically publish packages (#940)
  • 81781a8 chore(repo): fix the prepublishOnly scripts for most plugins
  • fba0a6b chore(repo): remove circle ci, add validate workflow, update deps (#867)
  • 0150c55 chore(repo): Add "directory" to package.json repository fields. (#826)
  • 621768b feat(commonjs)!: return the namespace by default when requiring ESM (#507)
  • 678125b chore(json): update dependencies
  • See full diff in compare view

Updates @rollup/plugin-node-resolve from 15.2.3 to 16.0.3

Changelog

Sourced from @​rollup/plugin-node-resolve's changelog.

v16.0.3

2025-10-13

Bugfixes

  • fix: resolve bare targets of package "imports" using export maps; avoid fileURLToPath(null) (#1908)

v16.0.2

2025-10-04

Bugfixes

  • fix: error thrown with empty entry (#1893)

v16.0.1

2025-03-11

Bugfixes

  • fix: add ignoreSideEffectsForRoot to exported interface (#1841)

v16.0.0

2024-12-15

Breaking Changes

  • feat!: set development or production condition (#1823)

v15.3.1

2024-12-15

Updates

  • refactor: replace test with includes (#1787)

v15.3.0

2024-09-23

Features

  • feat: allow preferBuiltins to be a function (#1694)

v15.2.4

... (truncated)

Commits
  • 764910a chore(release): node-resolve v16.0.3
  • 3569720 fix(node-resolve): resolve bare targets of package "imports" using export map...
  • 516ed1d chore(release): node-resolve v16.0.2
  • 7ad5057 fix(node-resolve): error thrown with empty entry (#1893)
  • e1a5ef9 chore(release): node-resolve v16.0.1
  • d455fff fix(node-resolve): add ignoreSideEffectsForRoot to exported interface (#1841)
  • d64f8d6 chore(release): node-resolve v16.0.0
  • ebd0969 feat(node-resolve)!: set development or production condition (#1823)
  • f89ca92 chore(release): node-resolve v15.3.1
  • 4cfc1c3 refactor(pluginutils,node-resolve): replace test with includes (#1787)
  • Additional commits viewable in compare view

Updates @types/jest from 29.5.14 to 30.0.0

Commits

Updates @types/node from 20.14.15 to 24.10.0

Commits

Updates eslint from 8.57.0 to 9.39.1

Release notes

Sourced from eslint's releases.

v9.39.1

Bug Fixes

  • 650753e fix: Only pass node to JS lang visitor methods (#20283) (Nicholas C. Zakas)

Documentation

  • 51b51f4 docs: add a section on when to use extends vs cascading (#20268) (Tanuj Kanti)
  • b44d426 docs: Update README (GitHub Actions Bot)

Chores

  • 92db329 chore: update @eslint/js version to 9.39.1 (#20284) (Francesco Trotta)
  • c7ebefc chore: package.json update for @​eslint/js release (Jenkins)
  • 61778f6 chore: update eslint-config-eslint dependency @​eslint/js to ^9.39.0 (#20275) (renovate[bot])
  • d9ca2fc ci: Add rangeStrategy to eslint group in renovate config (#20266) (唯然)
  • 009e507 test: fix version tests for ESLint v10 (#20274) (Milos Djermanovic)

v9.39.0

Features

  • cc57d87 feat: update error loc to key in no-dupe-class-members (#20259) (Tanuj Kanti)
  • 126552f feat: update error location in for-direction and no-dupe-args (#20258) (Tanuj Kanti)
  • 167d097 feat: update complexity rule to highlight only static block header (#20245) (jaymarvelz)

Bug Fixes

  • 15f5c7c fix: forward traversal step.args to visitors (#20253) (jaymarvelz)
  • 5a1a534 fix: allow JSDoc comments in object-shorthand rule (#20167) (Nitin Kumar)
  • e86b813 fix: Use more types from @​eslint/core (#20257) (Nicholas C. Zakas)
  • 927272d fix: correct Scope typings (#20198) (jaymarvelz)
  • 37f76d9 fix: use AST.Program type for Program node (#20244) (Francesco Trotta)
  • ae07f0b fix: unify timing report for concurrent linting (#20188) (jaymarvelz)
  • b165d47 fix: correct Rule typings (#20199) (jaymarvelz)
  • fb97cda fix: improve error message for missing fix function in suggestions (#20218) (jaymarvelz)

Documentation

  • d3e81e3 docs: Always recommend to include a files property (#20158) (Percy Ma)
  • 0f0385f docs: use consistent naming recommendation (#20250) (Alex M. Spieslechner)
  • a3b1456 docs: Update README (GitHub Actions Bot)
  • cf5f2dd docs: fix correct tag of no-useless-constructor (#20255) (Tanuj Kanti)
  • 10b995c docs: add TS options and examples for nofunc in no-use-before-define (#20249) (Tanuj Kanti)
  • 2584187 docs: remove repetitive word in comment (#20242) (reddaisyy)
  • 637216b docs: update CLI flags migration instructions (#20238) (jaymarvelz)
  • e7cda3b docs: Update README (GitHub Actions Bot)
  • 7b9446f docs: handle empty flags sections on the feature flags page (#20222) (sethamus)

Chores

  • dfe3c1b chore: update @eslint/js version to 9.39.0 (#20270) (Francesco Trotta)
  • 2375a6d chore: package.json update for @​eslint/js release (Jenkins)
  • a1f4e52 chore: update @eslint dependencies (#20265) (Francesco Trotta)
  • c7d3229 chore: update dependency @​eslint/core to ^0.17.0 (#20256) (renovate[bot])
  • 27549bc chore: update fuzz testing to not error if code sample minimizer fails (#20252) (Milos Djermanovic)
  • a1370ee ci: bump actions/setup-node from 5 to 6 (#20230) (dependabot[bot])
  • 9e7fad4 chore: add script to auto-generate eslint:recommended configuration (#20208) (唯然)

... (truncated)

Commits
  • e277281 9.39.1
  • 4cdf397 Build: changelog update for 9.39.1
  • 92db329 chore: update @eslint/js version to 9.39.1 (#20284)
  • c7ebefc chore: package.json update for @​eslint/js release
  • 650753e fix: Only pass node to JS lang visitor methods (#20283)
  • 51b51f4 docs: add a section on when to use extends vs cascading (#20268)
  • 61778f6 chore: update eslint-config-eslint dependency @​eslint/js to ^9.39.0 (#20275)
  • d9ca2fc ci: Add rangeStrategy to eslint group in renovate config (#20266)
  • 009e507 test: fix version tests for ESLint v10 (#20274)
  • b44d426 docs: Update README
  • Additional commits viewable in compare view

Updates eslint-config-prettier from 8.5.0 to 10.1.8

Release notes

Sourced from eslint-config-prettier's releases.

v10.1.8

republish latest version

Full Changelog: prettier/eslint-config-prettier@v10.1.5...v10.1.8

v10.1.5

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.4...v10.1.5

v10.1.4

Patch Changes

Full Changelog: prettier/eslint-config-prettier@v10.1.3...v10.1.4

v10.1.3

Patch Changes

New Contributors

Full Changelog: prettier/eslint-config-prettier@v10.1.2...v10.1.3

v10.1.2

Patch Changes

v10.1.1

Patch Changes

  • #309 eb56a5e Thanks @​JounQin! - fix: separate the /flat entry for compatibility

    For flat config users, the previous "eslint-config-prettier" entry still works, but "eslint-config-prettier/flat" adds a new name property for config-inspector, we just can't add it for the default entry for compatibility.

    See also prettier/eslint-config-prettier#308

    // before
    import eslintConfigPrettier from "eslint-config-prettier";
    // after
    import eslintConfigPrettier from "eslint-config-prettier/flat";

... (truncated)

Changelog

Sourced from eslint-config-prettier's changelog.

eslint-config-prettier

10.1.5

Patch Changes

10.1.4

Patch Changes

10.1.3

Patch Changes

10.1.2

Patch Changes

10.1.1

Patch Changes

  • #309 eb56a5e Thanks @​JounQin! - fix: separate the /flat entry for compatibility

    For flat config users, the previous "eslint-config-prettier" entry still works, but "eslint-config-prettier/flat" adds a new name property for config-inspector, we just can't add it for the default entry for compatibility.

    See also prettier/eslint-config-prettier#308

    // before
    import eslintConfigPrettier from "eslint-config-prettier";
    // after
    import eslintConfigPrettier from "eslint-config-prettier/flat";

10.1.0

Minor Changes

... (truncated)

Commits
  • 9b0b0a4 fix: release a new latest version
  • 4c94893 chore: release eslint-config-prettier (#333)
  • 60fef02 chore: add funding field into package.json (#332)
  • f55501f chore: release eslint-config-prettier (#329)
  • 50a8a22 chore(deps): update all dependencies (#330)
  • 94b4799 fix(cli): do not crash on no rules configured (#328)
  • cdc4a5c chore: release eslint-config-prettier (#326)
  • 4e95a1d fix: this package is commonjs, align its types correctly (#325)
  • 8911369 chore: release eslint-config-prettier (#322)
  • a8768bf chore(package): add homepage url (#321)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by jounqin, a new releaser for eslint-config-prettier since your current version.


Updates eslint-plugin-jest from 28.11.0 to 29.0.1

Release notes

Sourced from eslint-plugin-jest's releases.

v29.0.1

29.0.1 (2025-06-18)

Bug Fixes

  • update semantic-release config so new v29 major is marked as latest on npm (#1772) (531c8ba)

v29.0.0

29.0.0 (2025-06-18)

Bug Fixes

  • remove jest/no-alias-methods from styles config (d3bf1dc)

Features

  • drop support for [@typescript-eslint](https://github.com/typescript-eslint) v6 (fe61a40)
  • drop support for [@typescript-eslint](https://github.com/typescript-eslint) v7 (5ca65d3)
  • drop support for ESLint v7 (b06e7d0)
  • drop support for ESLint v8.x prior to v8.57.0 (d79765a)
  • drop support for Node v16 (aaf62cd)
  • drop support for Node v18 (598880c)
  • drop support for Node v20.x prior to v20.12.0 (2f2fb68)
  • drop support for Node v21 (a366393)
  • drop support for Node v23 (1fb1a67)
  • unbound-method: remove docs.recommended and docs.requiresTypeChecking properties (945651c)

BREAKING CHANGES

  • dropped support for ESLint v8.x prior to v8.57.0
  • dropped support for Node v20.x prior to v20.12.0
  • dropped support for Node v23
  • dropped support for Node v18
  • unbound-method: removed docs.recommend and docs.requiresTypeChecking from unbound-method
  • dropped support for @typescript-eslint v7
  • dropped support for @typescript-eslint v6
  • jest/no-alias-methods has been removed from the styles config as its already in the recommended config
  • dropped support for ESLint v7
  • dropped support for Node v21
  • dropped support for Node v16

v28.14.0

... (truncated)

Changelog

Sourced from eslint-plugin-jest's changelog.

29.0.1 (2025-06-18)

Bug Fixes

  • update semantic-release config so new v29 major is marked as latest on npm (#1772) (531c8ba)

29.0.0 (2025-06-18)

Bug Fixes

  • remove jest/no-alias-methods from styles config (d3bf1dc)

Features

  • drop support for [@typescript-eslint](https://github.com/typescript-eslint) v6 (fe61a40)
  • drop support for [@typescript-eslint](https://github.com/typescript-eslint) v7 (5ca65d3)
  • drop support for ESLint v7 (b06e7d0)
  • drop support for ESLint v8.x prior to v8.57.0 (d79765a)
  • drop support for Node v16 (aaf62cd)
  • drop support for Node v18 (598880c)
  • drop support for Node v20.x prior to v20.12.0 (2f2fb68)
  • drop support for Node v21 (a366393)
  • drop support for Node v23 (1fb1a67)
  • unbound-method: remove docs.recommended and docs.requiresTypeChecking properties (945651c)

BREAKING CHANGES

  • dropped support for ESLint v8.x prior to v8.57.0
  • dropped support for Node v20.x prior to v20.12.0
  • dropped support for Node v23
  • dropped support for Node v18
  • unbound-method: removed docs.recommend and docs.requiresTypeChecking from unbound-method
  • dropped support for @typescript-eslint v7
  • dropped support for @typescript-eslint v6
  • jest/no-alias-methods has been removed from the styles config as its already in the recommended config
  • dropped support for ESLint v7
  • dropped support for Node v21
  • dropped support for Node v16

28.14.0 (2025-06-15)

Features

  • unbound-method: mark docs.recommended and docs.requiresTypeChecking as deprecated (#1762) (30440ef)

... (truncated)

Commits
  • 0206a8a chore(release): 29.0.1 [skip ci]
  • 1a9d310 docs: remove duplicate changelog entry (again) (#1774)
  • f3deac1 chore(release): 29.0.0 [skip ci]
  • 6eade92 docs: remov...

    Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 10, 2025
@dependabot dependabot bot requested a review from a team as a code owner November 10, 2025 12:15
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 10, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/major-05184ff545 branch 2 times, most recently from 119da14 to d3c2036 Compare November 12, 2025 21:05
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/major-05184ff545 branch 3 times, most recently from 942558f to 5df6aa9 Compare November 24, 2025 11:50
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/major-05184ff545 branch 2 times, most recently from 95d3f13 to f776342 Compare November 27, 2025 10:54
Bumps the major group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bson](https://github.com/mongodb/js-bson) | `6.10.4` | `7.0.0` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.9.4` | `2.3.4` |
| [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) | `22.0.2` | `29.0.0` |
| [@rollup/plugin-json](https://github.com/rollup/plugins/tree/HEAD/packages/json) | `4.1.0` | `6.1.0` |
| [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) | `15.2.3` | `16.0.3` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `29.5.14` | `30.0.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.14.15` | `24.10.0` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.39.1` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `8.5.0` | `10.1.8` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.11.0` | `29.0.1` |
| [prettier](https://github.com/prettier/prettier) | `2.8.8` | `3.6.2` |
| [rimraf](https://github.com/isaacs/rimraf) | `3.0.2` | `6.1.0` |
| [rollup](https://github.com/rollup/rollup) | `2.79.2` | `4.53.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `4.7.4` | `5.9.3` |



Updates `bson` from 6.10.4 to 7.0.0
- [Release notes](https://github.com/mongodb/js-bson/releases)
- [Changelog](https://github.com/mongodb/js-bson/blob/main/HISTORY.md)
- [Commits](mongodb/js-bson@v6.10.4...v7.0.0)

Updates `@biomejs/biome` from 1.9.4 to 2.3.4
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.4/packages/@biomejs/biome)

Updates `@rollup/plugin-commonjs` from 22.0.2 to 29.0.0
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v29.0.0/packages/commonjs)

Updates `@rollup/plugin-json` from 4.1.0 to 6.1.0
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/json/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/url-v6.1.0/packages/json)

Updates `@rollup/plugin-node-resolve` from 15.2.3 to 16.0.3
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v16.0.3/packages/node-resolve)

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

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

Updates `eslint` from 8.57.0 to 9.39.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v8.57.0...v9.39.1)

Updates `eslint-config-prettier` from 8.5.0 to 10.1.8
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v8.5.0...v10.1.8)

Updates `eslint-plugin-jest` from 28.11.0 to 29.0.1
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.11.0...v29.0.1)

Updates `prettier` from 2.8.8 to 3.6.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@2.8.8...3.6.2)

Updates `rimraf` from 3.0.2 to 6.1.0
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v3.0.2...v6.1.0)

Updates `rollup` from 2.79.2 to 4.53.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v2.79.2...v4.53.2)

Updates `typescript` from 4.7.4 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v4.7.4...v5.9.3)

---
updated-dependencies:
- dependency-name: bson
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@rollup/plugin-commonjs"
  dependency-version: 29.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@rollup/plugin-json"
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@rollup/plugin-node-resolve"
  dependency-version: 16.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@types/jest"
  dependency-version: 30.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@types/node"
  dependency-version: 24.10.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: eslint
  dependency-version: 9.39.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: eslint-plugin-jest
  dependency-version: 29.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: prettier
  dependency-version: 3.6.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: rimraf
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: rollup
  dependency-version: 4.53.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/major-05184ff545 branch from f776342 to df2d42a Compare December 6, 2025 18:16
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.

1 participant