3 hours ago
next.js

v16.1.1-canary.30

Core Changes

  • Fix incorrect 'Ready in' time for next start: #88589
  • feat: server action logging: #88277
  • Log browser error and warnings in terminal: #88352

Misc Changes

  • Turbopack: avoid removing cells for erroring tasks: #88305
  • [ci] Use native concurrency feature in build-and-test: #87287
  • doc: add details of mcp client integration: #88543
  • Turbopack: unflake unit test: #88620
  • Turbopack: snapshot the ModuleGraph to avoid (eventual) inconsistent graphs: #88340
  • Turbopack: Consistency for compute_async_module_info: #88409
  • Turbopack: follow tracing spans through aggregation update queue: #88410
  • Turbopack: avoid chunk_item_id task and use selective cell access instead: #88411
  • Turbopack: MappedReadRef should be Send and Sync: #88558
  • Turbopack: selective read for module_chunk_groups in ChunkGroupInfo: #88559
  • Turbopack: use selective reads for merged modules: #88560
  • Turbopack: add caching to chunking: #88561

Credits

Huge thanks to @sokra, @eps1lon, @timneutkens, and @huozhi for helping!

4 hours ago
astro

astro@5.16.11

Patch Changes

  • #15017 9e7a3c8 Thanks @ixchio! - Fixes CSS double-bundling when the same CSS file is imported in both a page's frontmatter and a component's script tag

  • #15225 6fe62e1 Thanks @ematipico! - Updates to the latest version of devalue

5 hours ago
ui

shadcn@3.7.0

Minor Changes

6 hours ago
tdesign-react

tdesign-react@1.16.4

🌈 1.16.4 2026-01-16

🚀 Features

  • DatePicker: presets 支持 ReactNode,用于完全自定义渲染 @uyarn (#4089)
  • Dialog: @RylanBot (#3950)
    • 支持 mode="full-screen" 的弹窗
    • 支持 draggablemode="modeless" 生效
  • Form: 支持 getFieldsValuegetFieldValue 返回未渲染的数值 @RylanBot (#4050)

🐞 Bug Fixes

  • Cascader:
    • 修复在弹出层可见期间,滚动位置被意外更新的问题 @RylanBot (#4062)
    • 优化 Safari 浏览器中点击展开图标没有变换方向的问题 @liweijie0812 (#4056)
  • Dialog:
    • 修复 closeOnOverlayClickfalse 时,onOverlayClick 无法触发的问题 @TidySongS (#4065)
    • 修复 mode="modeless" 的弹窗,点击空白地方会被关闭的问题 @RylanBot (#3950)
    • 修复开启 draggable 时,无法选中内部 Input 等元素中文本的问题 @RylanBot (#3950)
  • Form:
    • 修复自定义控件时 setFieldsValue 失败的问题 @RylanBot (#4029)
    • 修复使用 shouldUpdate 时,必须给 FormItemkey 才能生效的问题 @RylanBot (#4005)
  • FormList: @RylanBot (#4005)
    • 修复子节点存在另一个 Form 时,部分 API 异常的问题
    • 修复结合 shouldUpdate 使用时,initialData 不生效的问题
    • 修复 add 过程中缺乏拷贝从而污染用户原始数据的问题 @RylanBot
  • InputNumber: 修复大数计算前导零被错误清除的问题 @Liumingxun (common#2394)
  • Menu: 优化 Safari 浏览器中点击展开图标没有变换方向的问题 @liweijie0812 (#4056)
  • Popup:
    • 修复嵌套场景下,外层弹窗隐藏时,内层弹窗无法正常关闭的问题 @RylanBot (#4085)
    • 修复 triggerElementdisabled 的场景下,hover 时无法正常显示弹出层的问题 @RylanBot (#4085)
    • 修复 content 动态修改时,箭头位置不稳定的问题 @RylanBot (#4062)
  • Select:
    • 修复 tagInputProps.tagProps 不生效的问题 @RylanBot (#4070)
    • 优化 Safari 浏览器中点击展开图标没有变换方向的问题 @liweijie0812 (#4056)
  • SelectInput: @RylanBot (#4070)
    • 修复 1.16.0 版本的修复导致点击 closable 图标时无法清除选项的问题
    • 修复传入 tagInputProps.tagProps.onClose 时,onTagChange 不生效的问题
  • Text: 修复在关闭 copyableTooltip 时,元素未同步隐藏的问题 @RylanBot (#4067)
  • Textarea: 修复 count 计算逻辑没有遵循 maxcharactermaxlength 的问题 @RylanBot (#4088)
  • TreeSelect: 优化 Safari 浏览器中点击展开图标没有变换方向的问题 @liweijie0812 (#4056)

🚧 Others

  • Form: 调整 useForm 返回实例的 TS 类型,避免内部变量的暴露 @RylanBot (#4050)
  • Message: 新增组件的 displayName @TidySongS (#4074)

🚀 New Features

  • DatePicker: The presets now support ReactNode, allowing for complete custom rendering of this component. @uyarn (#4089)
  • Dialog: @RylanBot (#3950)
    • Pop-ups with mode="full-screen" are now supported.
    • The draggable feature can now be used in mode="modeless".
  • Form: Methods like getFieldsValue and getFieldValue now return unrendered values. @RylanBot (#4050)

🐞 Bug Fixes

  • Cascader:
    • The issue where the scroll position was accidentally updated while the pop-up was visible has been fixed. @RylanBot (#4062)
    • The problem of the expand icon not changing direction when clicked in Safari has been resolved. @liweijie0812 (#4056)
  • Dialog:
    • The issue where onOverlayClick couldn’t be triggered when closeOnOverlayClick was set to false has been fixed. @TidySongS (#4065)
    • Pop-ups in mode="modeless" no longer close when the user clicks on blank areas. @RylanBot (#3950)
    • The problem of not being able to select text within internal elements like Input when draggable was enabled has been fixed. @RylanBot (#3950)
  • Form:
    • The issue where setFieldsValue failed when custom controls were used has been fixed. @RylanBot (#4029)
    • The problem where using shouldUpdate required adding a key to FormItem for it to function correctly has been fixed. @RylanBot (#4005)
  • FormList: @RylanBot (#4005)
    • The issue of certain APIs malfunctioning when a child node contained another Form has been fixed.
    • The problem of initialData not taking effect when shouldUpdate was used has been fixed.
    • The issue of the user’s original data being altered due to a lack of copying during the add process has been fixed.
  • InputNumber: Leading zeros were incorrectly removed before calculating large numbers. This issue has been fixed. @Liumingxun (common#2394) (#4082)
  • Menu: The problem of the expand icon not changing direction when clicked in Safari has been resolved. @liweijie0812 (#4056)
  • Popup:
    • In nested scenarios, the inner popup no longer fails to close when the outer popup is hidden. @RylanBot (#4085)
    • The popup no longer fails to appear when the triggerElement is disabled and the user hovers over it. @RylanBot (#4085)
    • The issue of the arrow position becoming unstable when the content was dynamically modified has been fixed. @RylanBot (#4062)
  • Select:
    • The issue where tagInputProps.tagProps did not function correctly has been fixed. @RylanBot (#4070)
    • The problem of the expand icon not changing direction when clicked in Safari has been resolved. @liweijie0812 (#4056)
  • SelectInput: @RylanBot (#4070)
    • The issue where clicking the closable icon did not allow options to be cleared, which was caused by a fix in version 1.16.0, has been fixed.
    • The issue where onTagChange did not function correctly when tagInputProps.tagProps.onClose was passed as an argument has been fixed.
  • Text: The element no longer fails to hide simultaneously when the copyable property of a Tooltip is disabled. @RylanBot (#4067)
  • Textarea: The logic for calculating the count value now takes into account the maxcharacter or maxlength settings. @RylanBot (#4088)
  • TreeSelect: The problem of the expand icon not changing direction when clicked in Safari has been resolved. @liweijie0812 (#4056)

🚧 Other Changes

  • Form: The TS type of the instance returned by useForm has been adjusted to prevent internal variables from being exposed. @RylanBot (#4050)
  • Message: A new displayName property has been added to this component. @TidySongS (#4074)
6 hours ago
maptalks.js

maptalks-gl@0.120.0 maptalks@1.9.0 Released

Features

  • 增加 map.options.cameraNear,用于手动设置相机近视面的值
  • terrain上增加errorScale,用于调整地形详细度,默认为1, 越小地形越详细 #2776
  • TileLayer options上增加tms,用于3857或4326投影下的tms瓦片,#2782
  • VectorTileLayer增加对gzip格式瓦片的支持 #2779
  • 完善webgpu测试,准备webgpu的集成测试

Fixes

  • 解决native-point插件的深度值未写入的问题
  • 解决地形瓦片clear mask时机不正确的问题
  • 解决地图中心点有海拔时拖拽和缩放后,中心点海拔丢失的问题 #2786

Contributors

@fuzhenn @deyihu


Features

  • Added map.options.cameraNear for manually setting the camera near clipping plane value.
  • Added errorScale on terrain to adjust terrain detail level. Default is 1. Smaller values result in more detailed terrain. #2776
  • Added tms option to TileLayer options for TMS tiles under 3857 or 4326 projection. #2782
  • Added support for gzip-format tiles in VectorTileLayer. #2779
  • Improved WebGPU testing and prepared for WebGPU integration tests.

Fixes

  • Fixed issue where depth values were not written in the native-point plugin.
  • Fixed incorrect timing for clearing the mask of terrain tiles.
  • Fixed issue where center point altitude was lost after dragging and zooming when the map center point had elevation. #2786

Contributors

@fuzhenn @deyihu

8 hours ago
meta2d.js

v1.1.14

v1.1.14

8 hours ago
react-query

@tanstack/react-query-persist-client@5.90.20

Patch Changes

  • Updated dependencies []:
    • @tanstack/query-persist-client-core@5.91.17
    • @tanstack/react-query@5.90.18
8 hours ago
react-query

@tanstack/svelte-query@6.0.16

Patch Changes

  • Updated dependencies [dea1614]:
    • @tanstack/query-core@5.90.18
8 hours ago
react-query

@tanstack/solid-query-persist-client@5.90.21

Patch Changes

  • Updated dependencies []:
    • @tanstack/query-persist-client-core@5.91.17
    • @tanstack/solid-query@5.90.21
8 hours ago
react-query

@tanstack/react-query@5.90.18

Patch Changes

  • Updated dependencies [dea1614]:
    • @tanstack/query-core@5.90.18