1 hours ago
core

v3.6.0-beta.6

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

1 hours ago
vue-next

v3.6.0-beta.6

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

2 hours ago
slidev

v52.12.0

   🚀 Features

   🐞 Bug Fixes

2 hours ago
vite

plugin-legacy@8.0.0-beta.3

Please refer to CHANGELOG.md for details.

2 hours ago
vite

v8.0.0-beta.14

Please refer to CHANGELOG.md for details.

9 hours ago
next.js

v16.2.0-canary.37

Core Changes

  • [AI] Ship bundled docs in next and generate AGENTS.md in create-next-app: #89850
  • Turbopack: Implement server hmr in nodejs dev runtime: #89130

Misc Changes

  • docs: adapt lead to source path patterns: #89392
  • docs: Papercuts Feb26: #89484
  • [test] Ensure new deploy test builds have the necessary env variables: #89846
  • test: allow dpl query suffix in scss url-global expectation: #89856
  • test: stabilize app-dir hash navigation RSC assertion: #89867
  • Turbopack: Clean up unused register!() macro argument in test: #89869

Credits

Huge thanks to @icyJoseph, @eps1lon, @gaojude, @ijjk, @wbinnssmith, and @bgw for helping!

10 hours ago
Sortable

v1.15.7

#2431: Fix potential browser freezing bug #2369: Fix edge-case where inputs being erroneously re-checked when another sortable is destroyed

10 hours ago
astro

astro@6.0.0-beta.11

Major Changes

Minor Changes

  • #15460 ee7e53f Thanks @florian-lefebvre! - Updates the Adapter API to allow providing a serverEntrypoint when using entryType: 'self'

    Astro 6 introduced a new powerful yet simple Adapter API for defining custom server entrypoints. You can now call setAdapter() with the entryType: 'self' option and specify your custom serverEntrypoint:

    export function myAdapter() {
      return {
        name: 'my-adapter',
        hooks: {
          'astro:config:done': ({ setAdapter }) => {
            setAdapter({
              name: 'my-adapter',
              entryType: 'self',
              serverEntrypoint: 'my-adapter/server.js',
              supportedAstroFeatures: {
                // ...
              },
            });
          },
        },
      };
    }

    If you need further customization at the Vite level, you can omit serverEntrypoint and instead specify your custom server entrypoint with vite.build.rollupOptions.input.

Patch Changes

  • #15454 b47a4e1 Thanks @Fryuni! - Fixes a race condition in the content layer which could result in dropped content collection entries.

  • #15450 50c9129 Thanks @florian-lefebvre! - Fixes a case where build.serverEntry would not be respected when using the new Adapter API

  • #15473 d653b86 Thanks @matthewp! - Improves Host header handling for SSR deployments behind proxies

10 hours ago
astro

@astrojs/node@10.0.0-beta.4

Patch Changes

  • #15473 d653b86 Thanks @matthewp! - Improves error page loading to read from disk first before falling back to configured host
10 hours ago
astro

@astrojs/vercel@10.0.0-beta.4

Patch Changes