Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the development-dependencies group with 7 updates in the / directory:

Package From To
@actions/core 1.11.1 2.0.1
@eslint/js 9.39.1 9.39.2
@types/node 24.10.1 25.0.3
esbuild 0.25.12 0.27.2
eslint 9.39.1 9.39.2
typescript-eslint 8.49.0 8.50.1
vitest 4.0.15 4.0.16

Updates @actions/core from 1.11.1 to 2.0.1

Changelog

Sourced from @​actions/core's changelog.

2.0.1

  • Bump @​actions/exec from 1.1.1 to 2.0.0 #2199

2.0.0

  • Add support for Node 24 #2110
  • Bump @​actions/http-client from 2.0.1 to 3.0.0
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​actions/core since your current version.


Updates @eslint/js from 9.39.1 to 9.39.2

Release notes

Sourced from @​eslint/js's releases.

v9.39.2

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus)

Build Related

  • 506f154 build: add .scss files entry to knip (#20391) (Milos Djermanovic)

Chores

  • 7ca0af7 chore: upgrade to @eslint/js@9.39.2 (#20394) (Francesco Trotta)
  • c43ce24 chore: package.json update for @​eslint/js release (Jenkins)
  • 4c9858e ci: add v9.x-dev branch (#20382) (Milos Djermanovic)
Commits

Updates @types/node from 24.10.1 to 25.0.3

Commits

Updates esbuild from 0.25.12 to 0.27.2

Release notes

Sourced from esbuild's releases.

v0.27.2

  • Allow import path specifiers starting with #/ (#4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#4357, #4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    /* Old output (with --target=chrome110) */
    main {
    mask: url(x.png) center/5rem no-repeat;
    }
    /* New output (with --target=chrome110) */
    main {
    -webkit-mask: url(x.png) center/5rem no-repeat;
    mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#4176, #4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }
    // Old output (with --minify)
    switch(x){case 0:foo();break;case 1:default:bar()}
    // New output (with --minify)

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.2

  • Allow import path specifiers starting with #/ (#4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#4357, #4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    /* Old output (with --target=chrome110) */
    main {
    mask: url(x.png) center/5rem no-repeat;
    }
    /* New output (with --target=chrome110) */
    main {
    -webkit-mask: url(x.png) center/5rem no-repeat;
    mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#4176, #4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }
    // Old output (with --minify)
    switch(x){case 0:foo();break;case 1:default:bar()}

... (truncated)

Commits
  • cd83297 publish 0.27.2 to npm
  • 2759721 additional tests for switch with break
  • fd2b4b3 update release notes
  • c8d93a7 fix #4357: -webkit- prefix for mask shorthand (#4358)
  • 92ff12c compat table: update @types/node
  • a35eceb compat table: fix a type error with the new types
  • f598984 fix make compat-table to install dependencies
  • f7f6df0 release notes for #4361
  • 6f8ec15 fix: allow subpath imports that start with #/ (#4361)
  • f7ae61f minify some switch statements to if-else statement
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for esbuild since your current version.


Updates eslint from 9.39.1 to 9.39.2

Release notes

Sourced from eslint's releases.

v9.39.2

Bug Fixes

  • 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus)

Build Related

  • 506f154 build: add .scss files entry to knip (#20391) (Milos Djermanovic)

Chores

  • 7ca0af7 chore: upgrade to @eslint/js@9.39.2 (#20394) (Francesco Trotta)
  • c43ce24 chore: package.json update for @​eslint/js release (Jenkins)
  • 4c9858e ci: add v9.x-dev branch (#20382) (Milos Djermanovic)
Commits

Updates typescript-eslint from 8.49.0 to 8.50.1

Release notes

Sourced from typescript-eslint's releases.

v8.50.1

8.50.1 (2025-12-22)

🩹 Fixes

  • eslint-plugin: [method-signature-style] ignore methods that return this (#11813)
  • eslint-plugin: [no-unnecessary-type-assertion] correct handling of undefined vs. void (#11826)

❤️ Thank You

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

v8.50.0

8.50.0 (2025-12-15)

🚀 Features

  • eslint-plugin: [no-useless-default-assignment] add rule (#11720)

❤️ Thank You

  • Josh Goldberg ✨
  • Ulrich Stark

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

Changelog

Sourced from typescript-eslint's changelog.

8.50.1 (2025-12-22)

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.50.0 (2025-12-15)

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.15 to 4.0.16

Release notes

Sourced from vitest's releases.

v4.0.16

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • b46d744 chore: release v4.0.16
  • 84a3062 fix(browser): string formatting bug when including placeholders in console.lo...
  • f7f6aa8 fix: log deprecated test.poolOptions if it's set (#9226)
  • 568513c fix: allow inlining fully dynamic import (#9137)
  • 5d26b87 fix(experimental): export setupEnvironment for custom pools (#9187)
  • f17eb42 refactor: avoid using isFileServingAllowed from Vite (#9160)
  • 78cfbf9 fix: avoid crashing on process.versions stub (#9174)
  • da0ade2 fix: fix browser mode default testTimeout back to 15 seconds (#9167)
  • See full diff 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

…ectory with 7 updates

Bumps the development-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `1.11.1` | `2.0.1` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.1` | `9.39.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.1` | `25.0.3` |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.12` | `0.27.2` |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.49.0` | `8.50.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.15` | `4.0.16` |



Updates `@actions/core` from 1.11.1 to 2.0.1
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/@actions/artifact@2.0.1/packages/core)

Updates `@eslint/js` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v9.39.2/packages/js)

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

Updates `esbuild` from 0.25.12 to 0.27.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.12...v0.27.2)

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

Updates `typescript-eslint` from 8.49.0 to 8.50.1
- [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.50.1/packages/typescript-eslint)

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

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-version: 2.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@eslint/js"
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: esbuild
  dependency-version: 0.27.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.50.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: vitest
  dependency-version: 4.0.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

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 Dec 22, 2025
@github-actions
Copy link

⚠️ Duplicate Dependencies (threshold: 1)

📦 Package 📋 Versions
@actions/http-client
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • @actions/github@6.0.1
      • @actions/http-client@2.2.3

  • @e18e/action-dependency-diff@0.0.1
    • @actions/core@2.0.1
      • @actions/http-client@3.0.0

eslint-visitor-keys
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • eslint@9.39.2
      • @eslint-community/eslint-utils@4.9.0
        • eslint-visitor-keys@3.4.3

  • @e18e/action-dependency-diff@0.0.1
    • eslint@9.39.2
      • @eslint/eslintrc@3.3.1
        • espree@10.4.0
          • eslint-visitor-keys@4.2.1

@octokit/openapi-types
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • @actions/github@6.0.1
      • @octokit/plugin-paginate-rest@9.2.2
        • @octokit/types@12.6.0
          • @octokit/openapi-types@20.0.0

  • @e18e/action-dependency-diff@0.0.1
    • @actions/github@6.0.1
      • ...
        • @octokit/endpoint@9.0.6
          • @octokit/types@13.10.0
            • @octokit/openapi-types@24.2.0

@octokit/types
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • @actions/github@6.0.1
      • @octokit/plugin-paginate-rest@9.2.2
        • @octokit/types@12.6.0

  • @e18e/action-dependency-diff@0.0.1
    • @actions/github@6.0.1
      • ...
        • @octokit/request@8.4.1
          • @octokit/endpoint@9.0.6
            • @octokit/types@13.10.0

ignore
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • eslint@9.39.2
      • @eslint/eslintrc@3.3.1
        • ignore@5.3.2

  • @e18e/action-dependency-diff@0.0.1
    • typescript-eslint@8.50.1
      • @typescript-eslint/eslint-plugin@8.50.1
        • ignore@7.0.5

brace-expansion
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • eslint@9.39.2
      • @eslint/config-array@0.21.1
        • minimatch@3.1.2
          • brace-expansion@1.1.12

  • @e18e/action-dependency-diff@0.0.1
    • typescript-eslint@8.50.1
      • ...
        • @typescript-eslint/typescript-estree@8.50.1
          • minimatch@9.0.5
            • brace-expansion@2.0.2

minimatch
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • eslint@9.39.2
      • @eslint/config-array@0.21.1
        • minimatch@3.1.2

  • @e18e/action-dependency-diff@0.0.1
    • typescript-eslint@8.50.1
      • @typescript-eslint/eslint-plugin@8.50.1
        • @typescript-eslint/type-utils@8.50.1
          • @typescript-eslint/typescript-estree@8.50.1
            • minimatch@9.0.5

💡 To find out what depends on a specific package, run: npm ls example-package

📊 Dependency Size Changes

Warning

This PR adds 589.9 kB of new dependencies, which exceeds the threshold of 100 kB.

📦 Package 📏 Size
@esbuild/linux-x64@0.27.2 11.1 MB
eslint@9.39.2 3 MB
rollup@4.54.0 2.8 MB
@types/node@25.0.3 2.4 MB
vite@7.3.0 2.2 MB
@rollup/rollup-linux-x64-gnu@4.54.0 2.1 MB
@typescript-eslint/eslint-plugin@8.50.1 2 MB
vitest@4.0.16 1.5 MB
@typescript-eslint/scope-manager@8.50.1 385.8 kB
@typescript-eslint/typescript-estree@8.50.1 364.6 kB
@typescript-eslint/utils@8.50.1 195.3 kB
@vitest/utils@4.0.16 180 kB
@vitest/runner@4.0.16 142.2 kB
esbuild@0.27.2 135.3 kB
@vitest/mocker@4.0.16 125.2 kB
@typescript-eslint/types@8.50.1 111.6 kB
@vitest/expect@4.0.16 99.7 kB
@actions/core@2.0.1 96.1 kB
@typescript-eslint/type-utils@8.50.1 90.1 kB
@actions/http-client@3.0.0 77.2 kB
@vitest/snapshot@4.0.16 62.7 kB
@actions/exec@2.0.0 57 kB
@vitest/pretty-format@4.0.16 45.1 kB
@actions/io@2.0.0 40.6 kB
@vitest/spy@4.0.16 34.6 kB
typescript-eslint@8.50.1 31.2 kB
@standard-schema/spec@1.1.0 22.6 kB
@eslint/js@9.39.2 15.8 kB
@typescript-eslint/project-service@8.50.1 13.7 kB
@typescript-eslint/visitor-keys@8.50.1 13.2 kB
@typescript-eslint/parser@8.50.1 12.9 kB
@typescript-eslint/tsconfig-utils@8.50.1 9 kB
@typescript-eslint/tsconfig-utils@8.49.0 -9 kB
@typescript-eslint/parser@8.49.0 -12.9 kB
@typescript-eslint/visitor-keys@8.49.0 -13.2 kB
@typescript-eslint/project-service@8.49.0 -13.7 kB
@eslint/js@9.39.1 -15.8 kB
@standard-schema/spec@1.0.0 -25 kB
typescript-eslint@8.49.0 -31.2 kB
@vitest/spy@4.0.15 -34.6 kB
@actions/io@1.1.3 -37.1 kB
@vitest/pretty-format@4.0.15 -45.1 kB
@actions/exec@1.1.1 -55.4 kB
@vitest/snapshot@4.0.15 -62.7 kB
@typescript-eslint/type-utils@8.49.0 -90.1 kB
@actions/core@1.11.1 -90.9 kB
@vitest/expect@4.0.15 -99.7 kB
@typescript-eslint/types@8.49.0 -111.6 kB
@vitest/mocker@4.0.15 -125.2 kB
esbuild@0.25.12 -135.3 kB
@vitest/runner@4.0.15 -141.9 kB
@vitest/utils@4.0.15 -179.5 kB
@typescript-eslint/utils@8.49.0 -195.3 kB
@typescript-eslint/typescript-estree@8.49.0 -364.6 kB
@typescript-eslint/scope-manager@8.49.0 -385.8 kB
vitest@4.0.15 -1.5 MB
@typescript-eslint/eslint-plugin@8.49.0 -2 MB
@rollup/rollup-linux-x64-gnu@4.53.3 -2.2 MB
vite@7.2.7 -2.2 MB
@types/node@24.10.1 -2.5 MB
rollup@4.53.3 -2.8 MB
eslint@9.39.1 -3 MB
@esbuild/linux-x64@0.25.12 -10.4 MB

Total size change: 589.9 kB

@43081j 43081j merged commit 4a6f292 into main Dec 22, 2025
4 checks passed
@43081j 43081j deleted the dependabot/npm_and_yarn/development-dependencies-17ecf93960 branch December 22, 2025 21:25
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.

2 participants