-
-
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.
+453
−484
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
ab35fd2 to
544532d
Compare
544532d to
dcefbd7
Compare
44e3762 to
47743f3
Compare
5e04f74 to
aa9cce4
Compare
aa9cce4 to
0c8895d
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^24.10.1->^24.10.27.0.0-dev.20251203.1->7.0.0-dev.20251208.1^0.27.0->^0.27.110.24.0->10.25.0^1.94.2->^1.95.0^0.17.0-beta.6->^0.17.2^8.0.0-beta.0->^8.0.0-beta.1^7.2.6->^7.2.7^3.6.0-alpha.2->^3.6.0-alpha.6Release Notes
farm-fe/farm (@farmfe/cli)
v2.0.0-nightly-20250827162746Compare Source
microsoft/typescript-go (@typescript/native-preview)
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
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:pnpm/pnpm (pnpm)
v10.25.0Compare Source
sass/dart-sass (sass)
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.2Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.17.1Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.17.0Compare Source
🚨 Breaking Changes
Notable features: https://bsky.app/profile/sxzz.dev/post/3m6xi7e7d5k2b
failOnWarnby default in CI - by @sxzz in #617 (245e7)unconfigfrom configLoader - by @sxzz (9d6a7)profilevalue fromesmOnlytoesm-only- by @sxzz (85c10f3)🚀 Features
WatchPlugin- by @sxzz (4ccb2)writeoption - by @sxzz (64fea)build:donehook - by @sxzz (eb45c)1.0.0-beta.53- by @sxzz (a04f2)optionalDependencies- by @sxzz (22fd9)ast-grepfor config file - by @Doctor-wu and @sxzz in #620 (b0b34)🐞 Bug Fixes
requirebeforeimport- by @sxzz (85c0e)🏎 Performance
import-without-cache- by @sxzz (0b7e4)View changes on GitHub
vitejs/vite (vite)
v8.0.0-beta.1Compare Source
Features
Bug Fixes
Miscellaneous Chores
vuejs/core (vue)
v3.6.0-alpha.6Compare Source
For stable releases, please refer to CHANGELOG.md for details.
For pre-releases, please refer to CHANGELOG.md of the
minorbranch.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.