Skip to content

chore(deps): update dependency esbuild to v0.27.7#5229

Merged
renovate[bot] merged 1 commit intomasterfrom
renovate/esbuild-0.x
Apr 7, 2026
Merged

chore(deps): update dependency esbuild to v0.27.7#5229
renovate[bot] merged 1 commit intomasterfrom
renovate/esbuild-0.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 7, 2026

This PR contains the following updates:

Package Change Age Confidence
esbuild 0.27.50.27.7 age confidence

Release Notes

evanw/esbuild (esbuild)

v0.27.7

Compare Source

  • Fix lowering of define semantics for TypeScript parameter properties (#​4421)

    The previous release incorrectly generated class fields for TypeScript parameter properties even when the configured target environment does not support class fields. With this release, the generated class fields will now be correctly lowered in this case:

    // Original code
    class Foo {
      constructor(public x = 1) {}
      y = 2
    }
    
    // Old output (with --loader=ts --target=es2021)
    class Foo {
      constructor(x = 1) {
        this.x = x;
        __publicField(this, "y", 2);
      }
      x;
    }
    
    // New output (with --loader=ts --target=es2021)
    class Foo {
      constructor(x = 1) {
        __publicField(this, "x", x);
        __publicField(this, "y", 2);
      }
    }

Configuration

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

🚦 Automerge: Enabled.

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 April 7, 2026 18:30
@renovate renovate bot added bot dependencies Pull requests that update a dependency file labels Apr 7, 2026
@renovate renovate bot enabled auto-merge (squash) April 7, 2026 18:30
@renovate renovate bot merged commit 20497cf into master Apr 7, 2026
3 checks passed
@renovate renovate bot deleted the renovate/esbuild-0.x branch April 7, 2026 18:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bot dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants