Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2025

Bumps the minor-development-deps group with 6 updates:

Package From To
@biomejs/biome 2.1.4 2.2.2
knip 5.62.0 5.63.0
nock 14.0.8 14.0.10
oclif 4.22.5 4.22.16
rollup 4.46.2 4.50.0
tsx 4.20.3 4.20.5

Updates @biomejs/biome from 2.1.4 to 2.2.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.2

2.2.2

Patch Changes

  • #7266 b270bb5 Thanks @​ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.

  • #7281 6436180 Thanks @​ematipico! - Fixed an issue where the function scanProject wouldn't work as expected.

  • #7285 1511d0c Thanks @​rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.

  • #7249 dff85c0 Thanks @​ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.

  • #7266 b270bb5 Thanks @​ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.

  • #7209 679b70e Thanks @​patrickshipe! - Resolved an overcorrection in useImportExtensions when importing explicit index files.

    Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.

    Example

    // Before
    -      import "./sub/index";
    +      import "./sub/index/index.js";
    // After
    
    
     import "./sub/index";
    
    
    
    
    
     import "./sub/index.js";
    
    
    

  • #7270 953f9c6 Thanks @​arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.

  • #7234 b7aa111 Thanks @​JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().

    The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.

  • #7283 0b07f45 Thanks @​ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using --config-path.

  • #7239 1d643d8 Thanks @​minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside .svelte.test.ts/js and .svelte.spec.ts/js files.

  • #7264 62fdbc8 Thanks @​ematipico! - Fixed a regression where when using --log-kind-pretty wasn't working anymore as expected.

  • #7244 660031b Thanks @​JeetuSuthar! - Fixed #7225: The noExtraBooleanCast rule now preserves parentheses when removing Boolean calls inside negations.

    // Before
    !Boolean(b0 && b1);
    // After
    !(b0 && b1); // instead of !b0 && b1

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.2

Patch Changes

  • #7266 b270bb5 Thanks @​ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.

  • #7281 6436180 Thanks @​ematipico! - Fixed an issue where the function scanProject wouldn't work as expected.

  • #7285 1511d0c Thanks @​rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.

  • #7249 dff85c0 Thanks @​ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.

  • #7266 b270bb5 Thanks @​ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.

  • #7209 679b70e Thanks @​patrickshipe! - Resolved an overcorrection in useImportExtensions when importing explicit index files.

    Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.

    Example

    // Before
    -      import "./sub/index";
    +      import "./sub/index/index.js";
    // After
    
    
     import "./sub/index";
    
    
    
    
    
     import "./sub/index.js";
    
    
    

  • #7270 953f9c6 Thanks @​arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.

  • #7234 b7aa111 Thanks @​JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().

    The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.

  • #7283 0b07f45 Thanks @​ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using --config-path.

  • #7239 1d643d8 Thanks @​minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside .svelte.test.ts/js and .svelte.spec.ts/js files.

  • #7264 62fdbc8 Thanks @​ematipico! - Fixed a regression where when using --log-kind-pretty wasn't working anymore as expected.

  • #7244 660031b Thanks @​JeetuSuthar! - Fixed #7225: The noExtraBooleanCast rule now preserves parentheses when removing Boolean calls inside negations.

    // Before
    !Boolean(b0 && b1);
    // After
    !(b0 && b1); // instead of !b0 && b1

... (truncated)

Commits

Updates knip from 5.62.0 to 5.63.0

Release notes

Sourced from knip's releases.

Release 5.63.0

  • Don't default-export null (should fix CI) (cacf1198a489e771a07ee1ac74b5c3e625ee0f1e)
  • Always remove ignored issues (#1184) (8deecde9b5f713a37d4609d81a60d9f036934d0b) - thanks @​wereHamster!
  • Add option to ignore class member implementations (#1174) (e132ab595b73bb840630d926a8a80ed9d4e46123) - thanks @​Desuuuu!
  • Update configuration.md (#1195) (15d05e2a1eb0985e2270b437b7b13a553534b4b5) - thanks @​Swimburger!
  • Astro: don't interpret files and folders beginning with underscores as entrypoints (#1187) (efac577948ae8759fb20920991db77e6de6a4367) - thanks @​Ivo-Evans!
  • Edit docs: enhanced-resolve → oxc-resolver (fdaa2d09b246523253a96eec84ac10d28fbebfbb)
  • Add support for negated ignoreWorkspaces (resolves #1191) (592bd7358d669fd01fea249e240e89d576a906bd)
  • Update dependencies (63dacd5aeec18edc749eef0c50e5e28444be6fa7)
  • Fix up formatly report handling (5d4d166be904437c17e2f6c1ec560a08c1ab5358)
  • Replace type-fest with two basic type defs (99ef1e47499620179e828ecfea64f57256b3749a)
  • docs: only add TSDoc for configuration (#1161) (377bf73cae916624a42fcc44636f775e19d6da5c) - thanks @​cylewaitforit!
  • Prioritize renamed re-exports (resolves #1196) (0e21c3b4c18808d38d82f6ccda011c8f7425918a)
  • Re-gen sponsorships chart (bda00d06a26f1c502c10c130f2b1e26923bba8d8)
  • Format (0de887b69ac79599976f1362b1dc0dd03b528f03)
  • Bump Node.js 20 → 24 in ecosystem integration tests (5b7b1cef323c003b9894a440abf1855c522cd37a)
  • Too many times "If this is a Svelte or Vue component.." (f71c91940b33422a962b0d27b629b8a9e47f4178)
  • Bail out early in lefthook plugin in production mode (50999c8e42884f2b7271ad2d8e9b13144cf1157a)
  • Add tsc commands, gitignore file, node version to repro templates (close #1197) (44faf38ee684d5a80cbb88046513bd2c8b415602)
  • Consistent namespaced issue storage (15ee3fe19557877b7c6185234360911aa8966046)
  • Bump engines.node for dev/docs (3237a4700bc9da9802145361756dfc93852f7ea7)
  • Edit docs (78cab1c763537932796e97eaf2b835ddddeb7063)
  • Add globalSetup and globalTeardown to playwright plugin (closes #1202) (1e112d857ea98011667e98150092caa15e05c50b)
  • Don't show success message for config errors (resolves #1200) (7dfd8361875806f4d11b085a15bdff3f03c8e14b)
  • Consider subpath import dependencies as referenced (resolves #1198) (05767f1e54d4968535a42c05d83bc2c3dca0f0ee)
  • Add support for binaries with all positionals as scripts (resolves #1183) (feb0f1b55ce43b23d94bfeae170d117b7aac3638)
  • Edit debug output label + test title (28ac5acd5a451340a1f88cb4c9fb24149cf693a1)
  • Fix isConsiderReferencedNS for TypeQuery nodes (resolves #1211) (bf29535b12acde62ca3ae1f489a123619e5b1a7d)
  • Binaries don't contain asterisks (e.g. script name wildcard) (1ddb0966eef7babb29d3ecc040cebf7d84e854b2)
  • Rspack plugin: add mts and cts file extension support (#1207) (abdd3aeefabb23eccc9bacd75dbf75acec43e08a) - thanks @​newswim!
  • [react-router] mark routes and entries as production entries (#1188) (8d96f3e64c5cc0ce02bc5f631a2417c728412ec8) - thanks @​rossipedia!
  • Minor refactor (cfa693f5168e737a283111d7e762728308edc6ab)
  • Simplify monorepro template (67184d431c263b33804b5d6e60c226a8f2db596b)
  • Remove links to discord server (4550d3d343548f6541486786dd6f9a453eeb689a)
  • Update issue templates (875e7f55d752d246703d7fd536a6363fe00a230b)
  • Add plugins + compiler matcher and a tailwind test (#1176) (ffd4187fc18ade93bf184d71eec2a2d216e65157)
  • Clean up plugin template (1d3b8465eb5bed6d092c62e5da0788e3b37b8c3b)
  • Add rslib plugin (placeholder) (resolve #870) (7e12ea7119ed0101ae2fdd7f4e0cb9e13ceaf2d0)
  • Fix up rsbuild plugin (resolve #1141) (69decdab1cbbadc40632f9983248390ef23a14ab)
  • Edit docs (3aa2074f5954cd23269324b607076d82a49dbe0c)
  • Partition negated glob patterns into fast-glob ignore option (520caecccf9af5b23ddb199a4b6d2fb2867f4b70)
  • Add test for export pattern with --include-libs (close #1199) (938b906a52df337b28bfcfe4cb9e95db8b8d469f)
  • feat: node-modules-inspector plugin (#1215) (439afa6b16b8525276a8ff3b80ba318cedb86450) - thanks @​lishaduck!
  • rm polar (0cd0aa965e15570589691673a25a9e4bc3feea23)
  • Add "Relative paths across workspaces" (close #1214) (1396eec083ea54001aa227443eec2f90d64066f9)
  • Add package-entry config hint (resolve #1159) (4f4eefbcd04b1ccccee306c2a9c309a147a37c0e)
  • Fix issue with git ignore pattern conversion (96713195ec35c7a88c2cf2cc53756da1ccc29e32)
  • Update PR template (3905e90ca270b4cedbbcf0805ab34fff09923d03)
  • Knip it before you ship it (ad30f8208dd19333d90ea532a02165c6d730cbea)
  • fix: resolve reporter and preprocessor absolute paths properly (#1216) (eefd4cf201d00575de48341de2ecbcfc9b957c66) - thanks @​scandar!

... (truncated)

Commits

Updates nock from 14.0.8 to 14.0.10

Release notes

Sourced from nock's releases.

v14.0.10

14.0.10 (2025-08-12)

Bug Fixes

  • Use Error objects instead of plain objects with replyWithError() (#2900) (f2a3389)

v14.0.9

14.0.9 (2025-08-07)

Bug Fixes

Commits
  • f2a3389 fix: Use Error objects instead of plain objects with replyWithError() (#2900)
  • 721ae1a chore(deps-dev): bump form-data from 4.0.2 to 4.0.4
  • 316c990 chore(deps-dev): bump tmp from 0.2.1 to 0.2.4
  • bc48f92 fix: address timeout issue with mocked timers (Revert #2880) (#2902)
  • See full diff in compare view

Updates oclif from 4.22.5 to 4.22.16

Release notes

Sourced from oclif's releases.

4.22.16

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.864.0 to 3.879.0 (1395e3f)

4.22.15

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.873.0 to 3.879.0 (a1e6013)

4.22.14

Bug Fixes

  • deps: bump @​oclif/plugin-not-found from 3.2.64 to 3.2.66 (e9bfac6)

4.22.13

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.864.0 to 3.873.0 (72ec982)

4.22.12

Bug Fixes

  • deps: bump @​oclif/plugin-not-found from 3.2.63 to 3.2.64 (48461be)

4.22.11

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.850.0 to 3.864.0 (a8fc7a7)

4.22.10

Bug Fixes

  • deps: bump @​oclif/plugin-help from 6.2.29 to 6.2.32 (4ac51b4)

4.22.9

Bug Fixes

  • deps: bump @​oclif/plugin-warn-if-update-available (21bebc3)

4.22.8

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.850.0 to 3.864.0 (332177d)

4.22.7

Bug Fixes

  • deps: bump @​oclif/plugin-not-found from 3.2.61 to 3.2.63 (dc094ef)

... (truncated)

Changelog

Sourced from oclif's changelog.

4.22.16 (2025-08-31)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.864.0 to 3.879.0 (1395e3f)

4.22.15 (2025-08-31)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.873.0 to 3.879.0 (a1e6013)

4.22.14 (2025-08-24)

Bug Fixes

  • deps: bump @​oclif/plugin-not-found from 3.2.64 to 3.2.66 (e9bfac6)

4.22.13 (2025-08-24)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.864.0 to 3.873.0 (72ec982)

4.22.12 (2025-08-17)

Bug Fixes

  • deps: bump @​oclif/plugin-not-found from 3.2.63 to 3.2.64 (48461be)

4.22.11 (2025-08-17)

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.850.0 to 3.864.0 (a8fc7a7)

4.22.10 (2025-08-17)

Bug Fixes

  • deps: bump @​oclif/plugin-help from 6.2.29 to 6.2.32 (4ac51b4)

4.22.9 (2025-08-10)

Bug Fixes

  • deps: bump @​oclif/plugin-warn-if-update-available (21bebc3)

4.22.8 (2025-08-10)

... (truncated)

Commits
  • d6fec72 chore(release): 4.22.16 [skip ci]
  • b623eaf Merge pull request #1855 from oclif/dependabot-npm_and_yarn-aws-sdk-client-s3...
  • 1395e3f fix(deps): bump @​aws-sdk/client-s3 from 3.864.0 to 3.879.0
  • daf4f4a chore(release): 4.22.15 [skip ci]
  • ec529ae Merge pull request #1856 from oclif/dependabot-npm_and_yarn-aws-sdk-client-cl...
  • a1e6013 fix(deps): bump @​aws-sdk/client-cloudfront from 3.873.0 to 3.879.0
  • 314cc30 Merge pull request #1847 from oclif/dependabot-npm_and_yarn-eslint-9.34.0
  • 1f1264a chore(release): 4.22.14 [skip ci]
  • 411f56b Merge pull request #1848 from oclif/dependabot-npm_and_yarn-oclif-plugin-not-...
  • 4407982 Merge pull request #1849 from oclif/dependabot-npm_and_yarn-types-shelljs-0.8.17
  • Additional commits viewable in compare view

Updates rollup from 4.46.2 to 4.50.0

Release notes

Sourced from rollup's releases.

v4.50.0

4.50.0

2025-08-31

Features

  • Support openharmony-arm64 platform (#6081)

Bug Fixes

  • Fix loading of extensionless imports in config files (#6084)

Pull Requests

v4.49.0

4.49.0

2025-08-27

Features

  • Allow config plugins to resolve imports first before deciding whether to treat them as external (#6038)

Pull Requests

  • #6038: feat: Run external check in cli/run/loadConfigFile.ts as last in order to allow handling of e.g. workspace package imports in TS monorepos correctly (@​stazz, @​TrickyPi)
  • #6082: Improve build pipeline performance (@​lukastaegert)

v4.48.1

4.48.1

2025-08-25

Bug Fixes

  • Correctly ignore white-space in JSX strings around line-breaks (#6051)

Pull Requests

v4.48.0

4.48.0

2025-08-23

... (truncated)

Changelog

Sourced from rollup's changelog.

4.50.0

2025-08-31

Features

  • Support openharmony-arm64 platform (#6081)

Bug Fixes

  • Fix loading of extensionless imports in config files (#6084)

Pull Requests

4.49.0

2025-08-27

Features

  • Allow config plugins to resolve imports first before deciding whether to treat them as external (#6038)

Pull Requests

  • #6038: feat: Run external check in cli/run/loadConfigFile.ts as last in order to allow handling of e.g. workspace package imports in TS monorepos correctly (@​stazz, @​TrickyPi)
  • #6082: Improve build pipeline performance (@​lukastaegert)

4.48.1

2025-08-25

Bug Fixes

  • Correctly ignore white-space in JSX strings around line-breaks (#6051)

Pull Requests

4.48.0

2025-08-23

Features

  • If configured, also keep unparseable import attributes of external dynamic imports in the output(#6071)

... (truncated)

Commits

Updates tsx from 4.20.3 to 4.20.5

Release notes

Sourced from tsx's releases.

v4.20.5

4.20.5 (2025-08-24)

Bug Fixes

  • handle ambiguous packages (796053a)

This release is also available on:

v4.20.4

4.20.4 (2025-08-12)

Bug Fixes


This release is also available on:

Commits
  • e6d1a47 docs: obfuscate aside classname
  • de2719d style: remove unused variable
  • 13f2954 chore: upgrade docs deps
  • 0504525 chore: upgrade manten
  • 132fdd8 test: assert require.cache
  • f057e7d test: require loop
  • a6f8f9f refactor: getFormat to handle all formats
  • 796053a fix: handle ambiguous packages
  • 471997a test: CJS & ESM race condition
  • a639836 fix: override Node's native TS formats (#733)
  • 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 minor-development-deps group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.1.4` | `2.2.2` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.62.0` | `5.63.0` |
| [nock](https://github.com/nock/nock) | `14.0.8` | `14.0.10` |
| [oclif](https://github.com/oclif/oclif) | `4.22.5` | `4.22.16` |
| [rollup](https://github.com/rollup/rollup) | `4.46.2` | `4.50.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.3` | `4.20.5` |


Updates `@biomejs/biome` from 2.1.4 to 2.2.2
- [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/[email protected]/packages/@biomejs/biome)

Updates `knip` from 5.62.0 to 5.63.0
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json)
- [Commits](https://github.com/webpro-nl/knip/commits/5.63.0/packages/knip)

Updates `nock` from 14.0.8 to 14.0.10
- [Release notes](https://github.com/nock/nock/releases)
- [Changelog](https://github.com/nock/nock/blob/main/CHANGELOG.md)
- [Commits](nock/nock@v14.0.8...v14.0.10)

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

Updates `rollup` from 4.46.2 to 4.50.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.46.2...v4.50.0)

Updates `tsx` from 4.20.3 to 4.20.5
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.3...v4.20.5)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: knip
  dependency-version: 5.63.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: nock
  dependency-version: 14.0.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
- dependency-name: oclif
  dependency-version: 4.22.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
- dependency-name: rollup
  dependency-version: 4.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: tsx
  dependency-version: 4.20.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 1, 2025
@dependabot dependabot bot requested a review from kanadgupta as a code owner September 1, 2025 05:55
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 1, 2025
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants