Skip to content

build(deps): bump esbuild, @netlify/build, @netlify/dev, @netlify/edge-bundler, @netlify/zip-it-and-ship-it, vite and tsx#8367

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-dd78092837
Open

build(deps): bump esbuild, @netlify/build, @netlify/dev, @netlify/edge-bundler, @netlify/zip-it-and-ship-it, vite and tsx#8367
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-dd78092837

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 24, 2026

Copy link
Copy Markdown
Contributor

Bumps esbuild to 0.28.1 and updates ancestor dependencies esbuild, @netlify/build, @netlify/dev, @netlify/edge-bundler, @netlify/zip-it-and-ship-it, vite and tsx. These dependencies need to be updated together.

Updates esbuild from 0.28.0 to 0.28.1

Release notes

Sourced from esbuild's releases.

v0.28.1

  • Disallow \ in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)

    This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a \ backslash character. It happened due to the use of Go's path.Clean() function, which only handles Unix-style / characters. HTTP requests with paths containing \ are no longer allowed.

    Thanks to @​dellalibera for reporting this issue.

  • Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)

    The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if the downloaded esbuild binary contains something other than the expected content.

    Note that esbuild's Deno API installs from registry.npmjs.org by default, but allows the NPM_CONFIG_REGISTRY environment variable to override this with a custom package registry. This change means that the esbuild executable served by NPM_CONFIG_REGISTRY must now match the expected content.

    Thanks to @​sondt99 for reporting this issue.

  • Avoid inlining using and await using declarations (#4482)

    Previously esbuild's minifier sometimes incorrectly inlined using and await using declarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done for let and const declarations by avoiding doing it for var declarations, which no longer worked when more declaration types were added. Here's an example:

    // Original code
    {
      using x = new Resource()
      x.activate()
    }
    // Old output (with --minify)
    new Resource().activate();
    // New output (with --minify)
    {using e=new Resource;e.activate()}

  • Fix module evaluation when an error is thrown (#4461, #4467)

    If an error is thrown during module evaluation, esbuild previously didn't preserve the state of the module for subsequent module references. This was observable if import() or require() is used to import a module multiple times. The thrown error is supposed to be thrown by every call to import() or require(), not just the first. With this release, esbuild will now throw the same error every time you call import() or require() on a module that throws during its evaluation.

  • Fix some edge cases around the new operator (#4477)

    Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a new expression (specifically an optional chain and/or a tagged template literal). The generated code for the new target was not correctly wrapped with parentheses, and either contained a syntax error or had different semantics. These edge cases have been fixed so that they now correctly wrap the new target in parentheses. Here is an example of some affected code:

    // Original code
    new (foo()`bar`)()
    new (foo()?.bar)()
    // Old output
    new foo()bar();
    new (foo())?.bar();

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.28.1

  • Disallow \ in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)

    This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a \ backslash character. It happened due to the use of Go's path.Clean() function, which only handles Unix-style / characters. HTTP requests with paths containing \ are no longer allowed.

    Thanks to @​dellalibera for reporting this issue.

  • Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)

    The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if the downloaded esbuild binary contains something other than the expected content.

    Note that esbuild's Deno API installs from registry.npmjs.org by default, but allows the NPM_CONFIG_REGISTRY environment variable to override this with a custom package registry. This change means that the esbuild executable served by NPM_CONFIG_REGISTRY must now match the expected content.

    Thanks to @​sondt99 for reporting this issue.

  • Avoid inlining using and await using declarations (#4482)

    Previously esbuild's minifier sometimes incorrectly inlined using and await using declarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done for let and const declarations by avoiding doing it for var declarations, which no longer worked when more declaration types were added. Here's an example:

    // Original code
    {
      using x = new Resource()
      x.activate()
    }
    // Old output (with --minify)
    new Resource().activate();
    // New output (with --minify)
    {using e=new Resource;e.activate()}

  • Fix module evaluation when an error is thrown (#4461, #4467)

    If an error is thrown during module evaluation, esbuild previously didn't preserve the state of the module for subsequent module references. This was observable if import() or require() is used to import a module multiple times. The thrown error is supposed to be thrown by every call to import() or require(), not just the first. With this release, esbuild will now throw the same error every time you call import() or require() on a module that throws during its evaluation.

  • Fix some edge cases around the new operator (#4477)

    Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a new expression (specifically an optional chain and/or a tagged template literal). The generated code for the new target was not correctly wrapped with parentheses, and either contained a syntax error or had different semantics. These edge cases have been fixed so that they now correctly wrap the new target in parentheses. Here is an example of some affected code:

    // Original code
    new (foo()`bar`)()
    new (foo()?.bar)()
    // Old output
    new foo()bar();
    new (foo())?.bar();

... (truncated)

Commits

Updates @netlify/build from 35.15.0 to 36.2.3

Release notes

Sourced from @​netlify/build's releases.

build: v36.2.3

36.2.3 (2026-07-24)

Bug Fixes

  • build: handle a case when @netlify/edge-bundler returns manifest: undefined (6daab50)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/edge-bundler bumped from 15.1.2 to 16.0.0

build: v36.2.2

36.2.2 (2026-07-23)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/edge-bundler bumped from 15.1.1 to 15.1.2

build: v36.2.1

36.2.1 (2026-07-20)

Bug Fixes

  • honor edge_functions configuration provided via the Frameworks API (#7125) (bca93db)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/config bumped from ^25.1.0 to ^25.1.1
      • @​netlify/edge-bundler bumped from 15.1.0 to 15.1.1

build: v36.2.0

36.2.0 (2026-07-17)

Features

  • trigger no-op releases with NPM Trusted Publishing (#7131) (ec0cd90)

... (truncated)

Changelog

Sourced from @​netlify/build's changelog.

36.2.3 (2026-07-24)

Bug Fixes

  • build: handle a case when @netlify/edge-bundler returns manifest: undefined (6daab50)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/edge-bundler bumped from 15.1.2 to 16.0.0

36.2.2 (2026-07-23)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/edge-bundler bumped from 15.1.1 to 15.1.2

36.2.1 (2026-07-20)

Bug Fixes

  • honor edge_functions configuration provided via the Frameworks API (#7125) (bca93db)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/config bumped from ^25.1.0 to ^25.1.1
      • @​netlify/edge-bundler bumped from 15.1.0 to 15.1.1

36.2.0 (2026-07-17)

Features

  • trigger no-op releases with NPM Trusted Publishing (#7131) (ec0cd90)

Bug Fixes

  • deps: switch from @iarna/toml to smol-toml (#6837) (5577d4a)
  • perf: replace string-width with fast-string-width (#7105) (d82e1f1)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​netlify/build since your current version.


Updates @netlify/dev from 4.18.7 to 4.18.10

Release notes

Sourced from @​netlify/dev's releases.

dev: v4.18.10

4.18.10 (2026-07-24)

Bug Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/ai bumped from ^0.4.2 to ^0.4.3
      • @​netlify/blobs bumped from 10.7.9 to 10.7.10
      • @​netlify/dev-utils bumped from 4.4.6 to 4.4.7
      • @​netlify/edge-functions-dev bumped from 1.0.22 to 1.0.23
      • @​netlify/functions-dev bumped from 1.3.1 to 1.3.2
      • @​netlify/headers bumped from 2.1.11 to 2.1.12
      • @​netlify/images bumped from 1.3.10 to 1.3.11
      • @​netlify/redirects bumped from 3.1.13 to 3.1.14
      • @​netlify/runtime bumped from 4.1.25 to 4.1.26
      • @​netlify/static bumped from 3.1.10 to 3.1.11

dev: v4.18.9

4.18.9 (2026-06-26)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/edge-functions-dev bumped from 1.0.21 to 1.0.22

dev: v4.18.8

4.18.8 (2026-06-22)

Bug Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/ai bumped from ^0.4.1 to ^0.4.2
      • @​netlify/edge-functions-dev bumped from 1.0.20 to 1.0.21

... (truncated)

Changelog

Sourced from @​netlify/dev's changelog.

4.18.10 (2026-07-24)

Bug Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/ai bumped from ^0.4.2 to ^0.4.3
      • @​netlify/blobs bumped from 10.7.9 to 10.7.10
      • @​netlify/dev-utils bumped from 4.4.6 to 4.4.7
      • @​netlify/edge-functions-dev bumped from 1.0.22 to 1.0.23
      • @​netlify/functions-dev bumped from 1.3.1 to 1.3.2
      • @​netlify/headers bumped from 2.1.11 to 2.1.12
      • @​netlify/images bumped from 1.3.10 to 1.3.11
      • @​netlify/redirects bumped from 3.1.13 to 3.1.14
      • @​netlify/runtime bumped from 4.1.25 to 4.1.26
      • @​netlify/static bumped from 3.1.10 to 3.1.11

4.18.9 (2026-06-26)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/edge-functions-dev bumped from 1.0.21 to 1.0.22

4.18.8 (2026-06-22)

Bug Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​netlify/ai bumped from ^0.4.1 to ^0.4.2
      • @​netlify/edge-functions-dev bumped from 1.0.20 to 1.0.21
      • @​netlify/functions-dev bumped from 1.3.0 to 1.3.1
Commits

Updates @netlify/edge-bundler from 14.10.3 to 16.0.0

Release notes

Sourced from @​netlify/edge-bundler's releases.

redirect-parser: v16.0.0

16.0.0 (2026-06-16)

⚠ BREAKING CHANGES

  • end of support for Node.js v18 and v20 (#7054)

Features

edge-bundler: v16.0.0

16.0.0 (2026-07-24)

⚠ BREAKING CHANGES

  • edge-bundler: the manifest property returned by bundle is now Manifest | undefined. It is undefined when no function is bundled.

Features

  • edge-bundler: exclude unrouted functions from the bundle (8140b96)

Bug Fixes

  • edge-bundler: retry config extraction on transient network errors (#7138) (efd3a2b)

zip-it-and-ship-it: v15.3.0

15.3.0 (2026-07-17)

Features

  • trigger no-op releases with NPM Trusted Publishing (#7131) (ec0cd90)

zip-it-and-ship-it: v15.2.0

15.2.0 (2026-07-06)

Features

edge-bundler: v15.1.2

15.1.2 (2026-07-23)

Bug Fixes

... (truncated)

Changelog

Sourced from @​netlify/edge-bundler's changelog.

16.0.0 (2026-07-24)

⚠ BREAKING CHANGES

  • edge-bundler: the manifest property returned by bundle is now Manifest | undefined. It is undefined when no function is bundled.

Features

  • edge-bundler: exclude unrouted functions from the bundle (8140b96)

Bug Fixes

  • edge-bundler: retry config extraction on transient network errors (#7138) (efd3a2b)

15.1.2 (2026-07-23)

Bug Fixes

  • edge-bundler: retry deno info on transient network errors (#7133) (37d2c10)

15.1.1 (2026-07-20)

Bug Fixes

  • honor name and generator across all declarations for an edge function, not just the first match (#7125) (bca93db)

15.1.0 (2026-07-17)

Features

  • trigger no-op releases with NPM Trusted Publishing (#7131) (ec0cd90)

15.0.4 (2026-07-13)

Bug Fixes

  • skip directory imports when generating edge function tarballs (#7126) (74ed378)

15.0.3 (2026-07-07)

Bug Fixes

  • update @​sveltejs/acorn-typescript to 1.0.11 (#7121) (07f8021)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​netlify/edge-bundler since your current version.


Updates @netlify/zip-it-and-ship-it from 14.7.1 to 15.3.0

Release notes

Sourced from @​netlify/zip-it-and-ship-it's releases.

zip-it-and-ship-it: v15.3.0

15.3.0 (2026-07-17)

Features

  • trigger no-op releases with NPM Trusted Publishing (#7131) (ec0cd90)

zip-it-and-ship-it: v15.2.0

15.2.0 (2026-07-06)

Features

edge-bundler: v15.1.2

15.1.2 (2026-07-23)

Bug Fixes

  • edge-bundler: retry deno info on transient network errors (#7133) (37d2c10)

edge-bundler: v15.1.1

15.1.1 (2026-07-20)

Bug Fixes

  • honor name and generator across all declarations for an edge function, not just the first match (#7125) (bca93db)

zip-it-and-ship-it: v15.1.0

15.1.0 (2026-06-30)

Features

  • record child span per bundled function, handle failures (#7116) (1709d5c)

api: v15.1.0

15.1.0 (2026-07-17)

Features

  • trigger no-op releases with NPM Trusted Publishing (#7131) (ec0cd90)

edge-bundler: v15.1.0

15.1.0 (2026-07-17)

... (truncated)

Changelog

Sourced from @​netlify/zip-it-and-ship-it's changelog.

15.3.0 (2026-07-17)

Features

  • trigger no-op releases with NPM Trusted Publishing (#7131) (ec0cd90)

15.2.0 (2026-07-06)

Features

15.1.0 (2026-06-30)

Features

  • record child span per bundled function, handle failures (#7116) (1709d5c)

15.0.1 (2026-06-18)

Bug Fixes

  • deps: update dependency esbuild to v0.28.1 (#7096) (95f22fc)

15.0.0 (2026-06-16)

⚠ BREAKING CHANGES

  • end of support for Node.js v18 and v20 (#7054)

Features

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​netlify/zip-it-and-ship-it since your current version.


Updates vite from 7.3.5 to 7.3.6

Release notes

Sourced from vite's releases.

v7.3.6

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

7.3.6 (2026-06-25)

Features

Commits

Updates tsx from 4.20.6 to 4.23.1

Release notes

Sourced from tsx's releases.

v4.23.1

4.23.1 (2026-07-13)

Bug Fixes

  • support tsImport after global preload (8d4ffc2)
  • watch: avoid clearing piped output (95d0672)
  • watch: treat script and dependency paths literally (79fddde)

Performance Improvements

  • index transform cache lazily (e818ad6)
  • load esbuild lazily in CLI (d067938)
  • map Node TypeScript formats directly (cdcc623)
  • use sync module hooks on Node v22.22.3+ (f8992f1)

This release is also available on:

v4.23.0

4.23.0 (2026-07-03)

Bug Fixes

Features


This release is also available on:

v4.22.5

4.22.5 (2026-07-02)

Bug Fixes

  • isolate hook state per async module.register() registration (a305f36)

This release is also available on:

... (truncated)

Commits
  • 79fddde fix(watch): treat script and dependency paths literally
  • e818ad6 perf: index transform cache lazily
  • cdcc623 perf: map Node TypeScript formats directly
  • d067938 perf: load esbuild lazily in CLI
  • 95d0672 fix(watch): avoid clearing piped output
  • 6fd4607 docs: add per-page metadata
  • f4176d8 docs: generate sitemap
  • 8d4ffc2 fix: support tsImport after global preload
  • f0e89b2 docs: document Node's public type-stripping API vs internal loader path
  • f8992f1 perf: use sync module hooks on Node v22.22.3+
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for tsx since your current version.


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.

…e-bundler, @netlify/zip-it-and-ship-it, vite and tsx

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.28.1 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@netlify/build](https://github.com/netlify/build/tree/HEAD/packages/build), [@netlify/dev](https://github.com/netlify/primitives/tree/HEAD/packages/dev), [@netlify/edge-bundler](https://github.com/netlify/build/tree/HEAD/packages/edge-bundler), [@netlify/zip-it-and-ship-it](https://github.com/netlify/build/tree/HEAD/packages/zip-it-and-ship-it), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [tsx](https://github.com/privatenumber/tsx). These dependencies need to be updated together.


Updates `esbuild` from 0.28.0 to 0.28.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.28.0...v0.28.1)

Updates `@netlify/build` from 35.15.0 to 36.2.3
- [Release notes](https://github.com/netlify/build/releases)
- [Changelog](https://github.com/netlify/build/blob/main/packages/build/CHANGELOG.md)
- [Commits](https://github.com/netlify/build/commits/build-v36.2.3/packages/build)

Updates `@netlify/dev` from 4.18.7 to 4.18.10
- [Release notes](https://github.com/netlify/primitives/releases)
- [Changelog](https://github.com/netlify/primitives/blob/main/packages/dev/CHANGELOG.md)
- [Commits](https://github.com/netlify/primitives/commits/dev-v4.18.10/packages/dev)

Updates `@netlify/edge-bundler` from 14.10.3 to 16.0.0
- [Release notes](https://github.com/netlify/build/releases)
- [Changelog](https://github.com/netlify/build/blob/main/packages/edge-bundler/CHANGELOG.md)
- [Commits](https://github.com/netlify/build/commits/build-v16.0.0/packages/edge-bundler)

Updates `@netlify/zip-it-and-ship-it` from 14.7.1 to 15.3.0
- [Release notes](https://github.com/netlify/build/releases)
- [Changelog](https://github.com/netlify/build/blob/main/packages/zip-it-and-ship-it/CHANGELOG.md)
- [Commits](https://github.com/netlify/build/commits/build-v15.3.0/packages/zip-it-and-ship-it)

Updates `vite` from 7.3.5 to 7.3.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.3.6/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.3.6/packages/vite)

Updates `tsx` from 4.20.6 to 4.23.1
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.6...v4.23.1)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.28.1
  dependency-type: indirect
- dependency-name: "@netlify/build"
  dependency-version: 36.2.3
  dependency-type: direct:production
- dependency-name: "@netlify/dev"
  dependency-version: 4.18.10
  dependency-type: direct:production
- dependency-name: "@netlify/edge-bundler"
  dependency-version: 16.0.0
  dependency-type: direct:production
- dependency-name: "@netlify/zip-it-and-ship-it"
  dependency-version: 15.3.0
  dependency-type: direct:production
- dependency-name: vite
  dependency-version: 7.3.6
  dependency-type: indirect
- dependency-name: tsx
  dependency-version: 4.23.1
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 24, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner July 24, 2026 17:09
@dependabot dependabot Bot added javascript Pull requests that update Javascript code dependencies Pull requests that update a dependency file labels Jul 24, 2026
@github-actions

Copy link
Copy Markdown

📊 Benchmark results

Comparing with c97eb90

  • Dependency count: 1,182 ⬆️ 4.65% increase vs. c97eb90
  • Package size: 397 MB ⬆️ 4.52% increase vs. c97eb90
  • Number of ts-expect-error directives: 358 (no change)

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