diff --git a/src/content/docs/en/guides/upgrade-to/v6.mdx b/src/content/docs/en/guides/upgrade-to/v6.mdx index 19f0edd3b4235..a96344079bc9d 100644 --- a/src/content/docs/en/guides/upgrade-to/v6.mdx +++ b/src/content/docs/en/guides/upgrade-to/v6.mdx @@ -453,6 +453,20 @@ app.render(request, { routeData, locals }) Learn more about the [Adapter API](/en/reference/adapter-reference/). +### Removed: `app.setManifestData()` (Adapter API) + + + +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. + +Learn more about the [Adapter API](/en/reference/adapter-reference/). + ### Removed: `handleForms` prop for the `` component