FRONTEND
Remix v0.16.0
RESUMEN
Minor Changes - BREAKING CHANGE: `MultipartPart.headers` is now a plain decoded object keyed by lower-case header name instead of a native `Headers` instance. Access part headers with bracket notation like `part.headers['content-type']` instead of `part.headers.get('content-type')`. This let
Descripción Detallada
Minor Changes - BREAKING CHANGE: `MultipartPart.headers` is now a plain decoded object keyed by lower-case header name instead of a native `Headers` instance. Access part headers with bracket notation like `part.headers['content-type']` instead of `part.headers.get('content-type')`. This lets multipart part headers preserve decoded UTF-8 field names and filenames that native `Headers` cannot store.
Cambio en la forma de acceder a los encabezados de MultipartPart.
- MultipartPart.headers ahora es un objeto simple en lugar de una instancia de Headers.
- Accede a los encabezados usando notación de corchetes, por ejemplo, part.headers['content-type'].
A quién le importa
Solo si usas MultipartPart en tu código.
Generado por IA · puede contener errores
Releases Relacionados
FRONTEND
Remix v0.4.8
### Patch Changes - Bumped `@remix-run/*` dependencies: - [`fetch-router@0.18.2`](https://github.com/remix-run/remix/releases/tag/fetch-router@0.18.2)
FRONTEND
Remix v0.1.7
### Patch Changes - Bumped `@remix-run/*` dependencies: - [`fetch-router@0.18.2`](https://github.com/remix-run/remix/releases/tag/fetch-router@0.18.2)
FRONTEND