mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
10 lines
539 B
Markdown
10 lines
539 B
Markdown
|
---
|
||
|
'astro': major
|
||
|
---
|
||
|
|
||
|
Removes support for returning simple objects from endpoints (deprecated since Astro 3.0). You should return a `Response` instead.
|
||
|
|
||
|
`ResponseWithEncoding` is also removed. You can refactor the code to return a response with an array buffer instead, which is encoding agnostic.
|
||
|
|
||
|
The types for middlewares have also been revised. To type a middleware function, you should now use `MiddlewareHandler` instead of `MiddlewareResponseHandler`. If you used `defineMiddleware()` to type the function, no changes are needed.
|