Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/content/docs/en/guides/upgrade-to/v6.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,20 @@ app.render(request, { routeData, locals })

<ReadMore>Learn more about the [Adapter API](/en/reference/adapter-reference/).</ReadMore>

### Removed: `app.setManifestData()` (Adapter API)

<SourcePR number="14758" title="chore(astro)!: remove app.setManifestData()"/>

In Astro 5.0, the `app.setManifestData()` method was available on `App` and `NodeApp`, but is no longer used nor needed.

Astro 6.0 removes this method entirely.

#### What should I do?

Remove any call to `app.setManifestData()`. If you need to update the manifest, create a new `App` instance.

<ReadMore>Learn more about the [Adapter API](/en/reference/adapter-reference/).</ReadMore>

### Removed: `handleForms` prop for the `<ClientRouter />` component

<SourcePR number="14462" title="feat: clean deprecated APIs"/>
Expand Down