2 hours ago
astro

@astrojs/preact@5.1.5

Patch Changes

2 hours ago
astro

@astrojs/react@5.0.7

Patch Changes

2 hours ago
astro

astro@6.4.3

Patch Changes

  • #16900 17a0fbd Thanks @ocavue! - Bumps devalue dependency to v5.8.1

  • #16016 0d85e1b Thanks @felmonon! - Fix a false positive in the dev toolbar accessibility audit for anchors with text inside closed <details> elements.

  • #16911 79c6c46 Thanks @astrobot-houston! - Fixes a bug where experimental.advancedRouting with astro/hono handlers threw TypeError: Cannot read properties of undefined (reading 'route') for unmatched routes instead of rendering the custom 404 page.

  • #16899 239c469 Thanks @matthewp! - Fixes a false "does not call the middleware() handler" warning when using astro() in a custom src/app.ts and the first request is a redirect route.

  • #16887 493acdb Thanks @astrobot-houston! - Fixes redirectToDefaultLocale not working after the Advanced Routing refactoring.

  • #16908 ef53ab9 Thanks @florian-lefebvre! - Improves optimized fallbacks generation when using the Fonts API by using better metrics for bold variants

2 hours ago
astro

@astrojs/cloudflare@13.6.1

Patch Changes

  • #16914 4bdd240 Thanks @matthewp! - Fixes astro/fetch and astro/hono being discovered at runtime during dev instead of pre-bundled

  • #16693 9e6edc2 Thanks @ArmandPhilippot! - Fixes a link in the documentation specifying where to open an issue for the adapter.

  • Updated dependencies []:

    • @astrojs/underscore-redirects@1.0.3
2 hours ago
astro

@astrojs/node@10.1.3

Patch Changes

  • #16922 7dce185 Thanks @astrobot-houston! - Fixes prerendered pages returning 404 when using build.format: 'file' or build.format: 'preserve' with the Node adapter in standalone mode.

    Previously, clean URLs like /about would fail to resolve to about.html on disk, because the static file handler only supported the default directory format (about/index.html). Now the handler correctly resolves clean URLs to .html files when the build format produces them.

2 hours ago
astro

@astrojs/netlify@7.0.12

Patch Changes

  • #16693 9e6edc2 Thanks @ArmandPhilippot! - Fixes a link in the documentation specifying where to open an issue for the adapter.

  • Updated dependencies []:

    • @astrojs/underscore-redirects@1.0.3
2 hours ago
neutralinojs

Neutralinojs nightly release

⚠️ Nightly build: This nightly-release may contain experimental features and breaking changes.

What's new

Core: new window policy

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 the newWindowRequest event with the URL, so the developer can implement custom logic (e.g., opening the specific URL in a new Neutralinojs window, HTML popup, etc.).

API: native file drag and drop

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);
});

API: computer

  • 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's os.networkInterfaces()

API: filesystem

  • Implement filesystem.chmod(path, mode) to change file access permissions using POSIX octal file modes — a POSIX-friendly alternative to the existing generic filesystem.setPermissions() function.
  • Implement filesystem.access(path, mode) to test file access permissions using POSIX access modes (0, 1, 2, and 4) — a POSIX-friendly alternative to the existing generic filesystem.getPermissions() function.
  • Implement filesystem.chown(path, uid, gid) to change user/group ownership of files and directories. This method has no effect on Windows.

API: os

  • Implement os.trashItem(path) to send a file or directory into the system trash container.
  • Add home and desktop path name implementations to the os.getPath(name) function.

Core: static server

  • Implements HTTP 206 partial content feature to support HTML <video> progress changes (seeking).

Core: extensions

  • Allow extensions to use WebSocket binary mode for communicating with the Neutralinojs framework.

Improvements/bugfixes

  • 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 🚀

2 hours ago
cytoscape.js

v3.34.0

Release version v3.34.0

3 hours ago
react-tooltip

v6.0.6

If you like ReactTooltip, please give the project a star on GitHub 🌟

What's Changed

Full Changelog: https://github.com/ReactTooltip/react-tooltip/compare/v6.0.5...v6.0.6

4 hours ago
vuetify

v4.1.0

🚀 Features

🔧 Bug Fixes

  • VDataTableVirtual: align caption slot with VTable (85e9737)
  • VDialog: no viewport margin for fullscreen dialog (04663d9)
  • VExpansionPanel: improved focus styles (e10e1c8)
  • VSwitch: tune track color for inset material (a7d0bae)
  • VSwitch: outline should have neutral color (23f139b)

Other Commits

  • chore(release): publish v4.1.0 (f8ba871)
  • docs(VCheckbox, VSwitch, VRadioGroup): drop unused glow prop (9d87221)
  • docs(VTable): silent pass-through for aria-labels (9a48967)
  • chore: cleanup overflow-btn (fa2b064)