FRONTEND
Astro v6.3.2
RESUMEN
Patch Changes - #16675 `11d4592` Thanks @ascorbic! - Fixes a regression where `Astro.cache` was `undefined` when `experimental.
Descripción Detallada
Patch Changes - #16675 `11d4592` Thanks @ascorbic! - Fixes a regression where `Astro.cache` was `undefined` when `experimental.cache` was not configured. The previous documented behavior is for `Astro.cache` to always be defined as a no-op shim: `cache.set()` warns once, `cache.invalidate()` throws and `cache.enabled` can be used to gate. This allows library and user code can call cache methods without conditional checks. The cache provider registration was being gated at the call site on `experimental.cache` being configured, which meant the disabled shim branch inside the provider was unreachable and the `Astro.cache` getter was never attached to the context. - #16691 `0f0a4ce` Thanks @matthewp! - Fixes `HTMLElement is not defined` error during HMR when using components with client-side scripts (e.g. Starlight ``) and the Cloudflare adapter - #16562 `07529ec` Thanks @matthewp! - Fixes non-prerendered routes failing when a dynamic prerendered route exists in the
Explicación con IA
Genera un resumen en lenguaje claro de los cambios de este release.
Releases Relacionados
FRONTEND
Astro v0.7.3
### Patch Changes - [#17188](https://github.com/withastro/astro/pull/17188) [`675d11d`](https://github.com/withastro/astro/commit/675d11d0859478f0a31132e2ca1371b1afe5651d) Thanks [@astrobot-houston](https://github.com/astrobot-houston)! - Fixes `@astrojs/upgrade` showing a generic error when pnpm
FRONTEND
Astro v2.0.1
### Patch Changes - [#17142](https://github.com/withastro/astro/pull/17142) [`973ea49`](https://github.com/withastro/astro/commit/973ea495bf27699648406f8404913c0dbf6c6bc3) Thanks [@astrobot-houston](https://github.com/astrobot-houston)! - Fixes a crash when rendering shiki-highlighted code blocks