Conversation
bb20c50 to
67e1f97
Compare
matthewp
previously requested changes
Mar 8, 2024
Contributor
matthewp
left a comment
There was a problem hiding this comment.
Blocking as we don't want to release until Monday.
4306096 to
a4e76e5
Compare
a4e76e5 to
fd4dbf7
Compare
ematipico
pushed a commit
that referenced
this pull request
Feb 6, 2025
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
astro@4.5.0
Minor Changes
#10206
dc87214141e7f8406c0fdf6a7f425dad6dea6d3eThanks @lilnasy! - Allows middleware to run when a matching page or endpoint is not found. Previously, apages/404.astroorpages/[...catch-all].astroroute had to match to allow middleware. This is now not necessary.When a route does not match in SSR deployments, your adapter may show a platform-specific 404 page instead of running Astro's SSR code. In these cases, you may still need to add a
404.astroor fallback route with spread params, or use a routing configuration option if your adapter provides one.#9960
c081adf998d30419fed97d8fccc11340cdc512e0Thanks @StandardGage! - Allows passing any props to the<Code />component#10102
e3f02f5fb1cf0dae3c54beb3a4af3dbf3b06abb7Thanks @bluwy! - Adds a newexperimental.directRenderScriptconfiguration option which provides a more reliable strategy to prevent scripts from being executed in pages where they are not used.This replaces the
experimental.optimizeHoistedScriptflag introduced in v2.10.4 to prevent unused components' scripts from being included in a page unexpectedly. That experimental option no longer exists and must be removed from your configuration, whether or not you enabledirectRenderScript:// astro.config.mjs import { defineConfig } from 'astro/config'; export default defineConfig({ experimental: { - optimizeHoistedScript: true, + directRenderScript: true } });With
experimental.directRenderScriptconfigured, scripts are now directly rendered as declared in Astro files (including existing features like TypeScript, importingnode_modules, and deduplicating scripts). You can also now conditionally render scripts in your Astro file.However, this means scripts are no longer hoisted to the
<head>and multiple scripts on a page are no longer bundled together. If you enable this option, you should check that all your<script>tags behave as expected.This option will be enabled by default in Astro 5.0.
#10130
5a9528741fa98d017b269c7e4f013058028bdc5dThanks @bluwy! - Stabilizesmarkdown.shikiConfig.experimentalThemesasmarkdown.shikiConfig.themes. No behaviour changes are made to this option.#10189
1ea0a25b94125e4f6f2ac82b42f638e22d7bdffdThanks @peng! - Adds the option to pass an object tobuild.assetsPrefix. This allows for the use of multiple CDN prefixes based on the target file type.When passing an object to
build.assetsPrefix, you must also specify afallbackdomain to be used for all other file types not specified.Specify a file extension as the key (e.g. 'js', 'png') and the URL serving your assets of that file type as the value:
#10252
3307cb34f17159dfd3f03144697040fcaa10e903Thanks @Princesseuh! - Adds support for emitting warning and info notifications from dev toolbar apps.When using the
toggle-notificationevent, the severity can be specified throughdetail.level:#10186
959ca5f9f86ef2c0a5a23080cc01c25f53d613a9Thanks @Princesseuh! - Adds the ability to set colors on all the included UI elements for dev toolbar apps. Previously, only badge and buttons could be customized.#10136
9cd84bd19b92fb43ae48809f575ee12ebd43ea8fThanks @matthewp! - Changes the default behavior oftransition:persistto update the props of persisted islands upon navigation. Also adds a new view transitions optiontransition:persist-props(default:false) to prevent props from updating as needed.Islands which have the
transition:persistproperty to keep their state when using the<ViewTransitions />router will now have their props updated upon navigation. This is useful in cases where the component relies on page-specific props, such as the current page title, which should update upon navigation.For example, the component below is set to persist across navigation. This component receives a
productsprops and might have some internal state, such as which filters are applied:Upon navigation, this component persists, but the desired
productsmight change, for example if you are visiting a category of products, or you are performing a search.Previously the props would not change on navigation, and your island would have to handle updating them externally, such as with API calls.
With this change the props are now updated, while still preserving state.
You can override this new default behavior on a per-component basis using
transition:persist-props=trueto persist both props and state during navigation:#9977
0204b7de37bf626e1b97175b605adbf91d885386Thanks @OliverSpeir! - Supports adding thedata-astro-rerunattribute on script tags so that they will be re-executed after view transitions#10145
65692fa7b5f4440c644c8cf3dd9bc50103d2c33bThanks @alexanderniebuhr! - Adds experimental JSON Schema support for content collections.This feature will auto-generate a JSON Schema for content collections of
type: 'data'which can be used as the$schemavalue for TypeScript-style autocompletion/hints in tools like VSCode.To enable this feature, add the experimental flag:
import { defineConfig } from 'astro/config'; export default defineConfig({ experimental: { + contentCollectionJsonSchema: true } });This experimental implementation requires you to manually reference the schema in each data entry file of the collection:
// src/content/test/entry.json { + "$schema": "../../../.astro/collections/test.schema.json", "test": "test" }Alternatively, you can set this in your VSCode
json.schemassettings:"json.schemas": [ { "fileMatch": [ "/src/content/test/**" ], "url": "../../../.astro/collections/test.schema.json" } ]Note that this initial implementation uses a library with known issues for advanced Zod schemas, so you may wish to consult these limitations before enabling the experimental flag.
#10130
5a9528741fa98d017b269c7e4f013058028bdc5dThanks @bluwy! - Migratesshikijitoshiki1.0#10268
2013e70bce16366781cc12e52823bb257fe460c0Thanks @Princesseuh! - Adds support for page mutations to the audits in the dev toolbar. Astro will now rerun the audits whenever elements are added or deleted from the page.#10217
5c7862a9fe69954f8630538ebb7212cd04b8a810Thanks @Princesseuh! - Updates the UI for dev toolbar audits with new informationPatch Changes
#10360
ac766647b0e6156b7c4a0bb9a11981fe168852d7Thanks @nmattia! - Fixes an issue where some CLI commands attempted to directly read vite config files.#10291
8107a2721b6abb07c3120ac90e03c39f2a44ab0cThanks @bluwy! - Treeshakes unused Astro component scoped styles#10368
78bafc5d661ff7dd071c241cb1303c4d8a774d21Thanks @Princesseuh! - Updates the basetsconfig.jsonpreset withjsx: 'preserve'in order to fix errors when importing Astro files inside.jsand.tsfiles.Updated dependencies [
c081adf998d30419fed97d8fccc11340cdc512e0,1ea0a25b94125e4f6f2ac82b42f638e22d7bdffd,5a9528741fa98d017b269c7e4f013058028bdc5d,a31bbd7ff8f3ec62ee507f72d1d25140b82ffc18]:@astrojs/mdx@2.2.0
Minor Changes
#10104
a31bbd7ff8f3ec62ee507f72d1d25140b82ffc18Thanks @remcohaszing! - Changes Astro's internal syntax highlighting to use rehype plugins instead of remark plugins. This provides better interoperability with other rehype plugins that deal with code blocks, in particular with third party syntax highlighting plugins andrehype-mermaid.This may be a breaking change if you are currently using:
htmlraw.Please review your rendered code samples carefully, and if necessary, consider using a rehype plugin that deals with the generated
elementnodes instead. You can transform the AST of raw HTML strings, or alternatively usehast-util-to-htmlto get a string from arawnode.Patch Changes
c081adf998d30419fed97d8fccc11340cdc512e0,5a9528741fa98d017b269c7e4f013058028bdc5d,a31bbd7ff8f3ec62ee507f72d1d25140b82ffc18]:@astrojs/react@3.1.0
Minor Changes
#10136
9cd84bd19b92fb43ae48809f575ee12ebd43ea8fThanks @matthewp! - Changes the default behavior oftransition:persistto update the props of persisted islands upon navigation. Also adds a new view transitions optiontransition:persist-props(default:false) to prevent props from updating as needed.Islands which have the
transition:persistproperty to keep their state when using the<ViewTransitions />router will now have their props updated upon navigation. This is useful in cases where the component relies on page-specific props, such as the current page title, which should update upon navigation.For example, the component below is set to persist across navigation. This component receives a
productsprops and might have some internal state, such as which filters are applied:Upon navigation, this component persists, but the desired
productsmight change, for example if you are visiting a category of products, or you are performing a search.Previously the props would not change on navigation, and your island would have to handle updating them externally, such as with API calls.
With this change the props are now updated, while still preserving state.
You can override this new default behavior on a per-component basis using
transition:persist-props=trueto persist both props and state during navigation:@astrojs/internal-helpers@0.3.0
Minor Changes
#10189
1ea0a25b94125e4f6f2ac82b42f638e22d7bdffdThanks @peng! - Adds the option to pass an object tobuild.assetsPrefix. This allows for the use of multiple CDN prefixes based on the target file type.When passing an object to
build.assetsPrefix, you must also specify afallbackdomain to be used for all other file types not specified.Specify a file extension as the key (e.g. 'js', 'png') and the URL serving your assets of that file type as the value:
@astrojs/markdown-remark@4.3.0
Minor Changes
#9960
c081adf998d30419fed97d8fccc11340cdc512e0Thanks @StandardGage! - Allows passing any props to the<Code />component#10130
5a9528741fa98d017b269c7e4f013058028bdc5dThanks @bluwy! - Migratesshikijitoshiki1.0#10104
a31bbd7ff8f3ec62ee507f72d1d25140b82ffc18Thanks @remcohaszing! - Changes Astro's internal syntax highlighting to use rehype plugins instead of remark plugins. This provides better interoperability with other rehype plugins that deal with code blocks, in particular with third party syntax highlighting plugins andrehype-mermaid.This may be a breaking change if you are currently using:
htmlraw.Please review your rendered code samples carefully, and if necessary, consider using a rehype plugin that deals with the generated
elementnodes instead. You can transform the AST of raw HTML strings, or alternatively usehast-util-to-htmlto get a string from arawnode.@astrojs/db@0.7.1
Patch Changes
41dca1e413c2f1e38f0326bd6241ccbf9b8ee0e4Thanks @FredKSchott! - Handle new schema API response format@astrojs/markdoc@0.9.2
Patch Changes
1ea0a25b94125e4f6f2ac82b42f638e22d7bdffd]:@astrojs/vercel@7.3.6
Patch Changes
1ea0a25b94125e4f6f2ac82b42f638e22d7bdffd]: