Bump esbuild and vite in /galaxy/webui/frontend
Bumps esbuild to 0.25.12 and updates ancestor dependency vite. These dependencies need to be updated together.
Updates esbuild from 0.21.5 to 0.25.12
Release notes
Sourced from esbuild's releases.
v0.25.12
Fix a minification regression with CSS media queries (#4315)
The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for
@media <media-type> and <media-condition-without-or> { ... }was missing an equality check for the<media-condition-without-or>part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.Update the list of known JavaScript globals (#4310)
This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global
Arrayproperty is considered to be side-effect free but accessing the globalscrollYproperty can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:From ES2017:
AtomicsSharedArrayBufferFrom ES2020:
BigInt64ArrayBigUint64ArrayFrom ES2021:
FinalizationRegistryWeakRefFrom ES2025:
Float16ArrayIteratorNote that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from
Iterator:// This can now be tree-shaken by esbuild: class ExampleIterator extends Iterator {}Add support for the new
@view-transitionCSS rule (#4313)With this release, esbuild now has improved support for pretty-printing and minifying the new
@view-transitionrule (which esbuild was previously unaware of):/* Original code */ @view-transition { navigation: auto; types: check; }/* Old output */
@view-transition{ navigation: auto; types: check; }/* New output */
@view-transition{
navigation: auto;
types: check;
... (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
208f539publish 0.25.12 to npm5f03afdupdate release notes6b2ee78minify: remove css rules containing empty:is()f361debadd some additional known static methods07aa646automatically mark "RegExp.escape()" calls as pure9039c46simplify some call expression checks188944dadd some additional known static methodsd3c67f9fix #4310: addIteratorand other known globals4a51f0bfix: escape dev server breadcrumb hrefs properly (#4316)26b29edfix #4315:@mediadeduplication bug edge case- Additional commits viewable in compare view
Updates vite from 5.4.21 to 7.2.2
Release notes
Sourced from vite's releases.
v7.2.2
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v7.2.1
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v7.2.0
Please refer to CHANGELOG.md for details.
v7.2.0-beta.1
Please refer to CHANGELOG.md for details.
v7.2.0-beta.0
Please refer to CHANGELOG.md for details.
v7.1.12
Please refer to CHANGELOG.md for details.
v7.1.11
Please refer to CHANGELOG.md for details.
v7.1.10
Please refer to CHANGELOG.md for details.
v7.1.9
Please refer to CHANGELOG.md for details.
v7.1.8
Please refer to CHANGELOG.md for details.
v7.1.7
Please refer to CHANGELOG.md for details.
v7.1.6
Please refer to CHANGELOG.md for details.
v7.1.5
Please refer to CHANGELOG.md for details.
v7.1.4
Please refer to CHANGELOG.md for details.
v7.1.3
Please refer to CHANGELOG.md for details.
... (truncated)
Changelog
Sourced from vite's changelog.
7.2.2 (2025-11-07)
Bug Fixes
7.2.1 (2025-11-06)
Bug Fixes
Code Refactoring
7.2.0 (2025-11-05)
Bug Fixes
- css: fallback to sass when sass-embedded platform binary is missing (#21002) (b1fd616)
- module-runner: make
getBuiltinsresponse JSON serializable (#21029) (ad5b3bf)- types: add undefined to optional properties for exactOptionalProperties type compatibility (#21040) (2833c55)
Miscellaneous Chores
7.2.0-beta.1 (2025-10-29)
Bug Fixes
- increase stream reset rate limit for HTTP2 (#21024) (4f44f22)
- optimizer: externalize virtual modules for html like files (#21001) (e5af352)
Documentation
Code Refactoring
7.2.0-beta.0 (2025-10-28)
Features
- add
import.meta.resolvesupport for ESM config (bundle config loader) (#20962) (f86789a)- add
perEnvironmentWatchChangeDuringDev(#20996) (a5e98e6)- add vite client connect events (#20978) (543d87c)
- build: emit license (#18546) (b42c3fb)
- dev: support HTTP2 even if proxy feature is used (#20869) (fc21af7)
- lib: enable minification but keep pure annotations for es output with terser (#20522) (df997d0)
- optimizer: add rush lockfile support (#20833) (718ca2d)
- utils: support multiple certificates in resolveServerUrls (#20707) (24513e5)
... (truncated)
Commits
572aacarelease: v7.2.2728c8eefix: revert "refactor: use fs.cpSync (#21019)" (#21081)a532e68release: v7.2.182d2d6cfix(worker): some worker asset was missing (#21074)f83264frefactor(build): renameindexOfMatchInSlicetofindPreloadMarker(#21054)8293de0release: v7.2.02833c55fix(types): add undefined to optional properties for exactOptionalProperties ...e3a6a83chore(deps): update rolldown-related dependencies (#21047)b1fd616fix(css): fallback to sass when sass-embedded platform binary is missing (#21...ad5b3bffix(module-runner): makegetBuiltinsresponse JSON serializable (#21029)- 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.