Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps esbuild from 0.25.11 to 0.25.12.

Release notes

Sourced from esbuild's releases.

v0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
  • Add support for the new @view-transition CSS rule (#4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @view-transition {
      navigation: auto;
      types: check;
    }
    /* Old output */
    @​view-transition { navigation: auto; types: check; }
    /* New output */
    @​view-transition {
    navigation: auto;
    types: check;

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
  • Add support for the new @view-transition CSS rule (#4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @view-transition {
      navigation: auto;
      types: check;
    }
    /* Old output */
    @​view-transition { navigation: auto; types: check; }
    /* New output */
    @​view-transition {
    navigation: auto;

... (truncated)

Commits
  • 208f539 publish 0.25.12 to npm
  • 5f03afd update release notes
  • 6b2ee78 minify: remove css rules containing empty :is()
  • f361deb add some additional known static methods
  • 07aa646 automatically mark "RegExp.escape()" calls as pure
  • 9039c46 simplify some call expression checks
  • 188944d add some additional known static methods
  • d3c67f9 fix #4310: add Iterator and other known globals
  • 4a51f0b fix: escape dev server breadcrumb hrefs properly (#4316)
  • 26b29ed fix #4315: @media deduplication bug edge case
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

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

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 3, 2025
@github-actions
Copy link

github-actions bot commented Nov 3, 2025

⚠️ Duplicate Dependencies (threshold: 1)

📦 Package 📋 Versions
eslint-visitor-keys
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • eslint@9.38.0
      • @eslint-community/eslint-utils@4.9.0
        • eslint-visitor-keys@3.4.3

  • @e18e/action-dependency-diff@0.0.1
    • eslint@9.38.0
      • @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.38.0
      • @eslint/eslintrc@3.3.1
        • ignore@5.3.2

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

brace-expansion
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • eslint@9.38.0
      • @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.46.2
      • ...
        • @typescript-eslint/typescript-estree@8.46.2
          • minimatch@9.0.5
            • brace-expansion@2.0.2

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

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

glob-parent
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • typescript-eslint@8.46.2
      • ...
        • @typescript-eslint/typescript-estree@8.46.2
          • fast-glob@3.3.3
            • glob-parent@5.1.2

  • @e18e/action-dependency-diff@0.0.1
    • eslint@9.38.0
      • glob-parent@6.0.2

picomatch
2 versions
  • @e18e/action-dependency-diff@0.0.1
    • typescript-eslint@8.46.2
      • ...
        • fast-glob@3.3.3
          • micromatch@4.0.8
            • picomatch@2.3.1

  • @e18e/action-dependency-diff@0.0.1
    • vitest@4.0.4
      • picomatch@4.0.3

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

@43081j 43081j merged commit f6d49c8 into main Nov 3, 2025
4 checks passed
@43081j 43081j deleted the dependabot/npm_and_yarn/esbuild-0.25.12 branch November 3, 2025 21:48
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