-
-
Notifications
You must be signed in to change notification settings - Fork 13
fix(deps): update all non-major dependencies #188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/all-minor-patch
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,104
−1,251
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
|
commit: |
7340f05 to
1f546ae
Compare
1f546ae to
77445f6
Compare
8437f2f to
7d3db18
Compare
d51daac to
594d842
Compare
594d842 to
d6b2f11
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
5264693 to
ebfd8b3
Compare
44e3762 to
47743f3
Compare
ddd8c9a to
83d706e
Compare
83d706e to
0b8531b
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
2.0.0-nightly-20250411100807->2.0.0-nightly-202508271627462.0.0-nightly-20250411141103->2.0.0-nightly-20250827162746^1.6.6->^1.6.7^1.6.6->^1.6.7^1.15.3->^1.15.4^7.4.1->^7.4.3^0.5.13->^0.5.14^24.10.1->^24.10.47.0.0-dev.20251203.1->7.0.0-dev.20251214.1^6.0.2->^6.0.3^0.27.0->^0.27.1^9.39.1->^9.39.210.24.0->10.25.01.0.0-beta.53->1.0.0-beta.54^1.94.2->^1.96.0^0.17.0-beta.6->^0.17.4^0.5.5->^0.5.6^8.0.0-beta.0->^8.0.0-beta.2^7.2.6->^7.2.7^3.6.0-alpha.2->^3.6.0-alpha.7Release Notes
farm-fe/farm (@farmfe/cli)
v2.0.0-nightly-20250827162746Compare Source
web-infra-dev/rspack (@rspack/cli)
v1.6.7Compare Source
Highlights 💡
🎉 Support for
import.meta.filename,import.meta.dirname, andimport.meta.resolveRspack now supports the
import.meta.filename,import.meta.dirname, andimport.meta.resolvemeta properties in ESM modules.These properties provide a standardized way to access file and directory paths in ES modules, similar to the CommonJS
__filenameand__dirnamevariables:Thanks to @magic-akari for this contribution!
What's Changed
New Features 🎉
import.meta.filename/dirname/resolveby @magic-akari in #12317[relative-resource-path]in moduleFilenameTemplate by @SyMind in #12370Bug Fixes 🐞
Refactor 🔨
.rspack[...]syntax and rebrand CSS extract plugin internals by @LingyuCoder in #12385Other Changes
Full Changelog: web-infra-dev/rspack@v1.6.6...v1.6.7
swc-project/swc (@swc/core)
v1.15.4Compare Source
Bug Fixes
(es/compat) Preserve return value for single-property object destructuring (#11334) (847ad22)
(es/compat) Fix generator transform for compound assignments, for-in, and labeled break (#11339) (9b6bedd)
(es/compat) Destructuring evaluation order (#11337) (49d04c7)
(es/compat) Fix parameter default value evaluation order with object rest (#11352) (2ebb261)
(es/fixer) Preserve parens around IFFE in binary expressions within sequences (#11324) (a4c84ea)
(es/helpers) Avoid extra trap calls on excluded keys in object rest spread (#11338) (4662caf)
(es/minifier) Fix
debugcargo feature (#11325) (be86fad)(es/minifier) Fix optimization pass for
merge_imports(#11331) (ca2f7ed)(es/parser) Don't call
bump_bytesin thecontinue_ifofbyte_search!(#11328) (583619d)(es/parser) Support type-only string literal in import specifiers (#11333) (07762f1)
(es/parser) Handle TypeScript expressions in destructuring patterns (#11353) (160ec34)
(es/transformer) Complete
replace_this_in_exprimplementation (#11361) (58c4067)(es/transformer) Fix pass order (#11370) (373048a)
Features
(es/minifier) Optimize
typeof x == "undefined"totypeof x > "u"(#11367) (a5e144b)(es/parser) Support
no_parenparser option (#11359) (5b9d77c)(es/parser) Revert
no_parenparser option (#11362) (57a8731)(es/transfomer) Add modules to prepare porting (#11347) (68d740c)
(es/transform) Add common fields (#11346) (1a8759f)
(es/transformer) Merge
async-to-generator(#11355) (c388e87)(es/transformer) Merge
async_to_generator(#11358) (25f3a47)(es/transformer) Merge
object_rest_spread(#11357) (752188e)(es/transformer) Merge
nullish_coalescing(#11365) (5fb686a)(es/transformer) Merge
logical_assignment_operators(#11369) (94946fa)Performance
(es/compat) Merge
exponentation_operator(#11310) (0ef3637)(es/compat) Merge
optional_catch_binding(#11313) (468d20c)(es/compat) Use merged transformer (#11366) (c4a5e79)
(es/parser) Optimize
byte_search!(#11323) (67f67c1)(es/parser) Small optimization after byte-based lexer (#11340) (c92ea4e)
(es/parser) Use
slicerather than matching keywords (#11341) (b6ad2cb)(parser) Make all parsers work by byte instead of char (#11318) (725efd1)
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
sxzz/test-utils (@sxzz/test-utils)
v0.5.14Compare Source
🐞 Bug Fixes
View changes on GitHub
microsoft/typescript-go (@typescript/native-preview)
v7.0.0-dev.20251214.1Compare Source
v7.0.0-dev.20251213.1Compare Source
v7.0.0-dev.20251212.1Compare Source
v7.0.0-dev.20251211.1Compare Source
v7.0.0-dev.20251210.1Compare Source
v7.0.0-dev.20251209.1Compare Source
v7.0.0-dev.20251208.1Compare Source
v7.0.0-dev.20251207.1Compare Source
v7.0.0-dev.20251206.1Compare Source
v7.0.0-dev.20251205.1Compare Source
v7.0.0-dev.20251204.1Compare Source
vitejs/vite-plugin-vue (@vitejs/plugin-vue)
v6.0.3Features
Bug Fixes
Performance Improvements
Miscellaneous Chores
evanw/esbuild (esbuild)
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.25.0Compare Source
rolldown/rolldown (rolldown)
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
sass/dart-sass (sass)
v1.96.0Compare Source
zero denominator units) to be emitted to CSS. These are now emitted as
calc()expressions, which now support complex units in plain CSS.v1.95.1Compare Source
v1.95.0Compare Source
Add support for the CSS-style
if()function. In addition to supporting theplain CSS syntax, this also supports a
sass()query that takes a Sassexpression that evaluates to
trueorfalseat preprocessing time dependingon whether the Sass value is truthy. If there are no plain-CSS queries, the
function will return the first value whose query returns true during
preprocessing. For example,
if(sass(false): 1; sass(true): 2; else: 3)returns
2.The old Sass
if()syntax is now deprecated. Users are encouraged to migrateto the new CSS syntax.
if($condition, $if-true, $if-false)can be changed toif(sass($condition): $if-true; else: $if-false).See the Sass website for details.
Plain-CSS
if()functions are now considered "special numbers", meaning thatthey can be used in place of arguments to CSS color functions.
Plain-CSS
if()functions andattr()functions are now considered "specialvariable strings" (like
var()), meaning they can now be used in place ofmultiple arguments or syntax fragments in various CSS functions.
v1.94.3Compare Source
%expressions followed by whitespace.rolldown/tsdown (tsdown)
v0.17.4Compare Source
🚨 Breaking Changes
rollup-plugin-copy](https://redirect.github.com/vladshchConfiguration
📅 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.