astro@6.4.3
-
#16900
17a0fbdThanks @ocavue! - Bumpsdevaluedependency to v5.8.1 -
#16016
0d85e1bThanks @felmonon! - Fix a false positive in the dev toolbar accessibility audit for anchors with text inside closed<details>elements. -
#16911
79c6c46Thanks @astrobot-houston! - Fixes a bug whereexperimental.advancedRoutingwithastro/honohandlers threwTypeError: Cannot read properties of undefined (reading 'route')for unmatched routes instead of rendering the custom 404 page. -
#16899
239c469Thanks @matthewp! - Fixes a false "does not call the middleware() handler" warning when usingastro()in a customsrc/app.tsand the first request is a redirect route. -
#16887
493acdbThanks @astrobot-houston! - FixesredirectToDefaultLocalenot working after the Advanced Routing refactoring. -
#16908
ef53ab9Thanks @florian-lefebvre! - Improves optimized fallbacks generation when using the Fonts API by using better metrics for bold variants
@astrojs/cloudflare@13.6.1
-
#16914
4bdd240Thanks @matthewp! - Fixesastro/fetchandastro/honobeing discovered at runtime during dev instead of pre-bundled -
#16693
9e6edc2Thanks @ArmandPhilippot! - Fixes a link in the documentation specifying where to open an issue for the adapter. -
Updated dependencies []:
- @astrojs/underscore-redirects@1.0.3
@astrojs/node@10.1.3
-
#16922
7dce185Thanks @astrobot-houston! - Fixes prerendered pages returning 404 when usingbuild.format: 'file'orbuild.format: 'preserve'with the Node adapter in standalone mode.Previously, clean URLs like
/aboutwould fail to resolve toabout.htmlon disk, because the static file handler only supported the defaultdirectoryformat (about/index.html). Now the handler correctly resolves clean URLs to.htmlfiles when the build format produces them.
@astrojs/netlify@7.0.12
-
#16693
9e6edc2Thanks @ArmandPhilippot! - Fixes a link in the documentation specifying where to open an issue for the adapter. -
Updated dependencies []:
- @astrojs/underscore-redirects@1.0.3
Neutralinojs nightly release
In previous framework versions, target="_blank" hyperlinks didn't automatically open in the default web browser or a new Neutralinojs window. The new window policy feature offers a way to handle target="_blank" hyperlinks properly using the window.newWindowPolicy: string configuration option. This option accepts three values:
system: Uses the default behavior of the platform-specific system webview. Ignores or opens in a new webview window.browser: Opens the URL in the default web browser.custom: Emits thenewWindowRequestevent with the URL, so the developer can implement custom logic (e.g., opening the specific URL in a new Neutralinojs window, HTML popup, etc.).
By default, Neutralinojs webview enables the system webview's drag and drop implementation, so developers can add drag and drop features for Neutralinojs apps using standard JavaScript web APIs, but they can't retrieve the actual file path due to security concerns. Neutralinojs native filesystem API can't be used with C:\fakepath\filename.ext-like fake file paths. Now, you can disable webview-specific drag and drop handling and get full file paths of dropped files directly via Neutralinojs events using the window.emitDropEvents: boolean configuration option. If this option is set to true, you can get dropped files as follows:
await Neutralino.events.on('filesDropped', (e) => {
console.log('Files: ', e.detail);
});
- Implement
os.getHostname()to retrieve the hostname. - Implement
os.getNetworkInterfaces()to retrieve network interface details, including name, IP, MAC, type (internal/loopback or not), and IP family (v4 or v6) for each network interface entity. This function produces a similar output to Node.js'sos.networkInterfaces()
- Implement
filesystem.chmod(path, mode)to change file access permissions using POSIX octal file modes — a POSIX-friendly alternative to the existing genericfilesystem.setPermissions()function. - Implement
filesystem.access(path, mode)to test file access permissions using POSIX access modes (0,1,2, and4) — a POSIX-friendly alternative to the existing genericfilesystem.getPermissions()function. - Implement
filesystem.chown(path, uid, gid)to change user/group ownership of files and directories. This method has no effect on Windows.
- Implement
os.trashItem(path)to send a file or directory into the system trash container. - Add
homeanddesktoppath name implementations to theos.getPath(name)function.
- Implements HTTP 206 partial content feature to support HTML
<video>progress changes (seeking).
- Allow extensions to use WebSocket binary mode for communicating with the Neutralinojs framework.
- Fix memory handling issues in the
os.setTray()implementation. - Fix the crash that occurs while using the tray menu and window menu together on macOS.
- Focus app content on the window focus event on Windows.
- Using the theme color to fix the well-known white screen flashing bug on Linux.
- Remove the registered system tray icon when the framework process exits on Windows.
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 🚀
v6.0.6
If you like ReactTooltip, please give the project a star on GitHub 🌟
- fix: delegated event listener by @danielbarion in https://github.com/ReactTooltip/react-tooltip/pull/1278
Full Changelog: https://github.com/ReactTooltip/react-tooltip/compare/v6.0.5...v6.0.6
v4.1.0
- VCalendar: add
interval-highlightprop (#22885) (4b1b720), closes #22593 - VExpansionPanelTitle: add hover prop to disable hover effect (#22827) (51fdd04), closes #21615
- VSwitch: add
sizeprop (#22882) (d0fb972), closes #18334 - VSwitch: add 'square' as new
insetvariant (#22881) (f0fb506) - VSwitch: align with MD3 spec (#22879) (010c8e7), closes #22164