fix(deps): update all non-major dependencies - autoclosed #25
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^7.2.10->^7.4.3^2.2.5->^2.2.6^24.10.1->^24.10.4^10.3.1->^10.3.2^0.27.0->^0.27.2^9.39.1->^9.39.210.22.0->10.26.0^3.6.2->^3.7.4^1.0.0-beta.50->^1.0.0-beta.55^4.53.2->^4.53.5^0.16.5->^0.18.1^2.3.10->^2.3.11^7.2.2->^7.3.0^4.0.10->^4.0.16Release Notes
sxzz/eslint-config (@sxzz/eslint-config)
v7.4.3Compare Source
No significant changes
View changes on GitHub
v7.4.2Compare Source
No significant changes
View changes on GitHub
v7.4.1Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.4.0Compare Source
🚀 Features
ignoreFeatures- by @sxzz (d0b1f)View changes on GitHub
v7.3.2Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.3.1Compare Source
🐞 Bug Fixes
View changes on GitHub
v7.3.0Compare Source
🚀 Features
View changes on GitHub
sxzz/prettier-config (@sxzz/prettier-config)
v2.2.6Compare Source
🐞 Bug Fixes
View changes on GitHub
antfu-collective/bumpp (bumpp)
v10.3.2Compare Source
🐞 Bug Fixes
View changes on GitHub
evanw/esbuild (esbuild)
v0.27.2Compare Source
Allow import path specifiers starting with
#/(#4361)Previously the specification for
package.jsondisallowed import path specifiers starting with#/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping#/*to./src/*(previously you had to use another character such as#_*instead, which was more confusing). There is some more context in nodejs/node#49182.This change was contributed by @hybrist.
Automatically add the
-webkit-maskprefix (#4357, #4358)This release automatically adds the
-webkit-vendor prefix for themaskCSS shorthand property:This change was contributed by @BPJEnnova.
Additional minification of
switchstatements (#4176, #4359)This release contains additional minification patterns for reducing
switchstatements. Here is an example:Forbid
usingdeclarations insideswitchclauses (#4323)This is a rare change to remove something that was previously possible. The Explicit Resource Management proposal introduced
usingdeclarations. These were previously allowed insidecaseanddefaultclauses inswitchstatements. This had well-defined semantics and was already widely implemented (by V8, SpiderMonkey, TypeScript, esbuild, and others). However, it was considered to be too confusing because of how scope works in switch statements, so it has been removed from the specification. This edge case will now be a syntax error. See tc39/proposal-explicit-resource-management#215 and rbuckton/ecma262#14 for details.Here is an example of code that is no longer allowed:
That code will now have to be modified to look like this instead (note the additional
{and}block statements around each case body):This is not being released in one of esbuild's breaking change releases since this feature hasn't been finalized yet, and esbuild always tracks the current state of the specification (so esbuild's previous behavior was arguably incorrect).
v0.27.1Compare Source
Fix bundler bug with
varnested insideif(#4348)This release fixes a bug with the bundler that happens when importing an ES module using
require(which causes it to be wrapped) and there's a top-levelvarinside anifstatement without being wrapped in a{ ... }block (and a few other conditions). The bundling transform needed to hoist thesevardeclarations outside of the lazy ES module wrapper for correctness. See the issue for details.Fix minifier bug with
forinsidetryinside label (#4351)This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the
trystatement to address a problem with transforming labeledfor awaitloops to avoid theawait(the transformation involves converting thefor awaitloop into aforloop and wrapping it in atrystatement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply toforloops that esbuild itself generates internally as part of thefor awaittransform. Here is an example of some affected code:Inline IIFEs containing a single expression (#4354)
Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single
returnstatement. Now it should also work if the body contains a single expression statement instead:The minifier now strips empty
finallyclauses (#4353)This improvement means that
finallyclauses containing dead code can potentially cause the associatedtrystatement to be removed from the output entirely in minified builds:Allow tree-shaking of the
SymbolconstructorWith this release, calling
Symbolis now considered to be side-effect free when the argument is known to be a primitive value. This means esbuild can now tree-shake module-level symbol variables:eslint/eslint (eslint)
v9.39.2Compare Source
pnpm/pnpm (pnpm)
v10.26.0Compare Source
v10.25.0Compare Source
v10.24.0Compare Source
v10.23.0: pnpm 10.23Compare Source
Minor Changes
--lockfile-onlyoption topnpm list#10020.Patch Changes
pnpm self-updateshould download pnpm from the configured npm registry #10205.pnpm self-updateshould always install the non-executable pnpm package (pnpm in the registry) and never the@pnpm/exepackage, when installing v11 or newer. We currently cannot ship@pnpm/exeaspkgdoesn't work with ESM #10190.pnpm add, if there's aengines.runtimesetting declared inpackage.json#10209.pnpm listandpnpm whynow display npm: protocol for aliased packages (e.g.,foo npm:[email protected]) #8660.pnpm store pruneshould not fail if the store contains Node.js packages #10131.Platinum Sponsors
Gold Sponsors
prettier/prettier (prettier)
v3.7.4Compare Source
diff
LWC: Avoid quote around interpolations (#18383 by @kovsu)
TypeScript: Fix comment inside union type gets duplicated (#18393 by @fisker)
TypeScript: Fix unstable comment print in union type comments (#18395 by @fisker)
v3.7.3Compare Source
diff
API: Fix
prettier.getFileInfo()change that breaks VSCode extension (#18375 by @fisker)An internal refactor accidentally broke the VSCode extension plugin loading.
v3.7.2Compare Source
diff
JavaScript: Fix string print when switching quotes (#18351 by @fisker)
JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @kovsu)
TypeScript: Fix comment in empty type literal (#18364 by @fisker)
v3.7.1Compare Source
diff
API: Fix performance regression in doc printer (#18342 by @fisker)
Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.
v3.7.0Compare Source
diff
🔗 Release Notes
rolldown/rolldown (rolldown)
v1.0.0-beta.55Compare Source
🚀 Features
inlineDynamicImportsoptions (#7539) by @Copilotmemfsfromrolldown/experimentalfor browser builds (#7490) by @CopilotpostBannerandpostFooter(#7487) by @sevenc-nanashirolldown_plugin_lazy_compilation(#7488) by @hyf0experimental.transform_hires_sourcemap: 'boundary'by default (#7478) by @sapphi-red🐛 Bug Fixes
output.exports,output.format,output.hash_characters(#7542) by @sapphi-red__proto__export for module namespace correctly (#7534) by @sapphi-red__proto__export correctly (#7533) by @sapphi-redminify: 'dce-only'(#7520) by @sapphi-redInfinityfor chunk_limit (#7497) by @shulaodano entry found for keyerror when merging CJS namespace exports (#7474) by @sapphi-red🚜 Refactor
experimental.hmrtoexperimental.devMode(#7527) by @hyf0📚 Documentation
closeBundlebehavior (#7525) by @sapphi-red🧪 Testing
crates/rolldown/tests/rollup(#7480) by @sapphi-red⚙️ Miscellaneous Tasks
banner/footer/intro/outrofor config variants (#7532) by @sapphi-reddce/dce_of_decoratorsesbuild test is now passing (#7531) by @sapphi-red.github/instructions/bug-investigation.instructions.md(#7506) by @sapphi-red❤️ New Contributors
v1.0.0-beta.54Compare Source
🚀 Features
CIRCULAR_REEXPORTerror (#7337) by @Copilot🐛 Bug Fixes
yarnPnpoption when pnp is detected (#5791) by @sapphi-redprocess.on('exit')instead ofsignal-exiton webcontainers (#7421) by @sapphi-redimportswhen an import is removed (#7348) by @sapphi-redNormalizedInputOptions#cwdshould always exists (#7360) by @hyf0🚜 Refactor
scripts/src/esbuild-tests(#7377) by @sapphi-red📚 Documentation
pluginTimingsdocumentation with detection mechanism (#7428) by @shulaoda🧪 Testing
--grepwork and document it (#7431) by @sapphi-redwatchChangehookcreate/deletetests (#7349) by @sapphi-redcontinuous generate hmr patchanddebounce bundletests (#7368) by @hyf0⚙️ Miscellaneous Tasks
ignoreReasonsdue to architectural limitation (#7434) by @Copilotjust update-esbuild-diffand add it to CI (#7404) by @sapphi-redtsconfig: truein rust tests (#7389) by @sapphi-redtest-dev-server(#7351) by @hyf0SymbolRefFlags(#7358) by @IWANABETHATGUY❤️ New Contributors
v1.0.0-beta.53Compare Source
💥 BREAKING CHANGES
i686-pc-windows-msvctarget support (#7230) by @sapphi-red🚀 Features
isLegacycallback ([#7321]Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.