Skip to content

chore(deps): update dependency esbuild to v0.25.10#87

Merged
dragon3 merged 1 commit into
mainfrom
renovate/esbuild-0.x
Oct 8, 2025
Merged

chore(deps): update dependency esbuild to v0.25.10#87
dragon3 merged 1 commit into
mainfrom
renovate/esbuild-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Sep 20, 2025

This PR contains the following updates:

Package Change Age Confidence
esbuild 0.25.9 -> 0.25.10 age confidence

Release Notes

evanw/esbuild (esbuild)

v0.25.10

Compare Source

  • Fix a panic in a minification edge case (#​4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
  • Fix @supports nested inside pseudo-element (#​4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @​supports (color: blue) { color: blue }
    }
    
    /* Old output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
       {
        color: blue;
      }
    }
    
    /* New output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
      ::placeholder {
        color: blue;
      }
    }

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested a review from a team as a code owner September 20, 2025 17:47
@renovate renovate Bot force-pushed the renovate/esbuild-0.x branch 2 times, most recently from 3d54d89 to 940c5f1 Compare September 29, 2025 07:51
@dragon3 dragon3 self-assigned this Oct 8, 2025
@renovate renovate Bot force-pushed the renovate/esbuild-0.x branch from 940c5f1 to 9c6ce73 Compare October 8, 2025 06:42
@renovate renovate Bot force-pushed the renovate/esbuild-0.x branch from 9c6ce73 to 448626e Compare October 8, 2025 06:44
Copy link
Copy Markdown
Contributor

@dragon3 dragon3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@dragon3 dragon3 merged commit de7bbbb into main Oct 8, 2025
7 checks passed
@dragon3 dragon3 deleted the renovate/esbuild-0.x branch October 8, 2025 06:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant