--- 'astro': minor --- Allows Responses to be passed to set:html This expands the abilities of `set:html` to ultimate service this use-case: ```astro
``` This means you can take a legacy app that has been statically generated to HTML and directly consume that HTML within your templates. As is always the case with `set:html`, this should only be used on trusted content. To make this possible, you can also pass several other types into `set:html` now: * `Response` objects, since that is what fetch() returns: ```astro
Hello world', { headers: { 'content-type': 'text/html' } })}>
``` * `ReadableStream`s: ```astro
read me`); controller.close(); } })}>
``` * `AsyncIterable`s: ```astro
${num}`; } })()}> ``` * `Iterable`s (non-async): ```astro
${num}`; } })()}> ```