Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 11, 2025

Bumps esbuild to 0.25.2 and updates ancestor dependencies esbuild, @vitest/coverage-istanbul, @vitest/coverage-v8, @vitest/ui, vite and vitest. These dependencies need to be updated together.

Updates esbuild from 0.21.5 to 0.25.2

Release notes

Sourced from esbuild's releases.

v0.25.2

  • Support flags in regular expressions for the API (#4121)

    The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the filter option. Internally these are translated into Go regular expressions. However, this translation previously ignored the flags property of the regular expression. With this release, esbuild will now translate JavaScript regular expression flags into Go regular expression flags. Specifically the JavaScript regular expression /\.[jt]sx?$/i is turned into the Go regular expression `(?i)\.[jt]sx?$` internally inside of esbuild's API. This should make it possible to use JavaScript regular expressions with the i flag. Note that JavaScript and Go don't support all of the same regular expression features, so this mapping is only approximate.

  • Fix node-specific annotations for string literal export names (#4100)

    When node instantiates a CommonJS module, it scans the AST to look for names to expose via ESM named exports. This is a heuristic that looks for certain patterns such as exports.NAME = ... or module.exports = { ... }. This behavior is used by esbuild to "annotate" CommonJS code that was converted from ESM with the original ESM export names. For example, when converting the file export let foo, bar from ESM to CommonJS, esbuild appends this to the end of the file:

    // Annotate the CommonJS export names for ESM import in node:
    0 && (module.exports = {
      bar,
      foo
    });

    However, this feature previously didn't work correctly for export names that are not valid identifiers, which can be constructed using string literal export names. The generated code contained a syntax error. That problem is fixed in this release:

    // Original code
    let foo
    export { foo as "foo!" }
    // Old output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
    "foo!"
    });
    // New output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
    "foo!": null
    });

  • Basic support for index source maps (#3439, #4109)

    The source map specification has an optional mode called index source maps that makes it easier for tools to create an aggregate JavaScript file by concatenating many smaller JavaScript files with source maps, and then generate an aggregate source map by simply providing the original source maps along with some offset information. My understanding is that this is rarely used in practice. I'm only aware of two uses of it in the wild: ClojureScript and Turbopack.

    This release provides basic support for indexed source maps. However, the implementation has not been tested on a real app (just on very simple test input). If you are using index source maps in a real app, please try this out and report back if anything isn't working for you.

    Note that this is also not a complete implementation. For example, index source maps technically allows nesting source maps to an arbitrary depth, while esbuild's implementation in this release only supports a single level of nesting. It's unclear whether supporting more than one level of nesting is important or not given the lack of available test cases.

    This feature was contributed by @​clyfish.

v0.25.1

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2024

This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).

0.24.2

  • Fix regression with --define and import.meta (#4010, #4012, #4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

0.24.1

  • Allow es2024 as a target in tsconfig.json (#4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#4008)

    The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

... (truncated)

Commits

Updates @vitest/coverage-istanbul from 2.1.9 to 3.1.1

Release notes

Sourced from @​vitest/coverage-istanbul's releases.

v3.1.1

   🐞 Bug Fixes

    View changes on GitHub

v3.1.0

🚀 Features

🐞 Bug Fixes

🏎 Performance

... (truncated)

Commits
  • a9d36c7 chore: release v3.1.1
  • b8eda4b chore: release v3.1.0
  • f32c537 chore: release v3.1.0-beta.2
  • 9695d73 chore: replace rollup-plugin-esbuild with unplugin-oxc (#7680)
  • 2f7f364 chore: release v3.1.0-beta.1
  • 8ea9e14 chore: release v3.0.9
  • 4b0451d chore(deps): update dependency @​antfu/eslint-config to v4 (#7407)
  • 7155aef chore: use pnpm catalog (#7590)
  • c0cf65f chore: use unplugin-isolated-decl with oxc-transform for dts build (#7609)
  • 814d5df chore: release v3.0.8
  • Additional commits viewable in compare view

Updates @vitest/coverage-v8 from 2.1.9 to 3.1.1

Release notes

Sourced from @​vitest/coverage-v8's releases.

v3.1.1

   🐞 Bug Fixes

    View changes on GitHub

v3.1.0

🚀 Features

🐞 Bug Fixes

🏎 Performance

... (truncated)

Commits
  • a9d36c7 chore: release v3.1.1
  • b8eda4b chore: release v3.1.0
  • f32c537 chore: release v3.1.0-beta.2
  • 9695d73 chore: replace rollup-plugin-esbuild with unplugin-oxc (#7680)
  • 2f7f364 chore: release v3.1.0-beta.1
  • 8ea9e14 chore: release v3.0.9
  • 422ba66 fix(coverage): browser mode + coverage.all (#7597)
  • 4b0451d chore(deps): update dependency @​antfu/eslint-config to v4 (#7407)
  • 7155aef chore: use pnpm catalog (#7590)
  • c0cf65f chore: use unplugin-isolated-decl with oxc-transform for dts build (#7609)
  • Additional commits viewable in compare view

Updates @vitest/ui from 2.1.9 to 3.1.1

Release notes

Sourced from @​vitest/ui's releases.

v3.1.1

   🐞 Bug Fixes

    View changes on GitHub

v3.1.0

🚀 Features

🐞 Bug Fixes

🏎 Performance

... (truncated)

Commits

Updates vite from 5.4.14 to 6.2.6

Release notes

Sourced from vite's releases.

v6.2.6

Please refer to CHANGELOG.md for details.

v6.2.5

Please refer to CHANGELOG.md for details.

v6.2.4

Please refer to CHANGELOG.md for details.

v6.2.3

Please refer to CHANGELOG.md for details.

v6.2.2

Please refer to CHANGELOG.md for details.

create-vite@6.2.1

Please refer to CHANGELOG.md for details.

v6.2.1

Please refer to CHANGELOG.md for details.

create-vite@6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0-beta.1

Please refer to CHANGELOG.md for details.

v6.2.0-beta.0

Please refer to CHANGELOG.md for details.

v6.1.5

Please refer to CHANGELOG.md for details.

v6.1.4

Please refer to CHANGELOG.md for details.

v6.1.3

Please refer to CHANGELOG.md for details.

v6.1.2

Please refer to CHANGELOG.md for details.

create-vite@6.1.1

Please refer to CHANGELOG.md for details.

v6.1.1

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

6.2.6 (2025-04-10)

6.2.5 (2025-04-03)

6.2.4 (2025-03-31)

6.2.3 (2025-03-24)

6.2.2 (2025-03-14)

  • fix: await client buildStart on top level buildStart (#19624) (b31faab), closes #19624
  • fix(css): inline css correctly for double quote use strict (#19590) (d0aa833), closes #19590
  • fix(deps): update all non-major dependencies (#19613) (363d691), closes #19613
  • fix(indexHtml): ensure correct URL when querying module graph (#19601) (dc5395a), closes #19601
  • fix(preview): use preview https config, not server (#19633) (98b3160), closes #19633
  • fix(ssr): use optional chaining to prevent "undefined is not an object" happening in `ssrRewriteStac (4309755), closes #19612
  • feat: show friendly error for malformed base (#19616) (2476391), closes #19616
  • feat(worker): show asset filename conflict warning (#19591) (367d968), closes #19591
  • chore: extend commit hash correctly when ambigious with a non-commit object (#19600) (89a6287), closes #19600

6.2.1 (2025-03-07)

... (truncated)

Commits

Updates vitest from 2.1.9 to 3.1.1

Release notes

Sourced from vitest's releases.

v3.1.1

   🐞 Bug Fixes

    View changes on GitHub

v3.1.0

🚀 Features

…e-v8, @vitest/ui, vite and vitest

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.2 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul), [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8), [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). These dependencies need to be updated together.


Updates `esbuild` from 0.21.5 to 0.25.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.21.5...v0.25.2)

Updates `@vitest/coverage-istanbul` from 2.1.9 to 3.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.1/packages/coverage-istanbul)

Updates `@vitest/coverage-v8` from 2.1.9 to 3.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.1/packages/coverage-v8)

Updates `@vitest/ui` from 2.1.9 to 3.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.1/packages/ui)

Updates `vite` from 5.4.14 to 6.2.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v6.2.6/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.2.6/packages/vite)

Updates `vitest` from 2.1.9 to 3.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.1/packages/vitest)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.2
  dependency-type: indirect
- dependency-name: "@vitest/coverage-istanbul"
  dependency-version: 3.1.1
  dependency-type: direct:development
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 3.1.1
  dependency-type: direct:development
- dependency-name: "@vitest/ui"
  dependency-version: 3.1.1
  dependency-type: direct:development
- dependency-name: vite
  dependency-version: 6.2.6
  dependency-type: direct:development
- dependency-name: vitest
  dependency-version: 3.1.1
  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 Apr 11, 2025
@github-actions
Copy link

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails

Scanned Manifest Files

package-lock.json
  • esbuild@0.21.5
  • nanoid@3.3.7
  • vite@5.4.14
  • @bcoe/v8-coverage@1.0.2
  • @esbuild/aix-ppc64@0.25.2
  • @esbuild/android-arm@0.25.2
  • @esbuild/android-arm64@0.25.2
  • @esbuild/android-x64@0.25.2
  • @esbuild/darwin-arm64@0.25.2
  • @esbuild/darwin-x64@0.25.2
  • @esbuild/freebsd-arm64@0.25.2
  • @esbuild/freebsd-x64@0.25.2
  • @esbuild/linux-arm@0.25.2
  • @esbuild/linux-arm64@0.25.2
  • @esbuild/linux-ia32@0.25.2
  • @esbuild/linux-loong64@0.25.2
  • @esbuild/linux-mips64el@0.25.2
  • @esbuild/linux-ppc64@0.25.2
  • @esbuild/linux-riscv64@0.25.2
  • @esbuild/linux-s390x@0.25.2
  • @esbuild/linux-x64@0.25.2
  • @esbuild/netbsd-arm64@0.25.2
  • @esbuild/netbsd-x64@0.25.2
  • @esbuild/openbsd-arm64@0.25.2
  • @esbuild/openbsd-x64@0.25.2
  • @esbuild/sunos-x64@0.25.2
  • @esbuild/win32-arm64@0.25.2
  • @esbuild/win32-ia32@0.25.2
  • @esbuild/win32-x64@0.25.2
  • @polka/url@1.0.0-next.29
  • @rollup/rollup-android-arm-eabi@4.39.0
  • @rollup/rollup-android-arm64@4.39.0
  • @rollup/rollup-darwin-arm64@4.39.0
  • @rollup/rollup-darwin-x64@4.39.0
  • @rollup/rollup-freebsd-arm64@4.39.0
  • @rollup/rollup-freebsd-x64@4.39.0
  • @rollup/rollup-linux-arm-gnueabihf@4.39.0
  • @rollup/rollup-linux-arm-musleabihf@4.39.0
  • @rollup/rollup-linux-arm64-gnu@4.39.0
  • @rollup/rollup-linux-arm64-musl@4.39.0
  • @rollup/rollup-linux-loongarch64-gnu@4.39.0
  • @rollup/rollup-linux-powerpc64le-gnu@4.39.0
  • @rollup/rollup-linux-riscv64-gnu@4.39.0
  • @rollup/rollup-linux-riscv64-musl@4.39.0
  • @rollup/rollup-linux-s390x-gnu@4.39.0
  • @rollup/rollup-linux-x64-gnu@4.39.0
  • @rollup/rollup-linux-x64-musl@4.39.0
  • @rollup/rollup-win32-arm64-msvc@4.39.0
  • @rollup/rollup-win32-ia32-msvc@4.39.0
  • @rollup/rollup-win32-x64-msvc@4.39.0
  • @types/estree@1.0.7
  • @vitest/coverage-istanbul@3.1.1
  • @vitest/coverage-v8@3.1.1
  • @vitest/expect@3.1.1
  • @vitest/mocker@3.1.1
  • @vitest/pretty-format@3.1.1
  • @vitest/runner@3.1.1
  • @vitest/snapshot@3.1.1
  • @vitest/spy@3.1.1
  • @vitest/ui@3.1.1
  • @vitest/utils@3.1.1
  • chai@5.2.0
  • esbuild@0.25.2
  • expect-type@1.2.1
  • flatted@3.3.3
  • mrmime@2.0.1
  • nanoid@3.3.11
  • pathe@2.0.3
  • postcss@8.5.3
  • rollup@4.39.0
  • sirv@3.0.1
  • std-env@3.9.0
  • tinyglobby@0.2.12
  • tinyrainbow@2.0.0
  • vite@6.2.6
  • vite-node@3.1.1
  • vitest@3.1.1
  • @bcoe/v8-coverage@0.2.3
  • @esbuild/aix-ppc64@0.21.5
  • @esbuild/android-arm@0.21.5
  • @esbuild/android-arm64@0.21.5
  • @esbuild/android-x64@0.21.5
  • @esbuild/darwin-arm64@0.21.5
  • @esbuild/darwin-x64@0.21.5
  • @esbuild/freebsd-arm64@0.21.5
  • @esbuild/freebsd-x64@0.21.5
  • @esbuild/linux-arm@0.21.5
  • @esbuild/linux-arm64@0.21.5
  • @esbuild/linux-ia32@0.21.5
  • @esbuild/linux-loong64@0.21.5
  • @esbuild/linux-mips64el@0.21.5
  • @esbuild/linux-ppc64@0.21.5
  • @esbuild/linux-riscv64@0.21.5
  • @esbuild/linux-s390x@0.21.5
  • @esbuild/linux-x64@0.21.5
  • @esbuild/netbsd-x64@0.21.5
  • @esbuild/openbsd-x64@0.21.5
  • @esbuild/sunos-x64@0.21.5
  • @esbuild/win32-arm64@0.21.5
  • @esbuild/win32-ia32@0.21.5
  • @esbuild/win32-x64@0.21.5
  • @polka/url@1.0.0-next.28
  • @rollup/rollup-android-arm-eabi@4.24.3
  • @rollup/rollup-android-arm64@4.24.3
  • @rollup/rollup-darwin-arm64@4.24.3
  • @rollup/rollup-darwin-x64@4.24.3
  • @rollup/rollup-freebsd-arm64@4.24.3
  • @rollup/rollup-freebsd-x64@4.24.3
  • @rollup/rollup-linux-arm-gnueabihf@4.24.3
  • @rollup/rollup-linux-arm-musleabihf@4.24.3
  • @rollup/rollup-linux-arm64-gnu@4.24.3
  • @rollup/rollup-linux-arm64-musl@4.24.3
  • @rollup/rollup-linux-powerpc64le-gnu@4.24.3
  • @rollup/rollup-linux-riscv64-gnu@4.24.3
  • @rollup/rollup-linux-s390x-gnu@4.24.3
  • @rollup/rollup-linux-x64-gnu@4.24.3
  • @rollup/rollup-linux-x64-musl@4.24.3
  • @rollup/rollup-win32-arm64-msvc@4.24.3
  • @rollup/rollup-win32-ia32-msvc@4.24.3
  • @rollup/rollup-win32-x64-msvc@4.24.3
  • @types/estree@1.0.6
  • @vitest/coverage-istanbul@2.1.9
  • @vitest/coverage-v8@2.1.9
  • @vitest/expect@2.1.9
  • @vitest/mocker@2.1.9
  • @vitest/pretty-format@2.1.9
  • @vitest/runner@2.1.9
  • @vitest/snapshot@2.1.9
  • @vitest/spy@2.1.9
  • @vitest/ui@2.1.9
  • @vitest/utils@2.1.9
  • chai@5.1.2
  • expect-type@1.1.0
  • flatted@3.3.2
  • mrmime@2.0.0
  • postcss@8.4.47
  • rollup@4.24.3
  • sirv@3.0.0
  • std-env@3.8.0
  • tinyglobby@0.2.10
  • tinyrainbow@1.2.0
  • vite-node@2.1.9
  • vitest@2.1.9
package.json
  • @vitest/coverage-istanbul@^3.1.1
  • @vitest/coverage-v8@^3.1.1
  • @vitest/ui@^3.1.1
  • vite@^6.2.6
  • vitest@^3.1.1
  • @vitest/coverage-istanbul@^2.1.9
  • @vitest/coverage-v8@^2.1.9
  • @vitest/ui@^2.1.9
  • vite@^5.4.0
  • vitest@^2.1.9

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