v16.2.0-canary.37
- [AI] Ship bundled docs in next and generate AGENTS.md in create-next-app: #89850
- Turbopack: Implement server hmr in nodejs dev runtime: #89130
- 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
Huge thanks to @icyJoseph, @eps1lon, @gaojude, @ijjk, @wbinnssmith, and @bgw for helping!
v1.15.7
#2431: Fix potential browser freezing bug #2369: Fix edge-case where inputs being erroneously re-checked when another sortable is destroyed
astro@6.0.0-beta.11
- #15180
8780ff2Thanks @Princesseuh! - Adds support for converting SVGs to raster images (PNGs, WebP, etc) to the default Sharp image service - (v6 upgrade guidance)
-
#15460
ee7e53fThanks @florian-lefebvre! - Updates the Adapter API to allow providing aserverEntrypointwhen usingentryType: 'self'Astro 6 introduced a new powerful yet simple Adapter API for defining custom server entrypoints. You can now call
setAdapter()with theentryType: 'self'option and specify your customserverEntrypoint: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
serverEntrypointand instead specify your custom server entrypoint withvite.build.rollupOptions.input.
-
#15454
b47a4e1Thanks @Fryuni! - Fixes a race condition in the content layer which could result in dropped content collection entries. -
#15450
50c9129Thanks @florian-lefebvre! - Fixes a case wherebuild.serverEntrywould not be respected when using the new Adapter API -
#15473
d653b86Thanks @matthewp! - Improves Host header handling for SSR deployments behind proxies
@astrojs/vercel@10.0.0-beta.4
-
#15460
ee7e53fThanks @florian-lefebvre! - Updates to use the new Adapter API -
#15450
50c9129Thanks @florian-lefebvre! - Fixes a case wherebuild.serverEntrywould not be respected when using the new Adapter API
@astrojs/netlify@7.0.0-beta.9
-
#15460
ee7e53fThanks @florian-lefebvre! - Updates to use the new Adapter API -
#15450
50c9129Thanks @florian-lefebvre! - Fixes a case wherebuild.serverEntrywould not be respected when using the new Adapter API -
Updated dependencies []:
- @astrojs/underscore-redirects@1.0.0
@astrojs/cloudflare@13.0.0-beta.7
-
#15452
e1aa3f3Thanks @matthewp! - Fixes server-side dependencies not being discovered ahead of time during developmentPreviously, imports in
.astrofile 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
50c9129Thanks @florian-lefebvre! - Fixes a case wherebuild.serverEntrywould not be respected when using the new Adapter API -
Updated dependencies []:
- @astrojs/underscore-redirects@1.0.0
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.
v16.2.0-canary.36
- 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
- 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
RedirectTypeusage example topermanentRedirect: #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
Huge thanks to @ijjk, @bgw, @vercel-release-bot, @sokra, @lukesandberg, @mischnic, @timneutkens, @vvscode, @eps1lon, and @unstubbable for helping!