pro-components
pro-components copied to clipboard
chore(deps-dev): bump the npm_and_yarn group across 1 directory with 2 updates
Bumps the npm_and_yarn group with 2 updates in the / directory: esbuild and vitest.
Updates esbuild from 0.15.18 to 0.25.0
Release notes
Sourced from esbuild's releases.
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.
Fix correctness issues with the CSS nesting transform (#3620, #3877, #3933, #3997, #4005, #4037, #4038)
This release fixes the following problems:
Naive expansion of CSS nesting can result in an exponential blow-up of generated CSS if each nesting level has multiple selectors. Previously esbuild sometimes collapsed individual nesting levels using
:is()to limit expansion. However, this collapsing wasn't correct in some cases, so it has been removed to fix correctness issues./* Original code */ .parent { > .a, > .b1 > .b2 { color: red; } }/* Old output (with --supported:nesting=false) */ .parent > :is(.a, .b1 > .b2) { color: red; }
/* New output (with --supported:nesting=false) */ .parent > .a, .parent > .b1 > .b2 { color: red; }
Thanks to
@tim-wefor working on a fix.The
&CSS nesting selector can be repeated multiple times to increase CSS specificity. Previously esbuild ignored this possibility and incorrectly considered&&to have the same specificity as&. With this release, this should now work correctly:/* Original code (color should be red) */
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2022
This changelog documents all esbuild versions published in the year 2022 (versions 0.14.11 through 0.16.12).
0.16.12
Loader defaults to
jsfor extensionless files (#2776)Certain packages contain files without an extension. For example, the
yargspackage contains the fileyargs/yargswhich has no extension. Node, Webpack, and Parcel can all understand code that importsyargs/yargsbecause they assume that the file is JavaScript. However, esbuild was previously unable to understand this code because it relies on the file extension to tell it how to interpret the file. With this release, esbuild will now assume files without an extension are JavaScript files. This can be customized by setting the loader for""(the empty string, representing files without an extension) to another loader. For example, if you want files without an extension to be treated as CSS instead, you can do that like this:
CLI:
esbuild --bundle --loader:=cssJS:
esbuild.build({ bundle: true, loader: { '': 'css' }, })Go:
api.Build(api.BuildOptions{ Bundle: true, Loader: map[string]api.Loader{"": api.LoaderCSS}, })In addition, the
"type"field inpackage.jsonfiles now only applies to files with an explicit.js,.jsx,.ts, or.tsxextension. Previously it was incorrectly applied by esbuild to all files that had an extension other than.mjs,.mts,.cjs, or.ctsincluding extensionless files. So for example an extensionless file in a"type": "module"package is now treated as CommonJS instead of ESM.0.16.11
Avoid a syntax error in the presence of direct
eval(#2761)The behavior of nested
functiondeclarations in JavaScript depends on whether the code is run in strict mode or not. It would be problematic if esbuild preserved nestedfunctiondeclarations in its output because then the behavior would depend on whether the output was run in strict mode or not instead of respecting the strict mode behavior of the original source code. To avoid this, esbuild transforms nestedfunctiondeclarations to preserve the intended behavior of the original source code regardless of whether the output is run in strict mode or not:// Original code if (true) { function foo() {} console.log(!!foo) foo = null console.log(!!foo) }
... (truncated)
Commits
e9174d6publish 0.25.0 to npmc27dbebfixhostsinplugin-tests.js6794f60fixhostsinnode-unref-tests.jsde85afdMerge commit from forkda1de1bfix #4065: bitwise operators can return bigintsf4e9d19switch case liveness:defaultis always last7aa47c3fix #4028: minify live/deadswitchcases better22ecd30minify: more constant folding for strict equality4cdf03cfix #4053: reordering of.tsxinnode_modulesdc71977fix #3692:0now picks a random ephemeral port- Additional commits viewable in compare view
Updates vitest from 2.1.9 to 3.0.5
Release notes
Sourced from vitest's releases.
v3.0.5
This release includes security patches for:
🚀 Features
- ui: Insert message "no tests found" in ui - by
@DevJoaoLopesin vitest-dev/vitest#7366 (92da4)🐞 Bug Fixes
- Validate websocket request - by
@hi-ogawaand@AriPerkkioin vitest-dev/vitest#7317 (191ef)- Don't toggle cli cursor on non-TTY - by
@AriPerkkioin vitest-dev/vitest#7336 (3c805)- vite-node: Differentiate file url with hash and query - by
@hi-ogawain vitest-dev/vitest#7365 (926ca)View changes on GitHub
v3.0.4
This release includes security patches for:
🐞 Bug Fixes
- Filter projects eagerly during config resolution - by
@sheremet-vaand@AriPerkkioin vitest-dev/vitest#7313 (dff44)- Apply
development|productioncondition on Vites 6 by@hi-ogawaand@sheremet-va(#7301) (ef146)- browser: Restrict served files from
/__screenshot-error- by@hi-ogawain vitest-dev/vitest#7340 (ed9ae)- deps: Update all non-major dependencies - by
@sheremet-vain vitest-dev/vitest#7297 (38ea8)- runner: Timeout long sync hook - by
@hi-ogawain vitest-dev/vitest#7289 (c60ee)- typechecking: Support typechecking parsing with Vite 6 - by
@sheremet-vain vitest-dev/vitest#7335 (bff70)- types: Fix public types - by
@mrginglymusand@sheremet-vain vitest-dev/vitest#7328 (ce6af)View changes on GitHub
v3.0.3
🐞 Bug Fixes
- browser:
- Don't throw a validation error if v8 coverage is used with filtered instances - by
@sheremet-vain vitest-dev/vitest#7306 (fa463)- Don't fail when running --browser.headless if the browser projest is part of the workspace - by
@sheremet-vain vitest-dev/vitest#7311 (e43a8)🏎 Performance
- reporters: Update summary only when needed - by
@AriPerkkioin vitest-dev/vitest#7291 (7f36b)View changes on GitHub
v3.0.2
🐞 Bug Fixes
... (truncated)
Commits
1154662chore: release v3.0.53c8050efix: don't toggle cli cursor on non-TTY (#7336)191ef9efix: validate websocket request (#7317)9e40437chore: release v3.0.4ef1464ffix: applydevelopment|productioncondition on Vite 6 (#7301)38ea8eafix(deps): update all non-major dependencies (#7297)dff4406fix: filter projects eagerly during config resolution (#7313)ce6af70fix(types): fix public types (#7328)bff70befix(typechecking): support typechecking parsing with Vite 6 (#7335)a8d123cchore(deps): update eslint packages (#7086)- 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 <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions 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.