Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 8, 2025

Bumps the all group with 11 updates:

Package From To
@commitlint/cli 20.1.0 20.2.0
@commitlint/config-conventional 20.0.0 20.2.0
@vitest/coverage-v8 4.0.14 4.0.15
@vitest/ui 4.0.14 4.0.15
browserslist 4.28.0 4.28.1
esbuild 0.27.0 0.27.1
knip 5.71.0 5.72.0
lefthook 2.0.4 2.0.9
prettier 3.7.3 3.7.4
typescript-eslint 8.48.0 8.49.0
vitest 4.0.14 4.0.15

Updates @commitlint/cli from 20.1.0 to 20.2.0

Release notes

Sourced from @​commitlint/cli's releases.

v20.2.0

20.2.0 (2025-12-05)

Features

Chore, docs, etc

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.1.0...v20.2.0

Changelog

Sourced from @​commitlint/cli's changelog.

20.2.0 (2025-12-05)

Note: Version bump only for package @​commitlint/cli

Commits

Updates @commitlint/config-conventional from 20.0.0 to 20.2.0

Release notes

Sourced from @​commitlint/config-conventional's releases.

v20.2.0

20.2.0 (2025-12-05)

Features

Chore, docs, etc

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.1.0...v20.2.0

v20.1.0

20.1.0 (2025-09-30)

Features

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.0.0...v20.1.0

Changelog

Sourced from @​commitlint/config-conventional's changelog.

20.2.0 (2025-12-05)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @vitest/coverage-v8 from 4.0.14 to 4.0.15

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @vitest/ui from 4.0.14 to 4.0.15

Release notes

Sourced from @​vitest/ui's releases.

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates browserslist from 4.28.0 to 4.28.1

Release notes

Sourced from browserslist's releases.

4.28.1

  • Removed Baseline warning since we have it own warning.
Changelog

Sourced from browserslist's changelog.

4.28.1

  • Removed Baseline warning since we have it own warning.

4.48.0

4.27.0

  • Added BROWSERSLIST_TRACE_WARNING environment variable.

4.26.3

4.26.2

  • Fixed baseline-browser-mapping version requirement.

4.26.1

  • Updated Firefox ESR.

4.26.0

4.25.4

4.25.3

4.25.2

  • Fixed Node.js --permission support (by @​broofa).

4.25.1

  • Updated Firefox ESR.

4.25.0

  • Added cover 95% in browserslist-config-mycompany stats query support.

4.24.5

  • Fixed support ESM shared config.
  • Fixed docs (by Alexander Pushkov & マルコメ).

4.24.4

4.24.3

4.24.2

  • Clarify outdated caniuse-lite warning text.

... (truncated)

Commits

Updates esbuild from 0.27.0 to 0.27.1

Release notes

Sourced from esbuild's releases.

v0.27.1

  • Fix bundler bug with var nested inside if (#4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}

  • Inline IIFEs containing a single expression (#4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    // New output (with --minify)
    const foo=()=>{console.log(x())};

  • The minifier now strips empty finally clauses (#4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.1

  • Fix bundler bug with var nested inside if (#4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}

  • Inline IIFEs containing a single expression (#4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    // New output (with --minify)
    const foo=()=>{console.log(x())};

  • The minifier now strips empty finally clauses (#4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

... (truncated)

Commits

Updates knip from 5.71.0 to 5.72.0

Release notes

Sourced from knip's releases.

Release 5.72.0

  • Resolve setupFiles and globalSetup from config file dir (resolve #1317) (ff8c33d20e1cfbd9eaa7d7f963e5ddbf99678770)
  • Add SASS/SCSS compiler (resolve #1292) (333ace375f74357b62d1a6b31260fd29f54b5932)
  • Update compilers docs (2a5be2d48fbde70f82063dfbba23ceaf17b30291)
  • Move & update dependencies (9fb19b3d7dc3c6f2e991feab83e7a0cdc189a476)
  • Add .vscode/extensions.json (77433bc68590e1695084cb3829c8743fd86b1762)
  • Keep tracing exports/members through pseudo re-exports + conditions (resolve #1371) (fb3cc39e8d59950ad721b5b6ba10d620d55afad2)
  • Defer work for a minor perf optimization (e0a464900b73e8a917db86a03d060b52f6dd261c)
  • Remove obsolete .prettierignore (9cd40e1b1702ffc112aa56b8533d7208e7ecb40e)
  • Add docs re. coding agents + AGENTS.md (262dacf37cec57f957b0fda2010bc5caca25ebc3)
  • Add some docs/hints to code (8237a304690f12fbfd9a0589376a36d7b12bce52)
  • Ignore void lint issue in explorer helper type (33d7497809b6458044082d1505d1f750d98eb2b4)
  • Ignore dependencies used by IDE extensions (fb988139784eed1e1e4ac4c79b46dfd1608762d6)
  • Update rsbuild plugin to check preEntry (#1373) (b542cb7a92d67d0a5ffad2404c23cd1b6abbab5d) - thanks @​MichielHegemans!
  • Support cli args for config file in vite plugin (ab01e82e3378bf89d45a2edf245004b92460e967)
  • Refactor traceRefs out and improve export tracer (62d574eb3b6f744fa698668ef2bbae2d61fff80d)
  • Improve & add importAliases to refs tracker (f90eed6d1f612a169c8ed677a53c3028c0e2eb44)
  • Make non-pkg specifiers relative in SCSS compiler (c77ea4431eafef46ee80494d52e2f1a48379cd08)
  • Allow integration test patch (733bc92771f37ff20a3260a03d56128d3e10f8dd)
  • Add knip config patch to eslint integration test (ff6979403704a9953894958b3603532c312434d7)
  • Work that tracer ✨ (d79c1f6239683e50174f353ad2a2fe1145df6dbe)
  • Allow multiple --performance-fn (5be3cdc3908d55585e915b68889a6e065edc7034)
  • Add extensionAlias (ebf3ff3ac0775a57cfc16bfbf90dd425c75bf7d3)
  • Sort files for trace output & add diff test helper (4c22ec32d5cf3432f2003d9df5f2ffa9739e568f)
  • Bump oxc-resolver to 11.15.0 (ff4d0899e98331890bfcfc38e68ed45f0262003b)
  • Add tsconfig: auto and use resolveFileSync method (b2f213d4db15050e22a7b8f973a443b89dcb632c)
  • Use containingFile (not dir) (ed0cdacf972b44d57bcf739a39bbffc4bec61c77)
  • Add missing tsconfig.json files (141d5c81d5fb3f3c98c729596d3fac979dfeef63)
  • Add test for tsconfig rootDirs (close #873) (eeb41744983bf96c88091afdfb0bbc8fded7c287)
  • Keep using sync resolver outside ts module scope (a3fd7dd42b3e34b68d23e3028ddc92e07266bcc1)
  • Add index to mem table (96edd57bf2eb98771577c106347fa45ca4c7e02b)
  • Update export tracer screenshots (018837137882deea5bc9206ba716edd0a49255c8)
  • Add SVGR plugin (3b564dd28425c2c95d129b1f90a095d5dadf532b)
  • Update command to create plugin in help text (6385b2513ba012b4f479ec8292d766f01a771198)
  • Format (dee9795b114c9d341fc3f41c2a3268b5568aa1cb)
  • Add support for viteConfigPath in storybook plugin (ec9d6ccf647e305758cbb03df6f4ddc188e5f98b)
  • Add impl walk-through & new plugin instructions (4f0c8b100d718d6e292e24ccf9b7717fefd44f19)
  • Minor refactor formatTrace (143755e9c916dd884b01da9740a98905152bdd26)
Commits
  • 12152fc Release 5.72.0
  • 143755e Minor refactor formatTrace
  • ec9d6cc Add support for viteConfigPath in storybook plugin
  • dee9795 Format
  • 6385b25 Update command to create plugin in help text
  • 3b564dd Add SVGR plugin
  • 96edd57 Add index to mem table
  • a3fd7dd Keep using sync resolver outside ts module scope
  • eeb4174 Add test for tsconfig rootDirs (close #873)
  • 141d5c8 Add missing tsconfig.json files
  • Additional commits viewable in compare view

Updates lefthook from 2.0.4 to 2.0.9

Release notes

Sourced from lefthook's releases.

v2.0.9

Changelog

  • d2fa5d9f31c57a79d2354654de1939272006fc88 chore: remove unnecessary .svg executable permissions (#1219)
  • 0792c2c03a98c306fd9fd762040e9f1d237fb1b1 chore: upgrade golangci-lint to 2.7.1, add godoclint (#1223)
  • 0b9f1936ddf18488cb95078e7a3a6f85724a3878 fix: check and report Scanner errors (#1222)
  • 97a7399c008be5e646538317f1701a1613be587a fix: do not try to hash-object directories (#1220)
  • 16fe016a8e25f9b4d15aa2848fb516d4842618be fix: improve separation of options and filenames for more git commands (#1225)
  • 07c5ccbd254cdad1135c260ac797191709382560 fix: skip pre commit hook if no staged files (#1229)
  • 98699c83d34fc36fa4f29d669a0ab4f3ec48d991 refactor: command executor tweaks (#1224)
  • 76cc6de4fd048d1de4ec4bc45930e780fd7e549a refactor: remove some redundant code (#1221)

v2.0.8

Changelog

  • 0324368284009ac0946a529b021495ad6f7377cc fix: do not escape custom templates in command replacement (#1213)

v2.0.7

Changelog

  • 88a192375815e0838850e72dd1ed5c6581792b8a fix: prefer using lefthook from the $PATH (#1211)

v2.0.6

Changelog

  • 4bb758673d1f77b399cce2582845752a3c8d2d93 feat: save original executable location in hooks (#1208)

v2.0.5

Changelog

  • 11306c9bed69501115a7c763ae4acd713016a36b chore(release): publish artifact attestations (#1189)
  • acdabe50afc5c7c3145f1ca642b5533c308df6e2 chore: upgrade golangci-lint to 2.6.1, add modernize (#1190)
  • 92033167ac4b3e1a8f0cd66c0075448d863bdf6a deps: November 2025 (#1200)
  • 57b10946714197e5116cb5d4492c91b9172ef4b3 feat: add optional args to scripts (#1206)
Changelog

Sourced from lefthook's changelog.

2.0.9 (2025-12-08)

  • fix: skip pre commit hook if no staged files (#1229) by @​mrexox
  • fix: do not try to hash-object directories (#1220) by @​scop
  • fix: check and report Scanner errors (#1222) by @​scop
  • refactor: command executor tweaks (#1224) by @​scop
  • refactor: remove some redundant code (#1221) by @​scop
  • fix: improve separation of options and filenames for more git commands (#1225) by @​scop
  • chore: upgrade golangci-lint to 2.7.1, add godoclint (#1223) by @​scop
  • chore: remove unnecessary .svg executable permissions (#1219) by @​scop

2.0.8 (2025-12-05)

2.0.7 (2025-12-04)

2.0.6 (2025-12-03)

2.0.5 (2025-12-02)

Commits
  • c951a26 2.0.9: skip pre-commit hook if staged only deleted files
  • 07c5ccb fix: skip pre commit hook if no staged files (#1229)
  • 97a7399 fix: do not try to hash-object directories (#1220)
  • 0b9f193 fix: check and report Scanner errors (#1222)
  • 98699c8 refactor: command executor tweaks (#1224)
  • 76cc6de refactor: remove some redundant code (#1221)
  • 16fe016 fix: improve separation of options and filenames for more git commands (#1225)
  • 0792c2c chore: upgrade golangci-lint to 2.7.1, add godoclint (#1223)
  • d2fa5d9 chore: remove unnecessary .svg executable permissions (#1219)
  • 22171e0 2.0.8: fix templates replacing
  • Additional commits viewable in compare view

Updates prettier from 3.7.3 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits

Updates typescript-eslint from 8.48.0 to 8.49.0

Release notes

Sourced from typescript-eslint's releases.

v8.49.0

8.49.0 (2025-12-08)

🚀 Features

  • eslint-plugin: use Intl.Segmenter instead of graphemer (#11804)

🩹 Fixes

  • deps: update dependency prettier to v3.7.2 (#11820)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.48.1

8.48.1 (2025-12-02)

⏪ Reverts

  • eslint-plugin: revert "[no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)" (#11812)

🩹 Fixes

  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.49.0 (2025-12-08)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.48.1 (2025-12-02)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates vitest from 4.0.14 to 4.0.15

Release notes

Sourced from vitest's releases.

v4.0.15

   🚀 Experimental Features

   🐞 Bug Fixes

Bumps the all group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `20.1.0` | `20.2.0` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `20.0.0` | `20.2.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.0.14` | `4.0.15` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.0.14` | `4.0.15` |
| [browserslist](https://github.com/browserslist/browserslist) | `4.28.0` | `4.28.1` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.0` | `0.27.1` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.71.0` | `5.72.0` |
| [lefthook](https://github.com/evilmartians/lefthook) | `2.0.4` | `2.0.9` |
| [prettier](https://github.com/prettier/prettier) | `3.7.3` | `3.7.4` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.48.0` | `8.49.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.14` | `4.0.15` |


Updates `@commitlint/cli` from 20.1.0 to 20.2.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.2.0/@commitlint/cli)

Updates `@commitlint/config-conventional` from 20.0.0 to 20.2.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.2.0/@commitlint/config-conventional)

Updates `@vitest/coverage-v8` from 4.0.14 to 4.0.15
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.15/packages/coverage-v8)

Updates `@vitest/ui` from 4.0.14 to 4.0.15
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.15/packages/ui)

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

Updates `esbuild` from 0.27.0 to 0.27.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.0...v0.27.1)

Updates `knip` from 5.71.0 to 5.72.0
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/5.72.0/packages/knip)

Updates `lefthook` from 2.0.4 to 2.0.9
- [Release notes](https://github.com/evilmartians/lefthook/releases)
- [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md)
- [Commits](evilmartians/lefthook@v2.0.4...v2.0.9)

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

Updates `typescript-eslint` from 8.48.0 to 8.49.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.49.0/packages/typescript-eslint)

Updates `vitest` from 4.0.14 to 4.0.15
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.15/packages/vitest)

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-version: 20.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 20.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@vitest/ui"
  dependency-version: 4.0.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: browserslist
  dependency-version: 4.28.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: esbuild
  dependency-version: 0.27.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: knip
  dependency-version: 5.72.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: lefthook
  dependency-version: 2.0.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript-eslint
  dependency-version: 8.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: vitest
  dependency-version: 4.0.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

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 Dec 8, 2025
@nihalgonsalves nihalgonsalves merged commit b367eb7 into main Dec 8, 2025
1 check passed
@nihalgonsalves nihalgonsalves deleted the dependabot/npm_and_yarn/all-dd89494daf branch December 8, 2025 19:30
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