lakeFS
lakeFS copied to clipboard
Bump esbuild, @vitejs/plugin-react, @vitejs/plugin-react-swc, vite and vitest in /webui
Bumps esbuild to 0.25.1 and updates ancestor dependencies esbuild, @vitejs/plugin-react, @vitejs/plugin-react-swc, vite and vitest. These dependencies need to be updated together.
Updates esbuild from 0.21.5 to 0.25.1
Release notes
Sourced from esbuild's releases.
v0.25.1
Fix incorrect paths in inline source maps (#4070, #4075, #4105)
This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline
sourceMappingURLdata URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing thesourceMappingURLcomment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.Fix invalid generated source maps (#4080, #4082, #4104, #4107)
This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.
This fix was contributed by
@jridgewell.Fix a regression with non-file source map paths (#4078)
The format of paths in source maps that aren't in the
filenamespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths fromfilepaths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a:character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.Fix a crash with
switchoptimization (#4088)The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:
switch (x) { case '': return y.map(z => z.value) case y.map(z => z.key).join(','): return [] }Update Go from 1.23.5 to 1.23.7 (#4076, #4077)
This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.
This PR was contributed by
@MikeWillCook.v0.25.0
This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of
esbuildin yourpackage.jsonfile (recommended) or be using a version range syntax that only accepts patch upgrades such as^0.24.0or~0.24.0. See npm's documentation about semver for more information.
Restrict access to esbuild's development server (GHSA-67mh-4wv8-2f99)
This change addresses esbuild's first security vulnerability report. Previously esbuild set the
Access-Control-Allow-Originheader to*to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in the report.Starting with this release, CORS will now be disabled, and requests will now be denied if the host does not match the one provided to
--serve=. The default host is0.0.0.0, which refers to all of the IP addresses that represent the local machine (e.g. both127.0.0.1and192.168.0.1). If you want to customize anything about esbuild's development server, you can put a proxy in front of esbuild and modify the incoming and/or outgoing requests.In addition, the
serve()API call has been changed to return an array ofhostsinstead of a singlehoststring. This makes it possible to determine all of the hosts that esbuild's development server will accept.Thanks to
@sapphi-redfor reporting this issue.Delete output files when a build fails in watch mode (#3643)
It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again.
... (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
6bfc1c1publish 0.25.1 to npmf9b3952fix #4078: prepend namespaces to source map pathsccf3dd7add "contributed by" in changelog48cd7a9Update Go from 1.23.5 to 1.23.7 (#4077)1f04fa4fix absolute windows paths in source maps9ca03f6also add test case from #40752f244c0add test case from #41041dde994fix incorrect test names9f008c5fix #4070:filenamespace forsourceMappingURLcbd5eb8release notes and tests for #4082- Additional commits viewable in compare view
Updates @vitejs/plugin-react from 4.2.1 to 4.3.4
Release notes
Sourced from @vitejs/plugin-react's releases.
v4.3.4
Add Vite 6 to peerDependencies range
Vite 6 is highly backward compatible, not much to add!
Force Babel to output spec compliant import attributes #386
The default was an old spec (
with type: "json"). We now enforce spec compliant (with { type: "json" })v4.3.3
React Compiler runtimeModule option removed
React Compiler was updated to accept a
targetoption andruntimeModulewas removed. vite-plugin-react will still detectruntimeModulefor backwards compatibility.When using a custom
runtimeModuleortarget !== '19', the plugin will not try to pre-optimizereact/compiler-runtimedependency.The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.
Here is the configuration to use the compiler with React 18 and correct source maps in development:
npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-developmentexport default defineConfig(({ command }) => { const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]] if (command === 'serve') { babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}]) }return { plugins: [react({ babel: { plugins: babelPlugins } })], } })
v4.3.2
Ignore directive sourcemap error #369
v4.3.1
Fix support for React Compiler with React 18
The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom
runtimeModule: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43When using a custom
runtimeModule, the plugin will not try to pre-optimizereact/compiler-runtimedependency.Reminder: Vite expect code outside of
node_modulesto be ESM, so you will need to update the gist withimport React from 'react'.v4.3.0
... (truncated)
Changelog
Sourced from @vitejs/plugin-react's changelog.
4.3.4 (2024-11-26)
Add Vite 6 to peerDependencies range
Vite 6 is highly backward compatible, not much to add!
Force Babel to output spec compliant import attributes #386
The default was an old spec (
with type: "json"). We now enforce spec compliant (with { type: "json" })4.3.3 (2024-10-19)
React Compiler runtimeModule option removed
React Compiler was updated to accept a
targetoption andruntimeModulewas removed. vite-plugin-react will still detectruntimeModulefor backwards compatibility.When using a custom
runtimeModuleortarget !== '19', the plugin will not try to pre-optimizereact/compiler-runtimedependency.The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.
Here is the configuration to use the compiler with React 18 and correct source maps in development:
npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-developmentexport default defineConfig(({ command }) => { const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]] if (command === 'serve') { babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}]) }return { plugins: [react({ babel: { plugins: babelPlugins } })], } })
4.3.2 (2024-09-29)
Ignore directive sourcemap error #369
4.3.1 (2024-06-10)
Fix support for React Compiler with React 18
The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom
runtimeModule: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43When using a custom
runtimeModule, the plugin will not try to pre-optimizereact/compiler-runtimedependency.
... (truncated)
Commits
2e368a6release: [email protected]bde1ad6feat: add Vite 6 to peerDependencies range (#390)45a727cfix(deps): update all non-major dependencies (#373)5d2b6c6fix: force non-legacy import attributes babel output (#386)b61592arelease: [email protected]e8a923ffix: addreact-dominoptimizeOpsto handle CJS script. (#375)7a7e339feat: support new React Compiler target option (#374)63b2e38release: [email protected]fdf6ce4fix(deps): update all non-major dependencies (#273)4544e97feat: update refresh utils for React Router 7 support (#363)- Additional commits viewable in compare view
Updates @vitejs/plugin-react-swc from 3.6.0 to 3.8.1
Release notes
Sourced from @vitejs/plugin-react-swc's releases.
v3.8.1
Remove WebContainers warning #268
SWC is now supported in WebContainers 🎉
v3.8.0
Add useAtYourOwnRisk_mutateSwcOptions option
The future of Vite is with OXC, and from the beginning this was a design choice to not exposed too many specialties from SWC so that Vite React users can move to another transformer later. Also debugging why some specific version of decorators with some other unstable/legacy feature doesn't work is not fun, so we won't provide support for it, hence the name
useAtYourOwnRisk.react({ useAtYourOwnRisk_mutateSwcOptions(options) { options.jsc.parser.decorators = true; options.jsc.transform.decoratorVersion = "2022-03"; }, });v3.7.2
Add Vite 6 to peerDependencies range #207
Thanks
@RobinTailRevert throw when refresh runtime is loaded twice #237
Revert the throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.
This revert was done in the Babel plugin last year and I didn't port it back.
v3.7.1
Ignore directive sourcemap error #231
v3.7.0
Support HMR for class components
This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
Changelog
Sourced from @vitejs/plugin-react-swc's changelog.
3.8.1
Remove WebContainers warning #268
SWC is now supported in WebContainers 🎉
3.8.0
Add useAtYourOwnRisk_mutateSwcOptions option
The future of Vite is with OXC, and from the beginning this was a design choice to not exposed too many specialties from SWC so that Vite React users can move to another transformer later. Also debugging why some specific version of decorators with some other unstable/legacy feature doesn't work is not fun, so we won't provide support for it, hence the name
useAtYourOwnRisk.react({ useAtYourOwnRisk_mutateSwcOptions(options) { options.jsc.parser.decorators = true; options.jsc.transform.decoratorVersion = "2022-03"; }, });3.7.2
Add Vite 6 to peerDependencies range #207
Thanks
@RobinTailRevert throw when refresh runtime is loaded twice #237
Revert the throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.
This revert was done in the Babel plugin last year and I didn't port it back.
3.7.1
Ignore directive sourcemap error #231
3.7.0
Support HMR for class components
This is a long overdue and should fix some issues people had with HMR when migrating from CRA.
Commits
8651113release: v3.8.1322fde0chore(deps): update pnpm to v10 (#262)4eb6c3bfix(deps): update all non-major dependencies (#263)eeea648chore(deps): update swc monorepo (major) (#265)be62552fix: remove webcontainer warning (#268)2096fd0doc: fix typof79b137release: v3.8.0ea18caafix(deps): update all non-major dependencies (#233)374377afix(deps): update dependency react-router-dom to v7 (#245)b91516achore(deps): update dependency@types/nodeto v22 (#240)- Additional commits viewable in compare view
Updates vite from 5.4.14 to 6.2.2
Release notes
Sourced from vite's releases.
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.
[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.
v6.1.0-beta.0
Please refer to CHANGELOG.md for details.
v6.0.11
Please refer to CHANGELOG.md for details.
v6.0.10
Please refer to CHANGELOG.md for details.
v6.0.9
This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details.
... (truncated)
Changelog
Sourced from vite's changelog.
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)
- fix(deps): update all non-major dependencies (#19501) (c94c9e0), closes #19501
- fix(worker): string interpolation in dynamic worker options (#19476) (07091a1), closes #19476
- chore: use unicode cross icon instead of x (#19497) (5c70296), closes #19497
6.2.0-beta.1 (2025-02-21)
- fix(css): temporary add
?.afterthis.getModuleInfoinvite:css-post(#19478) (12b0b8a), closes #194786.2.0-beta.0 (2025-02-21)
... (truncated)
Commits
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...363d691fix(deps): update all non-major dependencies (#19613)d0aa833fix(css): inline css correctly for double quote use strict (#19590)367d968feat(worker): show asset filename conflict warning (#19591)89a6287chore: extend commit hash correctly when ambigious with a non-commit object (...- Additional commits viewable in compare view
Updates vitest from 1.6.1 to 3.0.9
Release notes
Sourced from vitest's releases.
v3.0.9
🐞 Bug Fixes
- Typings of
ctx.skip()asnever- by@sirlancelotin vitest-dev/vitest#7608 (09f35)- Cleanup vitest in public
resolveConfigAPI - by@hi-ogawain vitest-dev/vitest#7623 (db14a)- Fix
toHaveBeenCalledWith(asymmetricMatcher)withundefinedarguments - by@hi-ogawain vitest-dev/vitest#7624 (0fb21)- Race condition in RPC filesystem cache. - by
@dtsin vitest-dev/vitest#7531 (b7f55)- Fix
getState().testPathduring collection with no isolation - by@hi-ogawain vitest-dev/vitest#7640 (3fb3f)- Support custom toString method in %s format - by
@pengooseDevin vitest-dev/vitest#7637 (46d93)- browser:
- Fail playwright timeouts earlier than a test timeout - by
@sheremet-vaand@hi-ogawain vitest-dev/vitest#7565 (5eb4c)- Remove
@testing-library/domfrom dependencies #7555)" - by@sheremet-vain vitest-dev/vitest#7628 and vitest-dev/vitest#7555 (94b27)- coverage:
- Browser mode +
coverage.all- by@AriPerkkioin vitest-dev/vitest#7597 (422ba)- runner:
- Show stacktrace on hook timeout error - by
@hi-ogawain vitest-dev/vitest#7502 (268a1)- vite-node:
- Fix source map of inlined node_modules - by
@hi-ogawain vitest-dev/vitest#7557 (34aa3)- Fix missing
buildStart- by@hi-ogawain vitest-dev/vitest#7652 (29f5a)- web-worker:
- Ensure
removeEventListeneris bound to worker - by@joelgallantin vitest-dev/vitest#7631 (ff42b)View changes on GitHub
v3.0.8
🐞 Bug Fixes
- Fix fetch cache multiple writes - by
@hi-ogawain vitest-dev/vitest#7546 (1a8b4)- Use browser.isolate instead of config.isolate - by
@sheremet-vain vitest-dev/vitest#7560 (4b5ed)- Remove vestigial spy stub, import directly from
@vitest/spy- by@mrginglymusin vitest-dev/vitest#7575 (7f7ff)- Correctly split the argv string - by
@bteain vitest-dev/vitest#7533 (4325a)- browser:
- Remove
@testing-library/domfrom dependencies - by@sheremet-vain vitest-dev/vitest#7555 (5387a)- Improve source map handling for bundled files - by
@sheremet-vain vitest-dev/vitest#7534 (e2c57)- Print related test file and potential test in unhandled errors - by
@sheremet-vain vitest-dev/vitest#7564 (fee90)- runner:
- Fix
beforeEach/Allcleanup callback timeout - by@hi-ogawain vitest-dev/vitest#7500 (0c292)- Fix and simplify
Task.suiteinitialization - by@hi-ogawain vitest-dev/vitest#7414 (ca9ff)- snapshot:
- Allow inline snapshot calls on same location with same snapshot - by
@jycouetand@hi-ogawain vitest-dev/vitest#7464 (d5cb8)- vite-node:
- Fix
buildStarton Vite 6 - by@hi-ogawain vitest-dev/vitest#7480 (c0f47)View changes on GitHub
v3.0.7
🐞 Bug Fixes
- browser: Support webdriverio 9 - by
@sheremet-vain vitest-dev/vitest#7553 (b1949)- deps: Update all non-major dependencies - in vitest-dev/vitest#7543 (365ff)
... (truncated)
Commits
8ea9e14chore: release v3.0.9422ba66fix(coverage): browser mode +coverage.all(#7597)3fdee3dchore: fix various typos (#7663)4b0451dchore(deps): update dependency@antfu/eslint-configto v4 (#7407)fcf3cf5refactor: coverage types to avoid mixing node and runtime types (#7627)3fb3fbffix: fixgetState().testPathduring collection with no isolation (#7640)7155aefchore: use pnpm catalog (#7590)c0cf65fchore: useunplugin-isolated-declwithoxc-transformfor dts build (#7609)5eb4cd1fix(browser): fail playwright timeouts earlier than a test timeout (#7565)b7f5526fix: race condition in RPC filesystem cache. (#7531)- Additional commits viewable in compare view
You can trigger a rebase of this PR 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.
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.