v16.1.1-canary.30
- Fix incorrect 'Ready in' time for next start: #88589
- feat: server action logging: #88277
- Log browser error and warnings in terminal: #88352
- Turbopack: avoid removing cells for erroring tasks: #88305
- [ci] Use native
concurrencyfeature 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
Huge thanks to @sokra, @eps1lon, @timneutkens, and @huozhi for helping!
shadcn@3.7.0
-
#9156
66d24007849ca34c18a5c28b55f2d8dac29ce1e0Thanks @nrjdalal! - add remix icons -
#9351
682c98989d28971a04382da1f174b970fff91d92Thanks @shadcn! - add registry add command
tdesign-react@1.16.4
DatePicker:presets支持 ReactNode,用于完全自定义渲染 @uyarn (#4089)Dialog: @RylanBot (#3950)- 支持
mode="full-screen"的弹窗 - 支持
draggable在mode="modeless"生效
- 支持
Form: 支持getFieldsValue和getFieldValue返回未渲染的数值 @RylanBot (#4050)
Cascader:Dialog:Form:FormList: @RylanBot (#4005)- 修复子节点存在另一个 Form 时,部分 API 异常的问题
- 修复结合
shouldUpdate使用时,initialData不生效的问题 - 修复
add过程中缺乏拷贝从而污染用户原始数据的问题 @RylanBot
InputNumber: 修复大数计算前导零被错误清除的问题 @Liumingxun (common#2394)Menu: 优化 Safari 浏览器中点击展开图标没有变换方向的问题 @liweijie0812 (#4056)Popup:Select:SelectInput: @RylanBot (#4070)- 修复
1.16.0版本的修复导致点击closable图标时无法清除选项的问题 - 修复传入
tagInputProps.tagProps.onClose时,onTagChange不生效的问题
- 修复
Text: 修复在关闭copyable的Tooltip时,元素未同步隐藏的问题 @RylanBot (#4067)Textarea: 修复count计算逻辑没有遵循maxcharacter或maxlength的问题 @RylanBot (#4088)TreeSelect: 优化 Safari 浏览器中点击展开图标没有变换方向的问题 @liweijie0812 (#4056)
Form: 调整useForm返回实例的 TS 类型,避免内部变量的暴露 @RylanBot (#4050)Message: 新增组件的displayName@TidySongS (#4074)
DatePicker: Thepresetsnow 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
draggablefeature can now be used inmode="modeless".
- Pop-ups with
Form: Methods likegetFieldsValueandgetFieldValuenow return unrendered values. @RylanBot (#4050)
Cascader:Dialog:- The issue where
onOverlayClickcouldn’t be triggered whencloseOnOverlayClickwas set tofalsehas 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
Inputwhendraggablewas enabled has been fixed. @RylanBot (#3950)
- The issue where
Form:FormList: @RylanBot (#4005)- The issue of certain APIs malfunctioning when a child node contained another
Formhas been fixed. - The problem of
initialDatanot taking effect whenshouldUpdatewas used has been fixed. - The issue of the user’s original data being altered due to a lack of copying during the
addprocess has been fixed.
- The issue of certain APIs malfunctioning when a child node contained another
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
triggerElementis disabled and the user hovers over it. @RylanBot (#4085) - The issue of the arrow position becoming unstable when the
contentwas dynamically modified has been fixed. @RylanBot (#4062)
Select:SelectInput: @RylanBot (#4070)- The issue where clicking the
closableicon did not allow options to be cleared, which was caused by a fix in version1.16.0, has been fixed. - The issue where
onTagChangedid not function correctly whentagInputProps.tagProps.onClosewas passed as an argument has been fixed.
- The issue where clicking the
Text: The element no longer fails to hide simultaneously when thecopyableproperty of aTooltipis disabled. @RylanBot (#4067)Textarea: The logic for calculating thecountvalue now takes into account themaxcharacterormaxlengthsettings. @RylanBot (#4088)TreeSelect: The problem of the expand icon not changing direction when clicked in Safari has been resolved. @liweijie0812 (#4056)
maptalks-gl@0.120.0 maptalks@1.9.0 Released
- 增加 map.options.cameraNear,用于手动设置相机近视面的值
- terrain上增加errorScale,用于调整地形详细度,默认为1, 越小地形越详细 #2776
- TileLayer options上增加tms,用于3857或4326投影下的tms瓦片,#2782
- VectorTileLayer增加对gzip格式瓦片的支持 #2779
- 完善webgpu测试,准备webgpu的集成测试
- 解决native-point插件的深度值未写入的问题
- 解决地形瓦片clear mask时机不正确的问题
- 解决地图中心点有海拔时拖拽和缩放后,中心点海拔丢失的问题 #2786
@fuzhenn @deyihu
- 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
tmsoption 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.
- 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
@fuzhenn @deyihu
@tanstack/svelte-query@6.0.16
- Updated dependencies [
dea1614]:- @tanstack/query-core@5.90.18
@tanstack/react-query@5.90.18
- Updated dependencies [
dea1614]:- @tanstack/query-core@5.90.18