chore(deps): bump esbuild, @modyfi/vite-plugin-yaml, @preact/preset-vite and vite
Bumps esbuild to 0.25.2 and updates ancestor dependencies esbuild, @modyfi/vite-plugin-yaml, @preact/preset-vite and vite. 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
filteroption. Internally these are translated into Go regular expressions. However, this translation previously ignored theflagsproperty 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?$/iis 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 theiflag. 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 = ...ormodule.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 fileexport let foo, barfrom 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
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, 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/setThis 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
--defineand--pure(#4008)The
defineandpureAPI 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--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:
... (truncated)
Commits
4475787publish 0.25.2 to npm8f56771fix #4121: map js regexp flags to go regexp flags36b458dfollow-up to #41098b8437cfeat: support index source map (#4109)75286c1unit test for absolute windows paths in source mapbcc77fbfix #4100: invalid identifiers in node annotation37cb6a2fix a warning fromnpm publish6bfc1c1publish 0.25.1 to npmf9b3952fix #4078: prepend namespaces to source map pathsccf3dd7add "contributed by" in changelog- Additional commits viewable in compare view
Updates @modyfi/vite-plugin-yaml from 1.1.0 to 1.1.1
Release notes
Sourced from @modyfi/vite-plugin-yaml's releases.
Vite v6 and beyond
An issue has come up during each jump between major Vite versions where the plugin will fail builds or CI pipelines when users of the plugin bump a major version of Vite beyond what was explicitly supported. Since the API this plugin rests upon seems quite stable and has not experienced any breakages over the past 4 major version changes, I assume that the foreseeable future of major Vite releases will not break the plugin. Therefore, all future versions of Vite have been optimistically included as a valid
peerDependency.This change should remove this plugin as a blocker from your upgrade path especially in the case of trying out future beta releases of Vite.
Commits
d804798adjust semvar to avoid errors in future when vite is upgraded455a1ecpatch update plugin08d1fafupdate pipeline workflowb1915a8update lock fileebdd886Merge pull request #31 from silverwind/patch-1d5d5b4eMerge pull request #28 from Modyfi/dependabot/npm_and_yarn/vite-5.0.137933b99Add vite 6 topeerDependencies328cc47Bump vite from 5.0.10 to 5.0.13- See full diff in compare view
Updates @preact/preset-vite from 2.8.1 to 2.10.1
Release notes
Sourced from @preact/preset-vite's releases.
2.10.1
What's Changed
- fix: do not set jsxImportSource when using babel by
@florian-lefebvrein preactjs/preset-vite#156New Contributors
@florian-lefebvremade their first contribution in preactjs/preset-vite#156Full Changelog: https://github.com/preactjs/preset-vite/compare/v2.10.0...2.10.1
2.10.0
Minor
- Switch to
vite-prerender-pluginby@rschristianin preactjs/preset-vite#153Fixes
- Fix missing dependency error in Deno by
@marvinhagemeisterin preactjs/preset-vite#154Full Changelog: https://github.com/preactjs/preset-vite/compare/2.9.4...v2.10.0
2.9.4
What's Changed
- refactor: Fix source maps and error code frames during prerendering by
@rschristianin preactjs/preset-vite#149- refactor: Silence Rollup warnings regarding source maps & use directives by
@rschristianin preactjs/preset-vite#150Full Changelog: https://github.com/preactjs/preset-vite/compare/2.9.3...2.9.4
2.9.3
What's Changed
- refactor: Ensure module preload polyfill is inlined into main bundle by
@rschristianin preactjs/preset-vite#147Full Changelog: https://github.com/preactjs/preset-vite/compare/2.9.2...2.9.3
2.9.2
Maintenance
- bump vite peer dep by
@maybebotin #1452.9.1
Features
- feat: Prerender data API by
@rschristianin preactjs/preset-vite#141Bug Fixes
- fix: Ensure
preactis optimized by Vite by@rschristianin preactjs/preset-vite#137- fix: Support empty string returns in prerenderer by
@rschristianin preactjs/preset-vite#139- fix: unable to find TS types under ESM by
@marvinhagemeisterin preactjs/preset-vite#142- fix: Provide original, unpatched fetch impl on globalThis by
@rschristianin preactjs/preset-vite#140
... (truncated)
Commits
43547a62.10.1 (#157)304b0c2fix: do not set jsxImportSource when using babel (#156)890edb9Merge pull request #155 from preactjs/release-2.9.57babf302.10.00a44febfix: deno support (#154)66b9069refactor: Switch tovite-prerender-plugin(#153)8f998872.9.4 (#152)d12a511refactor: Silence Rollup warnings regarding source maps & use directives (#150)b49447brefactor: Fix source maps, error code frames, and other misc items (#149)22bb6af2.9.3 (#148)- Additional commits viewable in compare view
Updates vite from 5.4.14 to 6.2.4
Release notes
Sourced from vite's releases.
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.
[email protected]
Please refer to CHANGELOG.md for details.
v6.2.1
Please refer to CHANGELOG.md for details.
[email protected]
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.3
Please refer to CHANGELOG.md for details.
v6.1.2
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v6.1.1
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v6.1.0
Please refer to CHANGELOG.md for details.
v6.1.0-beta.2
Please refer to CHANGELOG.md for details.
v6.1.0-beta.1
Please refer to CHANGELOG.md for details.
... (truncated)
Changelog
Sourced from vite's changelog.
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)
- refactor: remove
isBuildcheck from preAliasPlugin (#19587) (c9e086d), closes #19587- refactor: restore endsWith usage (#19554) (6113a96), closes #19554
- refactor: use
applyToEnvironmentin internal plugins (#19588) (f678442), closes #19588- fix(css): stabilize css module hashes with lightningcss in dev mode (#19481) (92125b4), closes #19481
- fix(deps): update all non-major dependencies (#19555) (f612e0f), closes #19555
- fix(reporter): fix incorrect bundle size calculation with non-ASCII characters (#19561) (437c0ed), closes #19561
- fix(sourcemap): combine sourcemaps with multiple sources without matched source (#18971) (e3f6ae1), closes #18971
- fix(ssr): named export should overwrite export all (#19534) (2fd2fc1), closes #19534
- feat: add
*?url&no-inlinetype and warning for.json?inline/.json?no-inline(#19566) (c0d3667), closes #19566- test: add glob import test case (#19516) (aa1d807), closes #19516
- test: convert config playground to unit tests (#19568) (c0e68da), closes #19568
- test: convert resolve-config playground to unit tests (#19567) (db5fb48), closes #19567
- perf: flush compile cache after 10s (#19537) (6c8a5a2), closes #19537
- chore(css): move environment destructuring after condition check (#19492) (c9eda23), closes #19492
- chore(html): remove unnecessary value check (#19491) (797959f), closes #19491
6.2.0 (2025-02-25)
... (truncated)
Commits
037f801release: v6.2.47a4fabafix: fs check in transform middleware (#19761)16869d7release: v6.2.3f234b57fix: fs raw query with query separators (#19702)b12911erelease: v6.2.298b3160fix(preview): use preview https config, not server (#19633)b31faabfix: await client buildStart on top level buildStart (#19624)dc5395afix(indexHtml): ensure correct URL when querying module graph (#19601)2476391feat: show friendly error for malformedbase(#19616)4309755fix(ssr): use optional chaining to prevent "undefined is not an object" happe...- Additional commits viewable in compare view
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 rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.