Skip to content

chore(deps-dev): bump esbuild from 0.25.12 to 0.28.1 in the npm_and_yarn group across 1 directory - #53

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm_and_yarn-53cbaf2a5b
Open

chore(deps-dev): bump esbuild from 0.25.12 to 0.28.1 in the npm_and_yarn group across 1 directory#53
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm_and_yarn-53cbaf2a5b

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the npm_and_yarn group with 1 update in the / directory: esbuild.

Updates esbuild from 0.25.12 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.

Changelog: 2025

This changelog documents all esbuild versions published in the year 2025 (versions 0.25.0 through 0.27.2).

0.27.2

  • Allow import path specifiers starting with #/ (#4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#4357, #4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    /* Old output (with --target=chrome110) */
    main {
    mask: url(x.png) center/5rem no-repeat;
    }
    /* New output (with --target=chrome110) */
    main {
    -webkit-mask: url(x.png) center/5rem no-repeat;
    mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#4176, #4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }

... (truncated)

Commits
Maintainer changes

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


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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the npm_and_yarn group with 1 update in the / directory: [esbuild](https://github.com/evanw/esbuild).


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

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.28.1
  dependency-type: direct:development
  dependency-group: npm_and_yarn
...

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 21, 2026
padaliyajay pushed a commit to padaliyajay/bbb-tldraw that referenced this pull request Jul 6, 2026
fix: pin vm2 to 3.11.3 to resolve CVE-2023-37903 and related sandbox escapes

Adds npm override to enforce vm2 == 3.11.3 (community security patch),
patching critical sandbox escape vulnerabilities (GHSA-g644-9gfx-q4q4
and related vm2 CVEs). The vulnerable 3.9.19 was a transitive dev
dependency via @remix-run/dev → proxy-agent → pac-proxy-agent →
pac-resolver → degenerator → vm2. No production runtime exposure.

fix: upgrade form-data to 4.0.5 to resolve CVE-2025-7783

Adds npm override to enforce form-data == 4.0.5, patching the unsafe
Math.random() boundary vulnerability (GHSA-fjxv-7rqg-78g4). The
vulnerable 4.0.0 was a transitive dev dependency via @types/node-fetch
and jsdom → jest-environment-jsdom. No production runtime exposure.

fix: upgrade ws to >=8.17.1 with nested @remix-run/dev override to resolve CVE-2024-37890

Patches both 7.x and 8.x instances (GHSA-3h5v-q93c-6h6q). Uses global
"ws":">=8.17.1" plus nested "@remix-run/dev":{"ws":">=7.5.10 <8.0.0"}
to keep @remix-run/dev on its expected ws 7.x API while everything else
gets patched 8.x. Resolves alerts bigbluebutton#12 and bigbluebutton#13.

fix: upgrade body-parser to >=1.20.3 to resolve CVE-2024-45590

Adds npm override to enforce body-parser >= 1.20.3 < 2.0.0, patching
the URL-encoding DoS vulnerability (GHSA-qwcr-r2fm-qrc7). Resolves
to 1.20.5. The vulnerable 1.20.2 was a transitive dev dependency via
@remix-run/dev → express → body-parser. No production runtime exposure.

fix: upgrade rollup to >=3.29.5/>=4.22.4 to resolve CVE-2024-47068

Adds npm override for rollup with multi-range patch (GHSA-gcx4-mw62-g8wm).
Hoisted rollup 4.18.0 → 4.60.4; vite-nested rollup 3.29.4 → 3.29.5.
Resolves alerts bigbluebutton#25 and bigbluebutton#26. Both are devDependencies; XSS only affects
bundled output served to end users, not the build process.

fix: upgrade cross-spawn to >=7.0.5 to resolve CVE-2024-21538

Adds npm override to enforce cross-spawn >= 7.0.5, patching ReDoS
vulnerability (GHSA-3xgq-45jj-v275). Resolves to 7.0.6. The vulnerable
7.0.3 was a shared transitive dev dependency (eslint, lazyrepo,
lint-staged, node-gyp chain). No production runtime exposure.

fix: upgrade tar-fs to >=2.1.4 to resolve CVE-2024-12905 and related

Adds npm override to enforce tar-fs >= 2.1.4, patching three path
traversal CVEs (alerts bigbluebutton#43, bigbluebutton#53, tldraw#60). The vulnerable 2.1.1 was a
shared transitive dev dependency (vsce/prebuild-install and
vercel/@remix-run/dev chains). No production runtime exposure.

fix: upgrade playwright to >=1.55.1 to resolve CVE-2025-59288

Upgrades playwright and @playwright/test from ^1.46.0/^1.38.1 to
^1.55.1 (resolved to 1.60.0), patching SSL certificate verification
bypass (GHSA-7mvr-c777-76hp). Both packages updated together since
@playwright/test pins playwright with an exact version. Dev-only
tooling; no production exposure.

fix: upgrade glob (10.x) to 10.5.0 to resolve CVE-2025-64756

Manually patches two vulnerable glob@10.4.1 lockfile entries
(node-gyp and cacache chains) to 10.5.0, fixing CLI command injection
(GHSA-5j98-mcp5-4vw2). Broad npm override was avoided to preserve
7.x/8.x instances used by jest, eslint, etc. Dev-only; no production
exposure.

fix: upgrade validator to >=13.15.22 to resolve CVE-2025-12758

Adds npm override to enforce validator >= 13.15.22 (resolves to 13.15.35),
patching incomplete filtering vulnerability (GHSA-vghf-hv5q-vc2g).
Transitive devDependency via @microsoft/api-extractor -> z-schema chain.
No production exposure.

fix: upgrade @remix-run/router to >=1.23.2 to resolve CVE-2026-22029

Upgrades react-router-dom (6.23.1->6.30.3) and adds npm override for
@remix-run/router >=1.23.2, patching XSS via open redirects
(GHSA-2w69-qvjg-hvjx). Both previous instances (1.16.1 and 1.5.0) are
now deduplicated to 1.23.2. Dev-only tooling; no BBB production exposure.

fix: patch minimatch to safe versions across all major branches

Manually patches 8 minimatch lockfile entries (3.x->3.1.4, 4.x->4.2.5,
5.x->5.1.8, 8.x->8.0.6, 9.x->9.0.7) to resolve 9 Dependabot alerts
(tldraw#84, tldraw#88, tldraw#91, tldraw#95-#100). A broad override was avoided to prevent
cross-major version coercion. All instances are dev tooling only.

fix: patch serialize-javascript to 7.0.3 to resolve GHSA-5c6j-r48x-rmvq

Manually patches serialize-javascript lockfile entry from 6.0.0 to 7.0.3,
fixing RCE via RegExp.flags/Date.prototype.toISOString. mocha@9.2.2 pins
an exact version so npm override is not viable. Dev-only tooling (VSCode
extension tests); no production exposure.

fix: upgrade svgo to >=3.3.3 to resolve CVE-2026-29074

Updates svgo direct dependency from ^3.0.2 to ^3.3.3 (resolves to 3.3.3),
patching DoS via DOCTYPE entity expansion (GHSA-xpqw-6gx7-v673). The
upgrade also transitions svgo's XML parser from @trysound/sax to sax.
Build tool; no production runtime exposure.

fix: upgrade flatted to >=3.4.2 to resolve GHSA-25h7-pfq9-p65f/rf6f-7fwh-wjgh

Adds npm override to enforce flatted >= 3.4.2, patching unbounded
recursion DoS (tldraw#107) and prototype pollution (#108). Transitive
devDependency via eslint -> flat-cache chain. No production exposure.

fix: patch picomatch to 2.3.2 to resolve GHSA-c2c7-rcm5-vvqj and related

Manually patches picomatch lockfile entry from 2.3.1 to 2.3.2, fixing
ReDoS via extglob quantifiers (#111) and method injection (tldraw#112). Broad
npm override was avoided to prevent cross-major version coercion. Dev
tooling only; no production exposure.

fix: upgrade lodash to >=4.18.0 to resolve CVEs (tldraw#76, #117, #118)

Adds npm override to enforce lodash >= 4.18.0 (resolves to 4.18.1),
patching GHSA-xxjr-mmjv-4gpg (medium), GHSA-f23m-r3pf-42rh (medium),
and GHSA-r5fr-rjxr-66jc (high). All consumers share the single hoisted
entry.

fix: upgrade @babel/plugin-transform-modules-systemjs to >=7.29.4 (CVE-2026-44728)

Adds npm override to enforce @babel/plugin-transform-modules-systemjs
>= 7.29.4, patching arbitrary code generation from malicious input
(GHSA-fv7c-fp4j-7gwp). Transitive devDependency via
vercel -> @remix-run/dev -> @babel/preset-env chain.

fix: upgrade vite 4.x to 4.5.14 and patch nested 5.x instances to 5.4.21

Resolves 16 Dependabot alerts (bigbluebutton#21-bigbluebutton#52, #58, tldraw#59, tldraw#63): upgrades the
hoisted vite 4.x instance to 4.5.14 (CVE-2024-45811, CVE-2024-45812,
CVE-2025-24010, CVE-2025-30208, CVE-2025-31125, CVE-2025-31486,
CVE-2025-32395, CVE-2025-46565, CVE-2025-58751, CVE-2025-58752) and
manually patches nested vite 5.x entries to 5.4.21 via lockfile.

fix: upgrade micromatch to >=4.0.8 to resolve CVE-2024-4067

fix: patch xml2js to 0.5.0 to resolve CVE-2023-0842

fix: patch nanoid 3.x instances to 3.3.12 to resolve CVE-2024-55565

fix: upgrade @babel/helpers+runtime to >=7.26.0 and serialize-javascript to 7.0.5

Resolves CVE-2025-27789 (@babel), CVE-2024-11831 and CVE-2026-34043
(serialize-javascript).

fix: patch postcss, qs, js-yaml, yaml 1.x, and brace-expansion CVEs

- postcss 8.4.38→8.5.14 (CVE-2026-41305)
- qs 6.11.0→6.15.1, typed-rest-client qs 6.12.1→6.15.0 (CVE-2025-15284, CVE-2026-2391)
- js-yaml 4.1.0→4.1.1 (CVE-2025-64718) via manual patch
- js-yaml 3.14.1→3.14.2 for @istanbuljs and gray-matter (CVE-2025-64718)
- yaml 1.10.2→1.10.3 for cosmiconfig (CVE-2026-33532)
- brace-expansion 2.0.1→2.0.3 and 1.1.11→1.1.13 (bigbluebutton#54, bigbluebutton#55, #113, tldraw#114)

fix: patch ajv to 6.14.0 to resolve CVE-2025-69873

fix: upgrade yaml, brace-expansion 2.x, and cookie to patch CVEs

- yaml 2.4.2→2.9.0 (CVE-2026-33532: stack overflow in deeply nested YAML)
- brace-expansion 2.0.1→2.0.3 (CVE-2025-5889 + CVE-2026-33750)
- cookie 0.4.2+0.6.0→0.7.2 (CVE-2024-47764)

fix: upgrade express, send, serve-static, and tmp (vsce) to patch CVEs

- express 4.19.2→4.22.2 (CVE-2024-43796: XSS via response.redirect())
- send 0.18.0→0.19.2 (CVE-2024-43799: template injection XSS)
- serve-static 1.15.0→1.16.3 (CVE-2024-43800: template injection XSS)
- vsce/tmp 0.2.3→0.2.5 (CVE-2025-54798: symlink attack via dir param)

Note: hoisted tmp 0.0.33 (external-editor) has no fix in 0.0.x range.

fix: refine ws override to nested pattern for @remix-run/dev compatibility

Switch from flat ">=7.5.10 <8.0.0 || >=8.17.1" to:
- global "ws": ">=8.17.1" (all packages get patched 8.x)
- nested "@remix-run/dev": { "ws": ">=7.5.10 <8.0.0" } (keeps @remix-run/dev on ws 7.x as designed)

@remix-run/dev 1.15.0 declares ws ^7.4.5; the flat union range was resolving
it to 8.20.1 (npm picks highest), giving it an incompatible major version.
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