đ Patch Changes
-
#12798
7b0cb85Thanks @ascorbic! - Improves warning logs for invalid content collection configuration -
#12781
96c4b92Thanks @ascorbic! - Fixes a regression that causeddefault()to not work withreference() -
#12820
892dd9fThanks @ascorbic! - Fixes a bug that caused cookies to not be deleted when destroying a session -
#12864
440d8a5Thanks @kaytwo! - Fixes a bug where the session ID wasnât correctly regenerated -
#12768
524c855Thanks @ematipico! - Fixes an issue where Astro didnât print error logs when Astro Islands were used in incorrect cases. -
#12814
f12f111Thanks @ematipico! - Fixes an issue where Astro didnât log anything in case a file isnât created during the build. -
#12875
e109002Thanks @ascorbic! - Fixes a bug in emulated legacy collections where the entry passed to the getCollection filter function did not include the legacy entry fields. -
#12768
524c855Thanks @ematipico! - Fixes an issue where Astro was printing the incorrect output format when running theastro buildcommand -
#12810
70a9f0bThanks @louisescher! - Fixes server islands failing to check content-type header under certain circumstancesSometimes a reverse proxy or similar service might modify the content-type header to include the charset or other parameters in the media type of the response. This previously wasnât handled by the client-side server island script and thus removed the script without actually placing the requested content in the DOM. This fix makes it so the script checks if the header starts with the proper content type instead of exactly matching
text/html, so the following will still be considered a valid header:text/html; charset=utf-8 -
#12816
7fb2184Thanks @ematipico! - Fixes an issue where an injected route entrypoint wasnât correctly marked because the resolved file path contained a query parameter.This fixes some edge case where some injected entrypoint were not resolved when using an adapter.