Releases: withastro/astro
@astrojs/[email protected]
@astrojs/[email protected]
Patch Changes
- #8264
1f58a7a1b
Thanks @natemoo-re! - Automatically unmount islands whenastro:unmount
is fired
@astrojs/[email protected]
Patch Changes
- #8264
1f58a7a1b
Thanks @natemoo-re! - Automatically unmount islands whenastro:unmount
is fired
@astrojs/[email protected]
Patch Changes
- #8264
1f58a7a1b
Thanks @natemoo-re! - Automatically unmount islands whenastro:unmount
is fired
[email protected]
Patch Changes
-
#8251
46c4c0e05
Thanks @Princesseuh! - Adds a link to the error reference in the CLI when an error occurs -
#8253
1048aca55
Thanks @matthewp! - Fix, lazily initialize ResponseWithEncoding -
#8229
ffc9e2d3d
Thanks @Princesseuh! - Paginate will now return exact types instead of a naive Record -
#8237
3674584e0
Thanks @Princesseuh! - Fixastro check
not finding the@astrojs/check
package
@astrojs/[email protected]
Major Changes
-
#8239
52f0837bd
Thanks @matthewp! - Vercel adapter now defaults tofunctionPerRoute
.With this change,
@astrojs/vercel/serverless
now splits each route into its own function. By doing this, the size of each function is reduced and startup time is faster.You can disable this option, which will cause the code to be bundled into a single function, by setting
functionPerRoute
tofalse
.
Patch Changes
@astrojs/[email protected]
[email protected]
[email protected]
Major Changes
-
#8207
e45f30293
Thanks @natemoo-re! - Change the View Transition built-in animation options.The
transition:animate
valuemorph
has been renamed toinitial
. Also, this is no longer the default animation.If no
transition:animate
directive is specified, your animations will now default tofade
.Astro also supports a new
transition:animate
value,none
. This value can be used on a page's<html>
element to disable animated full-page transitions on an entire page.
Minor Changes
-
#8218
44f7a2872
Thanks @matthewp! - View Transitions unflaggedView Transition support in Astro is now unflagged. For those who have used the experimental feature you can remove the flag in your Astro config:
import { defineConfig } from 'astro' export default defineConfig({ - experimental: { - viewTransitions: true, - } })
After removing this flag, please also consult the specific upgrade to v3.0 advice as some API features have changed and you may have breaking changes with your existing view transitions.
See the View Transitions guide to learn how to use the API.
-
#8181
a8f35777e
Thanks @matthewp! - Finalize View Transition event names
Patch Changes
-
#8217
c37632a20
Thanks @martrapp! - Specifydata-astro-reload
(no value) on an anchor element to force the browser to ignore view transitions and fall back to default loading.This is helpful when navigating to documents that have different content-types, e.g. application/pdf, where you want to use the build in viewer of the browser.
Example:<a href='/my.pdf' data-astro-reload>...</a>
-
#8156
acf652fc1
Thanks @kurtextrem! - The scrollend mechanism is a better way to record the scroll position compared to throttling, so we now use it whenever a browser supports it. -
#8196
632579dc2
Thanks @bluwy! - Prevent bundling sharp as it errors in runtime -
#8214
55c10d1d5
Thanks @Princesseuh! - Automatically update user's env.d.ts with the proper types to help out migrating away from assets being experimental
@astrojs/[email protected]
Major Changes
-
#8198
cb95aa5f8
Thanks @bluwy! - Update therss()
default export to return aResponse
instead of a simple object, which is deprecated in Astro 3.0. If you were directly returning therss()
result from an endpoint before, this breaking change should not affect you.You can also import
getRssString()
to get the RSS string directly and use it to return your own Response:// src/pages/rss.xml.js import { getRssString } from '@astrojs/rss'; export async function get(context) { const rssString = await getRssString({ title: 'Buzz’s Blog', ... }); return new Response(rssString, { headers: { 'Content-Type': 'application/xml', }, }); }