Skip to content

Conversation

@nfgallimore
Copy link
Member

Snyk has created this PR to upgrade esbuild from 0.23.0 to 0.24.0.

As this is a private repository, Snyk-bot does not have access. Therefore, this PR has been created automatically, but appears to have been created by a real user.

✨ Snyk has automatically assigned this pull request, set who gets assigned.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 2 versions ahead of your current version.
  • The recommended version was released a month ago, on 2024-09-22.
Release notes
Package name: esbuild
  • 0.24.0 - 2024-09-22

    This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.23.0 or ~0.23.0. See npm's documentation about semver for more information.

    • Drop support for older platforms (#3902)

      This release drops support for the following operating system:

      • macOS 10.15 Catalina

      This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

      Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

      git clone https://github.com/evanw/esbuild.git
      cd esbuild
      go build ./cmd/esbuild
      ./esbuild --version
      
    • Fix class field decorators in TypeScript if useDefineForClassFields is false (#3913)

      Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

    • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#3898)

      TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

    • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#3915)

      Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

    • Work around more issues with Deno 1.31+ (#3917)

      This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

      This fix was contributed by @ Joshix-1.

  • 0.23.1 - 2024-08-16
    • Allow using the node: import prefix with es* targets (#3821)

      The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:

      // Original code
      import fs from 'node:fs'
      fs.open

      // Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
      import fs from "fs";
      fs.open;

      // New output (with --bundle --format=esm --platform=node --target=node18,es2022)
      import fs from "node:fs";
      fs.open;

    • Fix a panic when using the CLI with invalid build flags if --analyze is present (#3834)

      Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.

    • Fix incorrect location of certain error messages (#3845)

      This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.

    • Print comments before case clauses in switch statements (#3838)

      With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).

    • Fix a memory leak with pluginData (#3825)

      With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.

  • 0.23.0 - 2024-07-02

    This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.22.0 or ~0.22.0. See npm's documentation about semver for more information.

    • Revert the recent change to avoid bundling dependencies for node (#3819)

      This release reverts the recent change in version 0.22.0 that made --packages=external the default behavior with --platform=node. The default is now back to --packages=bundle.

      I've just been made aware that Amazon doesn't pin their dependencies in their "AWS CDK" product, which means that whenever esbuild publishes a new release, many people (potentially everyone?) using their SDK around the world instantly starts using it without Amazon checking that it works first. This change in version 0.22.0 happened to break their SDK. I'm amazed that things haven't broken before this point. This revert attempts to avoid these problems for Amazon's customers. Hopefully Amazon will pin their dependencies in the future.

      In addition, this is probably a sign that esbuild is used widely enough that it now needs to switch to a more complicated release model. I may have esbuild use a beta channel model for further development.

    • Fix preserving collapsed JSX whitespace (#3818)

      When transformed, certain whitespace inside JSX elements is ignored completely if it collapses to an empty string. However, the whitespace should only be ignored if the JSX is being transformed, not if it's being preserved. This release fixes a bug where esbuild was previously incorrectly ignoring collapsed whitespace with --jsx=preserve. Here is an example:

      // Original code
      <Foo>
      <Bar />
      </Foo>

      // Old output (with --jsx=preserve)
      <Foo><Bar /></Foo>;

      // New output (with --jsx=preserve)
      <Foo>
      <Bar />
      </Foo>;

from esbuild GitHub release notes
Commit messages
Package name: esbuild
  • d34e79e publish 0.24.0 to npm
  • 045a87f fix #3887: omit dead export warning for `default`
  • 6e049b8 fix #3913: useDefineForClassFields and decorators
  • 9c26f98 lower decorators for useDefineForClassFields #3913
  • 46fdb68 fix #3898: incorrect cyclic tsconfig.json warning
  • b500443 fix #3917: running esbuild cli with deno
  • b125e62 run `make update-compat-table`
  • 112b9aa fix #3915: stack overflow with yarn + tsconfig
  • ed5a555 wasm: catch and rethrow stack overflows (#3915)
  • 11d3196 fix #3902: update go 1.22.5 => 1.23.1
  • 2de2f74 run `make update-compat-table`
  • 3327274 publish 0.23.1 to npm
  • 38e22ed add a warning/debug log message for #3867
  • a15bb51 fix #3825: memory leak of `pluginData` values
  • f6e6481 fix #3838: print comments before `case` clauses
  • 9c13ae1 fix #3853: update go 1.22.4 => 1.22.5
  • 78f89e4 fix #3845: some incorrect error message locations
  • 892d2a7 fix #3834: cli sometimes panics with `--analyze`
  • 360d472 fix a typo in the release notes
  • e3f4e2d fix #3821: allow `node:` prefix with `es*` targets

Compare


Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

👩‍💻 Set who automatically gets assigned

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

@nfgallimore nfgallimore self-assigned this Oct 24, 2024
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.

3 participants