chore(deps): update npm (runtime) - #64
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/npm-(runtime)
branch
from
July 8, 2025 10:46
2e79a4b to
8cee8f2
Compare
renovate
Bot
force-pushed
the
renovate/npm-(runtime)
branch
from
July 16, 2025 20:00
8cee8f2 to
8bde9aa
Compare
renovate
Bot
force-pushed
the
renovate/npm-(runtime)
branch
from
July 22, 2025 08:42
8bde9aa to
a9cf7b2
Compare
renovate
Bot
force-pushed
the
renovate/npm-(runtime)
branch
from
July 23, 2025 07:09
a9cf7b2 to
736e611
Compare
renovate
Bot
force-pushed
the
renovate/npm-(runtime)
branch
from
July 23, 2025 09:10
736e611 to
03e72ba
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:
5.1.1→5.9.13.9.0→3.10.04.1.0→4.4.01.4.2→1.5.00.525.0→0.577.01.4.2→1.6.719.1.0→19.3.09.8.0→9.14.019.1.0→19.3.07.60.0→7.89.07.6.3→7.18.42.0.6→2.0.83.3.1→3.7.03.25.74→3.25.76Release Notes
react-hook-form/resolvers (@hookform/resolvers)
v5.9.1Compare Source
v5.9.0Compare Source
Features
v5.8.0Compare Source
v5.7.1Compare Source
v5.7.0Compare Source
Features
v5.6.0Compare Source
v5.5.8Compare Source
Bug Fixes
v5.5.7Compare Source
v5.5.6Compare Source
v5.5.5Compare Source
Bug Fixes
v5.5.4Compare Source
Bug Fixes
v5.5.3Compare Source
Bug Fixes
v5.5.2Compare Source
v5.5.1Compare Source
Bug Fixes
v5.5.0Compare Source
Features
v5.4.3Compare Source
Bug Fixes
v5.4.2Compare Source
Bug Fixes
a21e723)b7bb3f9)v5.4.1Compare Source
Bug Fixes
v5.4.0Compare Source
Features
Fixes
yupResolver(useForm context) (#835) (3d29924)v5.2.2Compare Source
Bug Fixes
v5.2.1Compare Source
Bug Fixes
v5.2.0Compare Source
Features
alibaba/hooks (ahooks)
v3.10.0Compare Source
ahooks 3.10.0
中文
新功能与增强
useAsyncEffect支持同步返回清理函数,在依赖变化和卸载时由 React 执行清理。注意:这不支持async () => cleanup,异步函数返回的清理函数不在本次支持范围内。#2958useLocalStorageState新增getInitialValueInEffect,允许挂载后再读取存储,以避免 SSR hydration 不一致。#2906useSetState支持省略初始状态,返回状态类型为Partial<T>。#2905useAntdTable支持表单实例的validateFieldsReturnFormatValue,兼容 ProForm 的transform。修复
useRequest修复被取消或被后续调用覆盖时的异步调用悬挂问题,并提供CancelledError/isCancelledError。#2951useRequest修复节流场景下runAsync不生效,以及ready=false时防抖前沿调用影响后续请求的问题。#2899、#2946useRequest修复默认参数场景的类型推导,并在删除缓存时清理相关定时器。#2907、#2909useInfiniteScroll修复首次loadMore期间闭包读取旧数据的问题。#2896useKeyPress修复exactMatch下修饰键的keyup事件匹配。#2944useLongPress修复 Pointer Events 支持。#2947useTheme为旧版 Safari 提供媒体查询监听回退。#2916useEventListener显式泛型与 ref target 的兼容性,并保留非空 ref 的返回类型。#2903、#2956intersection-observer依赖。#2904升级注意
runAsync/refreshAsync被取消或被新调用覆盖时,会以CancelledError拒绝,而不再一直保持 pending。直接调用这些异步 API 的代码应捕获异常,并用isCancelledError区分取消与业务错误;run/refresh会内部处理取消。English
Features and enhancements
useAsyncEffect, with React managing cleanup on dependency changes and unmount. Returning cleanup from anasynccallback remains unsupported. #2958getInitialValueInEffecttouseLocalStorageStateto defer storage reads until after mount and avoid SSR hydration mismatches. #2906useSetStatewithout an initial state, returningPartial<T>. #2905transforminuseAntdTablethroughvalidateFieldsReturnFormatValue.Fixes
useRequestasynchronous calls withCancelledError; exportCancelledErrorandisCancelledError. #2951runAsynccalls and debounce leading behavior whileready=false. #2899, #2946loadMoreinuseInfiniteScroll. #2896keyupmatching withexactMatchinuseKeyPress. #2944useLongPress. #2947useThemefor older Safari versions. #2916useEventListener, and preserve non-nullable ref return types. #2903, #2956intersection-observerdependency. #2904Upgrade note
Cancelled or superseded
runAsync/refreshAsynccalls now reject withCancelledErrorinstead of remaining pending. Catch errors when using these APIs directly and useisCancelledErrorto distinguish cancellation from service errors.run/refreshhandle cancellation internally.Full changelog: alibaba/hooks@v3.9.7...v3.10.0
v3.9.7Compare Source
What's Changed
🐛 Bug 修复
useInfiniteScroll使用requestAnimationFrame来更新滚动位置。useRequest在ready=false时runAsync未立即返回的问题(无 pending 状态)。useKeyPress添加了旧版 key 别名以提高兼容性。useRafInterval在执行函数内部调用clear无效的问题。🛠️ 代码重构
useUpdate中的useCallback替换为useMemoizedFn。useIsomorphicLayoutEffect中使用noop替代useEffect。🔧 性能优化
📖 文档更新
alt属性以提升可访问性。🐛 Bug Fixes
requestAnimationFrameto update scroll position inuseInfiniteScrollin #2881.runAsyncdid not return immediately whenready=false(no pending) inuseRequestin #2866.useKeyPressin #2900.clearinside the execution function ofuseRafIntervaldid not take effect in #2884.🛠️ Code Refactoring
useCallbackwithuseMemoizedFninuseUpdatein #2887.noopinstead ofuseEffectinuseIsomorphicLayoutEffectin #2859.🔧 Performance
📖 Documentation Updates
altattributes to discussion group images for accessibility in #2892.New Contributors
Full Changelog: alibaba/hooks@v3.9.6...v3.9.7
v3.9.6Compare Source
What's Changed
Full Changelog: alibaba/hooks@v3.9.5...v3.9.6
v3.9.5Compare Source
What's Changed
New Contributors
Full Changelog: alibaba/hooks@v3.9.4...v3.9.5
v3.9.4Compare Source
What's Changed
💪 chore: 测试命令改进。由 @Meet-student 贡献,详情见 PR #2835
🐞 fix: 修复 reloadAsync runAsync 负载问题。由 @Meet-student 贡献,详情见 PR #2836
💪 chore: Test command improvement. Contributed by @Meet-student, see PR #2835 for details.
🐞 fix: Fix the payload issue of reloadAsync runAsync. Contributed by @Meet-student, see PR #2836 for details.
Full Changelog: alibaba/hooks@v3.9.3...v3.9.4
v3.9.3Compare Source
What's Changed
useRequest在配置cachekey后,某些情况下不执行onSuccess方法的问题 (#2035) @xun-zi #2255useMount返回 Promise 的问题 @Meet-student #2833onSuccessmethod ofuseRequestwas not executed in some cases after configuringcachekey(#2035) @xun-zi #2255useMountreturning a Promise @Meet-student #2833New Contributors
Full Changelog: alibaba/hooks@v3.9.1...v3.9.3
v3.9.2Compare Source
v3.9.1Compare Source
What's Changed
New Contributors
Full Changelog: alibaba/hooks@v3.9.0...v3.9.1
date-fns/date-fns (date-fns)
v4.4.0Compare Source
This release revisits the approach to CDN usage and introduces a new package,
@date-fns/cdnand deprecates thedate-fnsCDN scripts. It allowed reducing the zipped package size from5.83 MBdown to3.96 MBwithout introducing any breaking changes.In
v5.0.0-alpha.0where CDN scripts are completely removed fromdate-fnsthe change is more significant and brings the zipped package size down to2.89 MB.It is just the first step in optimizing the package size. Expect further size reduction in the future v4 and v5 versions.
Changed
DEPRECATED: The
date-fnsCDN scripts are now deprecated and will be removed in the next major release. Please switch to the new@date-fns/cdnpackage for CDN usage.Removed CDN source maps to reduce the package size. If you rely on them, please switch to the new
@date-fns/cdnpackage that still includes them.v4.3.0Compare Source
Kudos to @ImRodry and @puneetdixit200 for their contributions.
Fixed
Fixed missing modularized optimization fallback (for Next.js and others). See #4193.
Fixed
ptlocale first day of week to be Sunday. See #4195 by @ImRodry.Fixed
zh-CN,zh-HK, andzh-TWlocale month parsing for October, November, and December. See #4194 by @puneetdixit200.v4.2.1Compare Source
Fixed
v4.2.0Compare Source
This is a minor release in all senses, it only includes documentation updates (first of many) that points to the new You Don't Need date-fns* page.
* Not really
Changed
add,addBusinessDays, andaddDays.guilhermerodz/input-otp (input-otp)
v1.5.0Compare Source
Promotes the safe 1.5.0-beta.2 code without functional changes. Everything in this release is backwards-compatible: no public type changes and no behavior changes beyond the bug fixes below. Two beta.1 experiments are deliberately excluded — the iOS native-selection workaround (the thin native selection artifact remains a known cosmetic limitation) and the
onCompletetype narrowing, which returns in 2.0.0 as a documented breaking change.ResizeObserverbefore observing--root-heightresolves, preventing iOS focus zoomnonceprop for Content-Security-Policy supportselectionchangelistenerlucide-icons/lucide (lucide-react)
v0.577.0: Version 0.577.0Compare Source
What's Changed
ellipseicon by @KISHORE-KUMAR-S in #3749New Contributors
Full Changelog: lucide-icons/lucide@0.576.0...0.577.0
v0.576.0: Version 0.576.0Compare Source
What's Changed
package-*icons. by @karsa-mistmere in #4074receipticon by @karsa-mistmere in #4075cuboidicon tags and categories by @karsa-mistmere in #4095cuboidicon by @jamiemlaw in #4098fishing-rodicon by @7ender in #3839Full Changelog: lucide-icons/lucide@0.575.0...0.576.0
v0.575.0: Version 0.575.0Compare Source
What's Changed
message-square-checkicon by @karsa-mistmere in #4076metronomeicon by @edwloef in #4063file-pen-lineicon by @jguddas in #3970square-arrow-right-exitandsquare-arrow-right-entericons by @EthanHazel in #3958flip-*tosquare-centerline-dashed-*by @jguddas in #3945New Contributors
Full Changelog: lucide-icons/lucide@0.573.0...0.575.0
v0.574.0: Version 0.574.0Compare Source
What's Changed
rocking-chairicon by @jamiemlaw in #3445coinsicon by @jguddas in #3158x-line-topicon by @jguddas in #2838mouse-lefticon by @marvfash in #2788mouse-righticon by @marvfash in #2787New Contributors
Full Changelog: lucide-icons/lucide@0.572.0...0.574.0
v0.573.0: Version 0.573.0Compare Source
What's Changed
rocking-chairicon by @jamiemlaw in #3445coinsicon by @jguddas in #3158x-line-topicon by @jguddas in #2838mouse-lefticon by @marvfash in #2788mouse-righticon by @marvfash in #2787New Contributors
Full Changelog: lucide-icons/lucide@0.572.0...0.573.0
v0.572.0: Version 0.572.0Compare Source
What's Changed
message-circle-checkicon by @Shrinks99 in #3770New Contributors
Full Changelog: lucide-icons/lucide@0.571.0...0.572.0
v0.571.0: Version 0.571.0Compare Source
What's Changed
circle-icons path and circle order by @adamlindqvist in #3746shelving-uniticon by @karsa-mistmere in #3041New Contributors
Full Changelog: lucide-icons/lucide@0.570.0...0.571.0
v0.570.0: Version 0.570.0Compare Source
What's Chan
Configuration
📅 Schedule: (in timezone Europe/Madrid)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.