Skip to content

chore(deps): bump astro from 5.18.0 to 6.0.0 in /docs - #20333

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/docs/astro-6.0.0
Closed

chore(deps): bump astro from 5.18.0 to 6.0.0 in /docs#20333
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/docs/astro-6.0.0

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubMar 10, 2026

Copy link
Copy Markdown
Contributor

Bumps astro from 5.18.0 to 6.0.0.

Release notes

Sourced from astro's releases.

astro@6.0.0

Major Changes

  • #14446ece667a Thanks @​florian-lefebvre! - Removes entryPoints on astro:build:ssr hook (Integration API) - (v6 upgrade guidance)

  • #15535dfe2e22 Thanks @​florian-lefebvre! - Deprecates loadManifest() and loadApp() from astro/app/node (Adapter API) - (v6 upgrade guidance)

  • #15006f361730 Thanks @​florian-lefebvre! - Removes session test driver - (v6 upgrade guidance)

  • #154619f21b24 Thanks @​florian-lefebvre! - BREAKING CHANGE to the v6 beta Adapter API only: renames entryType to entrypointResolution and updates possible values

    Astro 6 introduced a way to let adapters have more control over the entrypoint by passing entryType: 'self' to setAdapter(). However during beta development, the name was unclear and confusing.

    entryType is now renamed to entrypointResolution and its possible values are updated:

    • legacy-dynamic becomes explicit.
    • self becomes auto.

    If you are building an adapter with v6 beta and specifying entryType, update it:

    setAdapter({
    // ...
    - entryType: 'legacy-dynamic'+ entrypointResolution: 'explicit'
    })
    setAdapter({
    // ...
    entryType: 'self'
    entrypointResolution: 'auto'
    })
  • #14426861b9cc Thanks @​florian-lefebvre! - Removes the deprecated emitESMImage() function - (v6 upgrade guidance)

  • #15006f361730 Thanks @​florian-lefebvre! - Deprecates session driver string signature - (v6 upgrade guidance)

  • #151808780ff2 Thanks @​Princesseuh! - Adds support for converting SVGs to raster images (PNGs, WebP, etc) to the default Sharp image service - (v6 upgrade guidance)

  • #14446ece667a Thanks @​florian-lefebvre! - Removes routes on astro:build:done hook (Integration API) - (v6 upgrade guidance)

  • #1542433d6146 Thanks @​Princesseuh! - Throws an error when getImage() from astro:assets is called on the client - (v6 upgrade guidance)

  • #144629fdfd4c Thanks @​florian-lefebvre! - Removes the old app.render() signature (Adapter API) - (v6 upgrade guidance)

  • #149560ff51df Thanks @​matthewp! - Astro v6.0 upgrades to Zod v4 for schema validation - (v6 upgrade guidance)

  • #14759d7889f7 Thanks @​florian-lefebvre! - Updates how schema types are inferred for content loaders with schemas (Loader API) - (v6 upgrade guidance)

  • ... (truncated)

    Changelog

    Sourced from astro's changelog.

    6.0.0

    Major Changes

    • #14446ece667a Thanks @​florian-lefebvre! - Removes entryPoints on astro:build:ssr hook (Integration API) - (v6 upgrade guidance)

    • #15535dfe2e22 Thanks @​florian-lefebvre! - Deprecates loadManifest() and loadApp() from astro/app/node (Adapter API) - (v6 upgrade guidance)

    • #15006f361730 Thanks @​florian-lefebvre! - Removes session test driver - (v6 upgrade guidance)

    • #154619f21b24 Thanks @​florian-lefebvre! - BREAKING CHANGE to the v6 beta Adapter API only: renames entryType to entrypointResolution and updates possible values

      Astro 6 introduced a way to let adapters have more control over the entrypoint by passing entryType: 'self' to setAdapter(). However during beta development, the name was unclear and confusing.

      entryType is now renamed to entrypointResolution and its possible values are updated:

      • legacy-dynamic becomes explicit.
      • self becomes auto.

      If you are building an adapter with v6 beta and specifying entryType, update it:

      setAdapter({
      // ...
      - entryType: 'legacy-dynamic'+ entrypointResolution: 'explicit'
      })
      setAdapter({
      // ...
      entryType: 'self'
      entrypointResolution: 'auto'
      })
  • #14426861b9cc Thanks @​florian-lefebvre! - Removes the deprecated emitESMImage() function - (v6 upgrade guidance)

  • #15006f361730 Thanks @​florian-lefebvre! - Deprecates session driver string signature - (v6 upgrade guidance)

  • #151808780ff2 Thanks @​Princesseuh! - Adds support for converting SVGs to raster images (PNGs, WebP, etc) to the default Sharp image service - (v6 upgrade guidance)

  • #14446ece667a Thanks @​florian-lefebvre! - Removes routes on astro:build:done hook (Integration API) - (v6 upgrade guidance)

  • #1542433d6146 Thanks @​Princesseuh! - Throws an error when getImage() from astro:assets is called on the client - (v6 upgrade guidance)

  • #144629fdfd4c Thanks @​florian-lefebvre! - Removes the old app.render() signature (Adapter API) - (v6 upgrade guidance)

  • #149560ff51df Thanks @​matthewp! - Astro v6.0 upgrades to Zod v4 for schema validation - (v6 upgrade guidance)

  • #14759d7889f7 Thanks @​florian-lefebvre! - Updates how schema types are inferred for content loaders with schemas (Loader API) - (v6 upgrade guidance)

  • ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

    Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.18.0 to 6.0.0.
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/astro@6.0.0/packages/astro)
    ---
    updated-dependencies:
    - dependency-name: astro
    dependency-version: 6.0.0
    dependency-type: direct:production
    update-type: version-update:semver-major
    ...
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabotdependabotBot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 10, 2026
    @github-actions

    Copy link
    Copy Markdown
    Contributor

    Smoke Project encountered failures. Check the logs for details.

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    Smoke Temporary ID encountered failures. Check the logs for details.

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    Smoke Multi PR failed to create multiple PRs. Check the logs.

    @dependabot@github

    dependabotBot commented on behalf of githubMar 11, 2026

    Copy link
    Copy Markdown
    ContributorAuthor

    OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

    If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

    @dependabot
    dependabotBot deleted the dependabot/npm_and_yarn/docs/astro-6.0.0 branch March 11, 2026 19:21
    Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    ai-inspecteddependenciesPull requests that update a dependency filejavascriptPull requests that update javascript code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    1 participant

    @pelikhan