3 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!

5 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

5 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

5 hours ago
astro

@astrojs/vercel@10.0.0-beta.4

Patch Changes

5 hours ago
astro

@astrojs/mdx@5.0.0-beta.7

Patch Changes

  • #15475 36fc0e0 Thanks @delucis! - Fixes edge cases where an export const components = {...} declaration would fail to be detected with the optimize option enabled
5 hours ago
astro

@astrojs/netlify@7.0.0-beta.9

Patch Changes

5 hours ago
astro

@astrojs/cloudflare@13.0.0-beta.7

Patch Changes

  • #15452 e1aa3f3 Thanks @matthewp! - Fixes server-side dependencies not being discovered ahead of time during development

    Previously, imports in .astro file frontmatter were not scanned by Vite's dependency optimizer, causing a "new dependencies optimized" message and page reload when the dependency was first encountered. Astro is now able to scan these dependencies ahead of time.

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

  • Updated dependencies []:

    • @astrojs/underscore-redirects@1.0.0
5 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
7 hours ago
electron

electron v41.0.0-beta.1

Note: This is a beta release. Please file new issues for any bugs you find in it.

This release is published to npm under the beta tag and can be installed via npm install electron@beta, or npm install electron@41.0.0-beta.1.

Release Notes for v41.0.0-beta.1

Fixes

  • Addressed upstream Chromium shift to enable CoreAudio Tap API for audio capture used in electron's desktopCapturer (🍏 macOS). #49739 (Also in 39)
7 hours ago
next.js

v16.2.0-canary.36

Core Changes

  • Turbopack: Fix slow filesystem benchmark warning for next dev: #89798
  • Add turbopackIgnoreIssue config to suppress Turbopack warnings: #89682
  • Add support for with type: "text" under a new experimental flag, following what webpack did: #89560
  • Remove unused devtools code handling React without use: #89793
  • [devtools] Wrap overlay in Activity: #89818
  • Add CSS URL deployment ID suffix support: #89771
  • Fix cascading LRU eviction during prefetch batches: #89766
  • Refactor prerenderManifest passing: #89765

Misc Changes

  • Update flakey E2E deploy tests: #89792
  • Update flakey E2E deploy tests no-prefetch: #89799
  • Update Rspack production test manifest: #89741
  • Fix devlow job timeouts: #89804
  • Update Rspack development test manifest: #89740
  • Turbopack Persistence: Improve heuristic for compacted database access: #89497
  • Turbopack: remove ChunkableModuleReference trait: #89745
  • docs: improve Graphite workflow documentation: #89488
  • Remove --turbopack and --webpack flags from create-next-app: #89706
  • docs: correct use term: #89438
  • Turbopack: make routes hashes mainfest more incremental: #87107
  • [test] Remove references to removed, internal PPR environment variable: #89832
  • [docs] Add RedirectType usage example to permanentRedirect: #89833
  • [test] Enable scroll related tests in Cache Component tests: #83245
  • Next CLI flags documentation: #89750
  • docs: update adapter docs for routing, handlers, and PPR: #89849

Credits

Huge thanks to @ijjk, @bgw, @vercel-release-bot, @sokra, @lukesandberg, @mischnic, @timneutkens, @vvscode, @eps1lon, and @unstubbable for helping!