FRONTEND
Astro v8.1.0
RESUMEN
Minor Changes - #17245 `f56d9e7` Thanks @astrobot-houston! - Adds `edgeFunctions` to the `devFeatures` adapter option,
Descripción Detallada
Minor Changes - #17245 `f56d9e7` Thanks @astrobot-houston! - Adds `edgeFunctions` to the `devFeatures` adapter option, allowing users to disable Netlify Edge Function emulation during `astro dev` Some npm packages that access the filesystem at initialization (e.g. `node-html-parser`) fail inside the edge function sandbox with "Reading or writing files with Edge Functions is not supported yet." You can now disable edge function emulation to avoid this error: ```js import netlify from '@astrojs/netlify'; import { defineConfig } from 'astro/config'; export default defineConfig({ adapter: netlify({ devFeatures: { edgeFunctions: false, }, }), }); ``` Edge functions will still work in production builds and via `netlify dev`. Patch Changes - #17249 `02b73b0` Thanks @ematipico! - Fixes an issue where the `peerDependencies` field used incorrect dependencies. - Updated dependencies \[]: - @astrojs/underscore-redirects@1.0.3
Actualización de la integración de Svelte para tratar props como opcionales.
- Actualiza los type shims de Svelte para que props no hijos y props de tipo 'any' sean opcionales.
- Agrega 'HandleSnippetProps' para hacer que los Snippets sean opcionales en Astro.
- Distingue entre componentes genéricos y no genéricos para preservar la inferencia.
- Actualiza la generación de TSX para aplicar el wrapper de directiva adecuado.
A quién le importa
Todos los que usan Svelte con Astro.
Generado por IA · puede contener errores
Releases Relacionados
FRONTEND
Astro v14.1.7
### Patch Changes - [#17543](https://github.com/withastro/astro/pull/17543) [`bbc1ec9`](https://github.com/withastro/astro/commit/bbc1ec9715160e25eb6a6fee2e133386414c0c00) Thanks [@ematipico](https://github.com/ematipico)! - Fixes a bug where Cloudflare couldn't load chunked collections via `expe
FRONTEND
Astro v7.1.6
### Patch Changes - [#17536](https://github.com/withastro/astro/pull/17536) [`ff97b86`](https://github.com/withastro/astro/commit/ff97b86ab02d199af5fe0f6e9984e9919c8276bf) Thanks [@dmgawel](https://github.com/dmgawel)! - Fixes concurrent static builds failing to generate i18n rewrite fallbacks fo