Skip to content

Bump esbuild, vuepress and @vuepress/cli in /docs#767

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

Bump esbuild, vuepress and @vuepress/cli in /docs#767
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/docs/multi-11ad5f0071

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps esbuild to 0.28.1 and updates ancestor dependencies esbuild, vuepress and @vuepress/cli. These dependencies need to be updated together.

Updates esbuild from 0.19.6 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: 2023

This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).

0.19.11

  • Fix TypeScript-specific class transform edge case (#3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
    constructor() {
    super();
    this.#private = 1;
    }
    #private;
    }
    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
    constructor() {
    this.#private = 1;
    super();
    }
    #private;
    }
    // New output
    class Foo extends Bar {
    #private = 1;
    constructor() {
    super();
    }
    }

  • Minifier: allow reording a primitive past a side-effect (#3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

... (truncated)

Commits
Maintainer changes

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


Updates vuepress from 2.0.0-rc.0 to 2.0.0-rc.30

Commits
Maintainer changes

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


Updates @vuepress/cli from 2.0.0-rc.0 to 2.0.0-rc.30

Release notes

Sourced from @​vuepress/cli's releases.

v2.0.0-rc.30

   🚀 Features

    View changes on GitHub

v2.0.0-rc.29

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v2.0.0-rc.28

   🐞 Bug Fixes

    View changes on GitHub

v2.0.0-rc.27

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

BREAKING CHANGES

  • Page temp files have been removed. Now page components are loaded by bundler directly. If you rely on watching page temp files in dev mode, you can make use of the new onPageUpdated hook instead.
  • markdown:
    • The markdown.assets.relativePathPrefix option has been removed, as it's redundant after removing page temp files.

... (truncated)

Changelog

Sourced from @​vuepress/cli's changelog.

2.0.0-rc.30 (2026-05-14)

Features

2.0.0-rc.29 (2026-05-08)

Bug Fixes

  • bundler-webpack: update esbuild target option (925e63a)

Features

  • cli: fix page file update racing problems and avoid middle state processing (#1691) (da12787)
  • core: add userStyle option to ensure highest css priority (close #1110) (#1695) (071cc21)

2.0.0-rc.28 (2026-04-01)

Bug Fixes

  • cli: cleanup writeTemp on dev server restart (#1693) (ab6eada)
  • cli: pagesWatcher should ignore files based on relative path (#1689) (2e164f5)

Code Refactoring

  • core: update onPageUpdated hook params for delete event (#1692) (206e99e)

BREAKING CHANGES

  • core: The onPageUpdated hook swaps the parameter order for delete type from ('delete', page, null) to ('delete', null, page).

2.0.0-rc.27 (2026-03-10)

Bug Fixes

  • cli: use a separate ignore matcher to ignore watched files (#1681) (1ab52b6)
  • core: page creation should respect page options (#1673) (b713ef4)

Features

... (truncated)

Commits
  • dd5e0c4 build: publish v2.0.0-rc.30
  • 987f8c1 ci: use pnpm ci to install dependencies (#1701)
  • d4f9180 feat(markdown): add aliasSupport option for assetsPlugin (close #1646) (#1647)
  • 0080107 feat(core): prepare user style separately (#1700)
  • 281703e ci: add codeql workflow (#1699)
  • 55307a3 build: publish v2.0.0-rc.29
  • 8b96ee8 build: downgrade lint-staged for regression
  • 071cc21 feat(core): add userStyle option to ensure highest css priority (close #1110)...
  • 3140c3c ci: bump actions and drop node 20 (#1698)
  • e334230 build: remove baseUrl from compilerOptions
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​vuepress/cli 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.

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.28.1 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [vuepress](https://github.com/vuejs/vuepress/tree/HEAD/packages/vuepress) and [@vuepress/cli](https://github.com/vuepress/core). These dependencies need to be updated together.


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

Updates `vuepress` from 2.0.0-rc.0 to 2.0.0-rc.30
- [Release notes](https://github.com/vuejs/vuepress/releases)
- [Changelog](https://github.com/vuejs/vuepress/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/vuepress/commits/HEAD/packages/vuepress)

Updates `@vuepress/cli` from 2.0.0-rc.0 to 2.0.0-rc.30
- [Release notes](https://github.com/vuepress/core/releases)
- [Changelog](https://github.com/vuepress/core/blob/main/CHANGELOG.md)
- [Commits](vuepress/core@v2.0.0-rc.0...v2.0.0-rc.30)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.28.1
  dependency-type: indirect
- dependency-name: vuepress
  dependency-version: 2.0.0-rc.30
  dependency-type: direct:production
- dependency-name: "@vuepress/cli"
  dependency-version: 2.0.0-rc.30
  dependency-type: direct:development
...

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 13, 2026
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

Development

Successfully merging this pull request may close these issues.

0 participants