Skip to content

build(deps-dev): bump esbuild from 0.27.4 to 0.27.7 in /sdk#683

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/sdk/esbuild-0.27.7
Closed

build(deps-dev): bump esbuild from 0.27.4 to 0.27.7 in /sdk#683
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/sdk/esbuild-0.27.7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor

Bumps esbuild from 0.27.4 to 0.27.7.

Release notes

Sourced from esbuild's releases.

v0.27.7

  • 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);
    }
    }

v0.27.5

  • Fix for an async generator edge case (#4401, #4417)

    Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code:

    async function* inner() { yield 1; yield 2 }
    async function* outer() { yield* inner() }
    let gen = outer()
    for await (let x of [gen.next(), gen.next()]) console.log(x)

    Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with --supported:async-generator=false). The transformation should be fixed starting with this release.

    This fix was contributed by @​2767mr.

  • Fix a regression when metafile is enabled (#4420, #4418)

    This release fixes a regression introduced by the previous release. When metafile: true was enabled in esbuild's JavaScript API, builds with build errors were incorrectly throwing an error about an empty JSON string instead of an object containing the build errors.

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.7

  • 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);
    }
    }

0.27.5

  • Fix for an async generator edge case (#4401, #4417)

    Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code:

    async function* inner() { yield 1; yield 2 }
    async function* outer() { yield* inner() }
    let gen = outer()
    for await (let x of [gen.next(), gen.next()]) console.log(x)

    Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with --supported:async-generator=false). The transformation should be fixed starting with this release.

    This fix was contributed by @​2767mr.

  • Fix a regression when metafile is enabled (#4420, #4418)

... (truncated)

Commits
  • 2025c9f publish 0.27.7 to npm
  • c6b586e fix typo in Makefile for @esbuild/win32-x64
  • 9785e14 publish 0.27.6 to npm
  • b169d8c Revert "update go 1.25.7 => 1.26.1"
  • 7ac8762 run make update-compat-table
  • 8b5ff53 remove an incorrect else
  • e955268 fix #4421: lower generated class fields if needed
  • a5a2500 ci: move make test-old-ts
  • b71e7ac omit go's buildvcs for more reproducible builds
  • 7406b09 organize make platform-all output in Makefile
  • 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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [esbuild](https://github.com/evanw/esbuild) from 0.27.4 to 0.27.7.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.4...v0.27.7)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.27.7
  dependency-type: indirect
...

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 Jun 12, 2026
@github-actions

Copy link
Copy Markdown

Phase B-1 matrix build status — pr-683-staging

ABI v15. 66 built, 0 failed, 66 total.

Package Arch Status Sha
libcurl wasm32 built 5f4fbb4f
libcxx wasm32 built 6d6e2000
libcxx wasm64 built 23ee6db5
libpng wasm32 built 403438e1
libxml2 wasm32 built 2417b2fa
libxml2 wasm64 built f9cfee41
ncurses wasm32 built 05258906
openssl wasm32 built 302c0cee
openssl wasm64 built e3b19421
sqlite wasm32 built 22fa2483
sqlite wasm64 built 627eed57
zlib wasm32 built e4857e2b
zlib wasm64 built 3e176a5d
bash wasm32 built 2a0cd44d
bc wasm32 built 9911ec42
bzip2 wasm32 built 3cd8f7b6
coreutils wasm32 built 7c317c3a
curl wasm32 built 1f8411c7
dash wasm32 built 5c9d11ee
diffutils wasm32 built 67ff12f6
dinit wasm32 built a5e76fb3
fbdoom wasm32 built 34f87472
file wasm32 built 3236c861
findutils wasm32 built a8ae1b27
gawk wasm32 built 92947b36
git wasm32 built cb3b3920
grep wasm32 built f8dde2ff
gzip wasm32 built d0f6e28d
kandelo-sdk wasm32 built 33c0a53f
kernel wasm32 built e722e013
less wasm32 built f77b2652
lsof wasm32 built 5dbdbb8c
m4 wasm32 built 3122e5d1
make wasm32 built 21ba4641
mariadb wasm32 built cf52f756
mariadb wasm64 built 47eb5479
msmtpd wasm32 built 14b77dab
nano wasm32 built 86047ebe
netcat wasm32 built cfff10e9
nethack wasm32 built 301f46ce
nginx wasm32 built 1ad0ab5c
php wasm32 built dbce5db2
posix-utils-lite wasm32 built 9bc8f09e
sed wasm32 built 82e377a1
spidermonkey wasm32 built ea3d0c8c
tar wasm32 built 23dfe388
tcl wasm32 built fb32a1a2
unzip wasm32 built aa951dc8
userspace wasm32 built af0e5a42
vim wasm32 built d2448f8d
wget wasm32 built 162053c8
xz wasm32 built 32133a57
zip wasm32 built 7c6e46a7
zstd wasm32 built f28bb8a9
lamp wasm32 built 0981b417
mariadb-test wasm32 built 36ea22ff
mariadb-vfs wasm32 built dc0436f1
mariadb-vfs wasm64 built 465103ef
nethack-browser-bundle wasm32 built efd856b7
node wasm32 built 407facef
rootfs wasm32 built caeaf0f8
spidermonkey-node wasm32 built 9f66d9b0
vim-browser-bundle wasm32 built 2939a5d8
wordpress wasm32 built 4b10cd79
shell wasm32 built 7fe55d68
node-vfs wasm32 built 7dd6f946

Auto-generated; replaced on each push. Raw data in the publish-status workflow artifact.

@dependabot @github

dependabot Bot commented on behalf of github Jun 12, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #687.

@dependabot dependabot Bot closed this Jun 12, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/sdk/esbuild-0.27.7 branch June 12, 2026 21:35
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.

0 participants