v4.0.5
[!IMPORTANT] Vuetify Needs Your Support! The OpenCollective funds have been fully exhausted. We are currently unable to compensate our contributors for their continued work on the framework and the ecosystem tools.
If Vuetify is part of your stack, please consider sponsoring the project so we can continue delivering updates and fixes.
Sponsor via Open Collective | Sponsor via GitHub
Every contribution helps us keep Vuetify alive and ship exciting new features.
Thank you.
- SSR: avoid errors when rendering with latest Vue (#22764) (ecbe030), closes #22762
- types: support noUncheckedSideEffectImports (2098fb1), closes #22766
- useActivator: avoid closing hovered menu when tooltip hides (131e659), closes #22759
- VSnackbar: avoid blocking navigation (143ceaa), closes #18283
- VPie: shrink back hovered slices on mouseleave (1893748)
tdesign-react@1.16.8
- 新增导出当前版本号,用于具体业务中判断版本号进行下一步逻辑处理 @uyarn (#4199)
DatePicker:DateRangePicker:
Calendar: 修复className没传参时,被转为undefined字符串的问题 @RylanBot (#4175)EnhancedTable: 修复disableDataPage不生效的问题 @HaixingOoO (#4186)Form: 修复initialData覆盖setFieldsValue设置值的问题 @RylanBot (#4201)FormList:MessagePlugin: 修复zIndex不生效的问题 @TidySongS (#4077)Select: 修复onScrollToBottom在浏览器缩放时无法触发的问题 @RylanBot (#4181)TagInput: 修复excessTagsDisplayType="break-line"时,suffix没有固定在右侧的问题 @RylanBot (#4178)
Neutralinojs v6.7.0 released!
New functions were added to the computer namespace to update the mouse position, confine the mouse cursor within the window, and simulate keyboard events. These functions work on Windows and macOS, but only work under the X windowing system on Linux (or FreeBSD). On Wayland, these functions will throw NE_CO_UNLTOSC, NE_CO_UNLTOMG, or NE_CO_UNLTOSK error messages.
- Implement
computer.setMousePosition(x, y)to update the current mouse cursor position. - Implement
computer.setMouseGrabbing(grabbing; boolean)to activate/deactivate confining the mouse cursor within the native app window. Ifgrabbingis set totrue, the mouse cursor always stays within the window boundaries, so this feature helps create interactive games and similar apps operated using the mouse. - Implement
computer.sendKey(keyCode, keyState)to simulate keyboard events. App developers can use a platform-specific key code and states (press,down, andup) to simulate from simple single key strokes to complex key combinations:
// Simulate letter 'a' press on GNU/Linux:
await Neutralino.computer.sendKey(38)
// Simulate Ctrl + V keyboard shortcut on GNU/Linux:
await Neutralino.computer.sendKey(105, 'down') // Hold right control
await Neutralino.computer.sendKey(55, 'down') // Hold letter 'v'
await Neutralino.computer.sendKey(55, 'up') // Release letter 'v'
await Neutralino.computer.sendKey(105, 'up') // Release right control
- Add
useTemplateIcon: booloption toos.setTray(options)for activating adaptive tray icon with the current color-scheme on macOS.
- Display the app icon properly with the
os.showNotification()function when the app is launched from a Mac app bundle. - Fix the window-ordering issue with
window.focus()on macOS. - Auto-focus the app window when the Mac dock app icon is clicked.
- Write full C++ exception messages to the terminal to improve the framework-related bug-reporting experience.
Update the config file option cli.binaryVersion with 6.7.0 and enter neu update to fetch this version.
Get started: https://neutralino.js.org/docs
This release was auto-generated by ReleaseZri 🚀
Neutralinojs nightly release
New functions were added to the computer namespace to update the mouse position, confine the mouse cursor within the window, and simulate keyboard events. These functions work on Windows and macOS, but only work under the X windowing system on Linux (or FreeBSD). On Wayland, these functions will throw NE_CO_UNLTOSC, NE_CO_UNLTOMG, or NE_CO_UNLTOSK error messages.
- Implement
computer.setMousePosition(x, y)to update the current mouse cursor position. - Implement
computer.setMouseGrabbing(grabbing; boolean)to activate/deactivate confining the mouse cursor within the native app window. Ifgrabbingis set totrue, the mouse cursor always stays within the window boundaries, so this feature helps create interactive games and similar apps operated using the mouse. - Implement
computer.sendKey(keyCode, keyState)to simulate keyboard events. App developers can use a platform-specific key code and states (press,down, andup) to simulate from simple single key strokes to complex key combinations:
// Simulate letter 'a' press on GNU/Linux:
await Neutralino.computer.sendKey(38)
// Simulate Ctrl + V keyboard shortcut on GNU/Linux:
await Neutralino.computer.sendKey(105, 'down') // Hold right control
await Neutralino.computer.sendKey(55, 'down') // Hold letter 'v'
await Neutralino.computer.sendKey(55, 'up') // Release letter 'v'
await Neutralino.computer.sendKey(105, 'up') // Release right control
- Add
useTemplateIcon: booloption toos.setTray(options)for activating adaptive tray icon with the current color-scheme on macOS.
- Display the app icon properly with the
os.showNotification()function when the app is launched from a Mac app bundle. - Fix the window-ordering issue with
window.focus()on macOS. - Auto-focus the app window when the Mac dock app icon is clicked.
- Write full C++ exception messages to the terminal to improve the framework-related bug-reporting experience.
Update the config file option cli.binaryVersion with nightly and enter neu update to fetch this version.
Get started: https://neutralino.js.org/docs
This release was auto-generated by ReleaseZri 🚀
v3.22.1
- Fixed drag handle ghost image for RTL and mixed-direction content: the ghost wrapper now uses the dragged block’s computed
direction(viadomAtPos), and the drag image hotspot uses the cursor position relative to the ghostwrapperso the preview aligns with the pointer in both LTR and RTL.
- Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)
- Don't stop dragover/dragenter events in NodeViews, to prevent spurious drag-copy cursors
- Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)
- Prevent React node views from crashing during deferred selection updates when ProseMirror has already detached the node view position lookup.
- Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)
- Fix NodeView not re-rendering when a node's position changes without content or decoration changes (e.g. when a sibling node is moved within the same parent)
v4.12.10
- test(router): fix
Simple capturing grouptest by @yusukebe in https://github.com/honojs/hono/pull/4838 - docs: fix impaired -> inspired typo in benchmark READMEs by @Abhi3975 in https://github.com/honojs/hono/pull/4843
- fix(jsx/dom): apply select value after children are rendered by @usualoma in https://github.com/honojs/hono/pull/4847
- fix(compress): convert strong ETag to weak ETag when compressing by @usualoma in https://github.com/honojs/hono/pull/4848
- docs(ip-restriction): add clear JSDoc examples and param types by @VISHNU7KASIREDDY in https://github.com/honojs/hono/pull/4851
- @Abhi3975 made their first contribution in https://github.com/honojs/hono/pull/4843
- @VISHNU7KASIREDDY made their first contribution in https://github.com/honojs/hono/pull/4851
Full Changelog: https://github.com/honojs/hono/compare/v4.12.9...v4.12.10
v3.1.2
- feat: support OPTIONS handler on ServerBase in https://github.com/web-infra-dev/modern.js/pull/8483
- fix: restore dev server runtime stability for server config in https://github.com/web-infra-dev/modern.js/pull/8500
- fix: not got the right component props in https://github.com/web-infra-dev/modern.js/pull/8498
- fix: use Node 22 native loader for tsconfig path aliases in https://github.com/web-infra-dev/modern.js/pull/8484
- Update to address flatted crit cve https://security.snyk.io/vuln/SNYK-JS-FLATTED-15700433 in https://github.com/web-infra-dev/modern.js/pull/8478
- Upgrade @rsbuild/core from v2.0.0-beta.4 to v2.0.0-rc.0. See v2.0.0-rc.0 for details.
- feat: 为 serverBase 添加 options handler, 详情可查看 https://github.com/web-infra-dev/modern.js/pull/8483
- fix: 处理 dev server runtime 的稳定性, 详情可查看 https://github.com/web-infra-dev/modern.js/pull/8500
- fix: 未能正确识别 component 的部分属性, 详情可查看 https://github.com/web-infra-dev/modern.js/pull/8498
- fix: 使用 node v22 原生 loader 处理 tsconfig path aliases, 详情可查看 https://github.com/web-infra-dev/modern.js/pull/8484
- 升级 @rsbuild/core 从 v2.0.0-beta.4 到 v2.0.0-rc.0,查看 v2.0.0-rc.0 了解详情。
9.1.0
- WebGPU: Add async render pipeline pre-warming API - [New Feature] by Popov72 (#18220)
- Gaussian splatting GPU picker exclude inactive parts - by spsDrop (#18090)
- Fix issue with O(N^2) performance issue for addPart - by spsDrop (#17928)
- Downsampled SphericalHarmonics Creation - [New Feature] by kzhsw (#18186)
- Change GS SH degree at runtime - by CedricGuillemet (#18215)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- Flow Graph Editor: Physics blocks (Phase 2 — PR 3) - by RaananW (#18212)
- Fix hand pose rotation for right handed HandContraintBehaviors - by klibertowski (#18193)
- WebGPU: Clamp SSR value to avoid artifacts on mobile - [Bug Fix] by Popov72 (#18209)
- Flow Graph Editor: Audio blocks using Audio V2 (Phase 2 — PR 4) - by RaananW (#18213)
- feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
- WebGPU: Add vertex pulling support for Standard, PBR, and OpenPBR materials - [New Feature] by Popov72 (#18201)
- Fix for coord flip of irradiance - [Bug Fix] by MiiBond (#18205)
- Add metadata and update copyTo to Particle class - by lockphase (#18187)
- Add comprehensive WebXR unit tests - by RaananW (#18189)
- Replace unnecessary Engine imports with EngineStore and Constants - by ryantrem (#18191)
- Fix parabolic ray distance calculation in XR teleportation - [Bug Fix] by RaananW (#18154)
- stringTools: ES2026 proposal-arraybuffer-base64 support - by kzhsw (#18063)
- Allow switching pointer selection controller during session - by RaananW (#18143)
- Scene isReady: check that custom render targets are ready - [Bug Fix] by Popov72 (#18167)
- WebGPU: add support for read/write storage textures - by Popov72 (#18170)
- Add mirror behavior on scaling gizmo - by tibotiber (#18053)
- Flow Graph Editor - by RaananW (#18114)
- Update dependencies - by RaananW (#18178)
- Increase maximum bone count limit - by noname0310 (#18149)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
- Make CDN port configurable - by VicenteCartas (#18206)
- Change GS SH degree at runtime - by CedricGuillemet (#18215)
- Inspector: Add ReactContextService and move WatcherContext to Inspector.tsx - by ryantrem (#18204)
- Update dependencies - by RaananW (#18178)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
- Update dependencies - by RaananW (#18178)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- Make CDN port configurable - by VicenteCartas (#18206)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- Make CDN port configurable - by VicenteCartas (#18206)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- Fix alpha issue on NPE color4 block - by VicenteCartas (#18216)
- Make CDN port configurable - by VicenteCartas (#18206)
- Make CDN port configurable - by VicenteCartas (#18206)
- Make CDN port configurable - by VicenteCartas (#18206)
- Fix playground webpack build error caused by duplicate ReactRefreshWebpackPlugin - by VicenteCartas (#18198)
- Enhance toolkit localStorage handling in CommandBar and MonacoManager - by RaananW (#18179)
- refactor(playground): use @tools/snippet-loader for loading and saving snippets - by RaananW (#18156)
- Playground: Log warning if string too big to be stored to local store - [Bug Fix] by Popov72 (#18177)
- Add version 8.56.2 with updated script URLs to Versions object - by RaananW (#18168)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
- Make CDN port configurable - by VicenteCartas (#18206)
- chore: upgrade TypeScript to 6.0 and remove ts-patch - by RaananW (#18202)
- feat: remove packages/lts layer, wire public packages directly to dev - [New Feature] by RaananW (#18192)
- Update dependencies - by RaananW (#18178)
- Remove unneeded peer dependencies from smartFiltersEditorControl package.json - by RaananW (#18176)
- Make CDN port configurable - by VicenteCartas (#18206)
- Viewer: Don't enable ssao by default when all meshes are splats - by ryantrem (#18203)
- Viewer: Introduce Sonda for bundle analysis - by ryantrem (#18190)
- Viewer: Fix spz flip - [Bug Fix] by ryantrem (#18185)
- feat(viewer): updates the IBL shadow on animations - by cournoll (#18079)
- Update dependencies - by RaananW (#18178)