1 hours ago
next.js

v16.1.0-canary.22

Misc Changes

  • [turbopack] Rename graph traversal algorithms: #87119
  • Turbopack: Inline uses of the SliceMap type alias: #87122
  • [ci] Bump Lerna to 5.x: #87180
  • [ci] Downgrade Lerna to 4.0.0: #87187
  • [ci] Bump Lerna to latest: #87188

Credits

Huge thanks to @lukesandberg, @bgw, and @eps1lon for helping!

2 hours ago
ant-design

6.1.1

  • 🐞 Fix DatePicker cannot support webpack 4: Can't resolve '@rc-component/picker/locale/en_US'. #56219 @afc163
  • 🐞 Fix ColorPicker inconsistent input heights. #56220 @ug-hero
  • 🐞 Fix notification default background color not white when cssVar is disabled. #56169 @wanpan11
  • 🐞 Fix Input border missing when focused on Space.Compact with allowClear prop. #56105 @tuzixiangs
  • 🐞 Fix vertical Splitter incorrect collapse behavior in RTL mode, RTL flipping is now applied only to horizontal layouts #56179 @QDyanbing
  • 🐞 Fix Result not passing through data-* and aria-* attributes to the root DOM element. #56165 @QDyanbing
  • 🐞 MISC: theme.cssVar.prefix and theme.cssVar.key now respect empty string value. #56146 @QDyanbing
  • 💄 Lift Breadcrumb link style priority. #56137 @guoyunhe
  • 🐞 Fix ConfigProvider closable.placement not working. #55985 @meet-student
  • 🐞 Fix Form onValuesChange params missing Form.List nested content. #56129 @zombieJ
  • 🐞 Fix Select selectorBg token not working. #56052 @ug-hero
  • 🐞 Fix Upload incorrect progress position style. #56194 @QDyanbing

  • 🐞 修复 DatePicker 不兼容 webpack 4 的问题:Can't resolve '@rc-component/picker/locale/en_US'。#56219 @afc163
  • 🐞 修复 ColorPicker 弹层内输入框高度不一致问题。#56220 @ug-hero
  • 🐞 修复 notification 在 cssVar 未启用时默认背景色不为白色的问题。#56169 @wanpan11
  • 🐞 修复 Input 在 Space.Compact 下配置 allowClear 时聚焦边框丢失的问题。#56105 @tuzixiangs
  • 🐞 修复 Splitter 在 RTL + 垂直模式下折叠方向错误的问题,RTL 逻辑现在仅在横向布局下生效。#56179 @QDyanbing
  • 🐞 修复 Result 未向根节点透传 data-*aria-* 属性的问题。#56165 @QDyanbing
  • 🐞 MISC: 修复:theme.cssVar.prefixtheme.cssVar.key 不支持传入空字符串的问题。#56146 @QDyanbing
  • 💄 提升 Breadcrumb 链接样式优先级以避免被全局样式覆盖。#56137 @guoyunhe
  • 🐞 修复 ConfigProvider closable.placement 配置失效的问题。#55985 @meet-student
  • 🐞 修复 Form onValuesChange 对存在嵌套数据的 Form.List 缺失内容的问题。#56129 @zombieJ
  • 🐞 修复 Select selectorBg token 不生效的问题。#56052 @ug-hero
  • 🐞 修复 Upload 进度条位置样式错误的问题。#56194 @QDyanbing
4 hours ago
tdesign-react

1.16.0

🌈 1.16.0 2025-12-15

🚨 Breaking Changes

  • MessagePlugin: 移除消息容器的 id='tdesign-message-container--${placement}',之前依赖该属性的业务注意此变更 ⚠️ @RylanBot (#3820)

🚀 Features

  • 支持 readonly 的组件新增 API readOnly,与 readonly 效果一致。原有的 readonly 会被保留,未来版本将废弃,建议及时更换 ⚠️ @RylanBot (#3955)
  • 支持 .dark 类名,丰富切换深色模式的方式 @liweijie0812 (common#2355)
  • Dialog: 优化渲染阶段,避免子元素计算异常的问题,此前有在 Dialog 内进行复杂内容渲染的请注意此变更 ⚠️ @HaixingOoO (#3705)
  • Form: 保留原始 HTML 效果,当输入框按下 Enter 键自动触发 submit 事件,如果需要拦截该行为,可以给输入框绑定 onEnter={(e)=>e.preventDefault()} ,此前有依赖此内置特性请注意此变更 ⚠️
  • MessagePlugin: 新增开启和关闭时的动画效果 @RylanBot (#3820)
  • Textarea: 支持 count API,用于自定义计数元素的渲染 @RylanBot (#4003)
  • ImageViewer:
    • 新增默认 trigger 渲染 ,默认为当前使用的图片作为默认 trigger,降低组件的使用复杂度,具体参考相关示例改动 @wonkzhang (#3819)
    • 优化下载跨域图片时的格式处理和压缩比例 @RylanBot (#3919)
    • 支持直接下载同域图片,避免二次转换导致体积增大和动图失效等问题 @RylanBot (#3919)

🐞 Bug Fixes

  • Textarea: 更正 status 对应的初始值与 class 名为 default,内部 class 进行了相应调整,之前有覆盖 tips 类名请注意此变更 ⚠️ @RylanBot (#4007)
  • Avatar: 修复样式与设计稿不一致的问题 @liweijie0812 (common#2364)
  • ConfigProvider: 修复 tag.closeIcon 不生效的问题 @RylanBot (#4004)
  • Form: 修复初始化表单值时引入多余组件,导致未使用组件也被打包的问题 @RylanBot (#3965)
  • Menu: 修复菜单选项默认边距和图标大小的问题 @liweijie0812 (common#2369)
  • Select: 优化键盘操作过程中再次进行回车操作的使用体验 @uyarn (#3989)
  • Tree: 修复子节点为自定义的 Input 等元素时,选中文本的高亮样式被隐藏的问题 @RylanBot (common#2370)
  • MessagePlugin: @RylanBot (#3820)
    • 修复自定义 attach 后,后续其它全局消息也被绑定到该节点中的异常
    • 修复 closeAll 无法关闭所有消息的异常
  • EnhancedTable: 修复子节点收缩时,表头全选状态异常的问题 @liweijie0812 (#3988)
  • Table:
    • 修复多级表头场景下,editable 单元格编辑后数据没有同步的问题 @RylanBot (#3982)
    • 修复 onChangecontext.currentData 在过滤场景下缺失的问题 @RylanBot (#3982)
    • 修复由于表格宽度计算时机不稳定,导致表头无法对齐、空状态不居中等问题 @RylanBot (#3972)
  • Popup:
    • 修复空间不足时,箭头偏移的问题 @RylanBot (#3980)
    • 将容器的位置统一设为 absolute,修复部分场景下定位异常的问题 @RylanBot (#3916)
    • 修复 triggerElement 类型为字符串时未正确作为元素选择器解析的问题 @RylanBot (#3940)
    • 修复 children 为不支持 ref 穿透的封装组件时,弹窗无法正常出现的问题 @RylanBot (#3940)
  • PopupPlugin: 修复 classPrefix 不生效的问题 @RylanBot (#3940)
5 hours ago
rollup

v4.53.4

4.53.4

2025-12-15

Bug Fixes

  • Ensure Symbol.dispose and Symbol.asyncDispose properties are never removed with (await) using declarations. (#6209)

Pull Requests

  • #6185: chore(deps): update dependency @inquirer/prompts to v8 (@renovate[bot], @lukastaegert)
  • #6186: fix(deps): lock file maintenance minor/patch updates (@renovate[bot])
  • #6187: chore(deps): lock file maintenance (@renovate[bot])
  • #6188: chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
  • #6190: Fix syntax error in manualChunks example (@jonnyeom)
  • #6194: chore(deps): update actions/checkout action to v6 (@renovate[bot])
  • #6195: fix(deps): lock file maintenance minor/patch updates (@renovate[bot], @lukastaegert)
  • #6202: fix(deps): update swc monorepo (major) (@renovate[bot])
  • #6203: fix(deps): lock file maintenance minor/patch updates (@renovate[bot], @lukastaegert)
  • #6209: Do not tree-shake handlers for "using" (@lukastaegert)
5 hours ago
swc
7 hours ago
ant-design

5.29.2

  • 🐞 Fix notification background colors incorrect when cssVar is disabled. #56133 @afc163
  • 🐞 Raise Breadcrumb link style priority to avoid being overridden by global styles (v5). #56139 @guoyunhe
  • 🐞 Fix Input.Search should not warn about deprecated addonAfter. #55806 @zombieJ
  • 🐞 Fix Splitter failing to fill its container when the sum of panel proportions is not 1. #56217 @zombieJ

  • 🐞 修复关闭 cssVar 时 notification 背景色异常的问题。#56133 @afc163
  • 🐞 提升 Breadcrumb 链接样式的优先级以避免被全局样式覆盖。#56139 @guoyunhe
  • 🐞 修复 Input.Search 会报 addonAfter 已经废弃的警告信息的问题。#55806 @zombieJ
  • 🐞 修复 Splitter 在 Panel 总占比不为 1 时出现占不满的情况。 #56217 @zombieJ
8 hours ago
fabric.js

Version 6.9.1

Full Changelog: https://github.com/fabricjs/fabric.js/compare/v690...v691

  • fix(): Fix the situation where undefined + char exists when calculating couple #10816
  • fix(): Fix toDataUrl writing on contextTop #10820
8 hours ago
vite

v7.3.0

Please refer to CHANGELOG.md for details.

9 hours ago
fabric.js

Version 7.0.0 rc1

What's Changed

New Contributors

Full Changelog: https://github.com/fabricjs/fabric.js/compare/v700-beta1...v700-rc1