fix(deps): update all non-major dependencies#116
Merged
chenjiahan merged 1 commit intomainfrom Apr 6, 2026
Merged
Conversation
fcaef24 to
39580fc
Compare
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
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.66.12→^2.66.132.0.0-beta.7→2.0.0-rc.2^1.15.21→^1.15.24^5.96.1→^5.96.2^24.12.0→^24.12.2^0.27.4→^0.28.0^7.2.0→^7.3.0^10.29.0→^10.29.1^7.72.0→^7.72.1^7.13.2→^7.14.0^7.13.1→^7.14.0^1.0.0-rc.12→^1.0.0-rc.13^6.1.19→^6.3.12^3.5.31→^3.5.32^3.5.30→^3.5.32^4.0.4→^4.0.5Release Notes
arco-design/arco-design (@arco-design/web-react)
v2.66.13Compare Source
🐛 BugFix
ResizeBox.SplitGroupcomponent did not take effect during actual resizing operations.(#3161)Selectcomponent.(#3160)DatePickercomponent.(#3159)tabsat specific window positions.(#3158)🐛 问题修复
ResizeBox.SplitGroup组件时,为右侧区域配置了 max 属性,但实际缩放操作时,该最大宽度限制并未生效问题(#3161)Select的triggerProps设置宽度后及定位设置失效问题(#3160)DatePicker组件通过disabledDate禁用今天之后,底部的“今天”快捷选择按钮仍然可以点击的问题(#3159)Tabs在特定窗口位置会出现无限抖动问题(#3158)rstackjs/rspack-dev-server (@rspack/dev-server)
v2.0.0-rc.2Compare Source
What's Changed
Full Changelog: rstackjs/rspack-dev-server@v2.0.0-rc.1...v2.0.0-rc.2
v2.0.0-rc.1Compare Source
What's Changed
Full Changelog: rstackjs/rspack-dev-server@v2.0.0-rc.0...v2.0.0-rc.1
v2.0.0-rc.0Compare Source
What's Changed
Full Changelog: rstackjs/rspack-dev-server@v2.0.0-beta.7...v2.0.0-rc.0
swc-project/swc (@swc/core)
v1.15.24Compare Source
Bug Fixes
(es/decorators) Scope 2023-11 implicit-global rewrite to decorator-lifted exprs (#11743) (1c01bbb)
(es/minifier) Handle
toExponential(undefined)(#11583) (cd94a31)(es/minifier) Cap deep if_return conditional chains (#11758) (a92fa3e)
(es/minifier) Inline prop shorthand in computed props (#11760) (71feafb)
(es/parser) Parse key Flow forms from #11729 (phase 1) (#11733) (886fe53)
(es/parser) Close remaining Flow parser gaps for #11729 (phase 2) (#11740) (8d36f05)
(es/regexp) Preserve source for wrapped named groups (#11757) (7e56fe5)
(html/codegen) Keep
for span-parent paragraphs (#11756) (ede9950)(swc_common) Make
eat_byteunsafe to prevent UTF-8 boundary violation (#11731) (669a659)Features
(es/minifier) Remove useless arguments for non inlined callee (#11645) (bab249e)
(react-compiler) Advance SWC parity for upstream fixtures (#11724) (468da70)
(react-compiler) Tighten core validation parity for upstream fixtures (#11734) (7e2cf8d)
(react-compiler) Improve SWC parity for early-return and hooks validation (#11738) (4739c58)
(react-compiler) M1 memo validators + lint gating alignment (#11739) (7e1ad26)
(react-compiler) Improve Stage A diagnostic parity and validation aggregation (#11745) (0e2075e)
(react-compiler) Continue swc parity for dependency handling (#11747) (83688c8)
Refactor
(es/minifier) Inline usage analyzer and remove crate (#11750) (7d8d11b)
(react-compiler) Remove compiler impl and keep fast_check (#11753) (f21d336)
Ci
Add manual Publish crates workflow (#11763) (169c961)
Add misc npm publish workflow (#11764) (236eff0)
TanStack/query (@tanstack/react-query)
v5.96.2Compare Source
Patch Changes
evanw/esbuild (esbuild)
v0.28.0Compare Source
Add support for
with { type: 'text' }imports (#4435)The import text proposal has reached stage 3 in the TC39 process, which means that it's recommended for implementation. It has also already been implemented by Deno and Bun. So with this release, esbuild also adds support for it. This behaves exactly the same as esbuild's existing
textloader. Here's an example:Add integrity checks to fallback download path (#4343)
Installing esbuild via npm is somewhat complicated with several different edge cases (see esbuild's documentation for details). If the regular installation of esbuild's platform-specific package fails, esbuild's install script attempts to download the platform-specific package itself (first with the
npmcommand, and then with a HTTP request toregistry.npmjs.orgas a last resort).This last resort path previously didn't have any integrity checks. With this release, esbuild will now verify that the hash of the downloaded binary matches the expected hash for the current release. This means the hashes for all of esbuild's platform-specific binary packages will now be embedded in the top-level
esbuildpackage. Hopefully this should work without any problems. But just in case, this change is being done as a breaking change release.Update the Go compiler from 1.25.7 to 1.26.1
This upgrade should not affect anything. However, there have been some significant internal changes to the Go compiler, so esbuild could potentially behave differently in certain edge cases:
You can read the Go 1.26 release notes for more information.
v0.27.7Compare Source
Fix lowering of define semantics for TypeScript parameter properties (#4421)
The previous release incorrectly generated class fields for TypeScript parameter properties even when the configured target environment does not support class fields. With this release, the generated class fields will now be correctly lowered in this case:
v0.27.5Compare Source
Fix for an async generator edge case (#4401, #4417)
Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code:
Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with
--supported:async-generator=false). The transformation should be fixed starting with this release.This fix was contributed by @2767mr.
Fix a regression when
metafileis enabled (#4420, #4418)This release fixes a regression introduced by the previous release. When
metafile: truewas enabled in esbuild's JavaScript API, builds with build errors were incorrectly throwing an error about an empty JSON string instead of an object containing the build errors.Use define semantics for TypeScript parameter properties (#4421)
Parameter properties are a TypeScript-specific code generation feature that converts constructor parameters into class fields when they are prefixed by certain keywords. When
"useDefineForClassFields": trueis present intsconfig.json, the TypeScript compiler automatically generates class field declarations for parameter properties. Previously esbuild didn't do this, but esbuild will now do this starting with this release:Allow
es2025as a target intsconfig.json(#4432)TypeScript recently added
es2025as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2025" } }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.
krisk/Fuse (fuse.js)
v7.3.0Compare Source
Features
Bug Fixes
preactjs/preact (preact)
v10.29.1Compare Source
Fixes
Maintenance
.test.js->.test.jsxwhen JSX is used (#5058, thanks @marvinhagemeister)react-hook-form/react-hook-form (react-hook-form)
v7.72.1: Version 7.72.1Compare Source
🐞 fix: add isDirty check for numeric string keys in defaultValues (issue #13346) (#13347)
🐞 fix: prevent setValue with shouldDirty from polluting unrelated dirty fields (#13326)
🐞 fix: memoize control in HookFormControlContext to prevent render conflicts (#13272) (#13312)
🐞 fix: isNameInFieldArray should check all ancestor paths for nested field arrays (#13318)
🐞 fix: #13320 formState.isValid incorrect on Controller re-mount (#13324)
thanks to @6810779s, @candymask0712, @olagokemills, @shahmir-oscilar & @bae080311
remix-run/react-router (react-router-dom)
v7.14.0Compare Source
Patch Changes
[email protected]rolldown/rolldown (rolldown)
v1.0.0-rc.13Compare Source
🚀 Features
🐛 Bug Fixes
meta.chunksinrenderChunkhook (#8956) by @sapphi-redvite-test-ubuntuwhen build is skipped (#8934) by @Copilot🚜 Refactor
create_ecma_viewreturn destructuring and remove redundant binding (#8932) by @shulaoda📚 Documentation
🧪 Testing
⚙️ Miscellaneous Tasks
@emnapi/runtimeand@emnapi/coreas direct deps of@rolldown/browser(#8978) by @Copilottype-checkscripts (#8957) by @sapphi-red❤️ New Contributors
vuejs/core (vue)
v3.5.32Compare Source
Bug Fixes
Reverts
vuetifyjs/vuetify (vuetify)
v4.0.5Compare Source
🔧 Bug Fixes
🧪 Labs
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.