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.
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.
v52.12.0
- Smart image preloading with build-time extraction and runtime scheduling - by @troshab and @antfu in https://github.com/slidevjs/slidev/issues/2459 (f175d)
- Import order with import.meta.glob - by @kermanx in https://github.com/slidevjs/slidev/issues/2457 (f8396)
plugin-legacy@8.0.0-beta.3
Please refer to CHANGELOG.md for details.
v8.0.0-beta.14
Please refer to CHANGELOG.md for details.
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