Skip to content

deps(deps): bump the build group across 1 directory with 2 updates - #71

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/build-c7ac4de7bd
Open

deps(deps): bump the build group across 1 directory with 2 updates#71
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/build-c7ac4de7bd

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown
Contributor

Bumps the build group with 2 updates in the / directory: astro and @astrojs/react.

Updates astro from 6.4.8 to 7.2.0

Release notes

Sourced from astro's releases.

astro@7.2.0

Minor Changes

  • #17174 0224a3a Thanks @​matthewp! - Adds the astro preview --background flag to start preview servers as background processes.

    This makes preview servers easier to manage from scripts and AI coding agents because the command returns after the server is ready instead of keeping the terminal attached to the long-running process.

    astro preview --background

    When a preview server is running in the background, you can inspect or stop it with new astro preview subcommands:

    astro preview status
    astro preview logs
    astro preview logs --follow
    astro preview stop

    If Astro detects that astro preview is being run by an AI coding agent, background mode is enabled automatically. This matches the existing behavior for astro dev, allowing agents to continue working after the preview server starts while still receiving the server URL and process ID.

    To opt out of automatic background mode for preview servers, set ASTRO_PREVIEW_BACKGROUND=0 before running astro preview.

  • #17532 7f94895 Thanks @​florian-lefebvre! - Adds support for paths relative to your project root in logger.entrypoint

    Previously, pointing logger.entrypoint at a custom log handler living in your own project required building an absolute URL. You can now write the path directly:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    logger: {
    
    entrypoint: new URL('./src/logger.js', import.meta.url),
    
    
    entrypoint: './src/logger.js',
    },
    });

Paths starting with ./ or ../ are resolved against your project root. Package specifiers such as @org/astro-logger, absolute paths, and URL entrypoints keep working as before.

  • #17084 961bbe5 Thanks @​matthewp! - Widens the AstroPrerenderer render() return type so prerenderers can report incremental-build metadata

    A prerenderer's render() may now resolve to either a Response (as before) or a PrerenderResult object that pairs the response with the content entries and optimized-image transforms the page resolved. This lets prerenderers that render out of process (for example, in an adapter's runtime like workerd) report those dependencies back to the build, so incremental static builds can track and replay them for skipped pages.

    import type { AstroPrerenderer, PrerenderResult } from 'astro';
    const prerenderer: AstroPrerenderer = {

  • ... (truncated)

    Changelog

    Sourced from astro's changelog.

    7.2.0

    Minor Changes

    • #17174 0224a3a Thanks @​matthewp! - Adds the astro preview --background flag to start preview servers as background processes.

      This makes preview servers easier to manage from scripts and AI coding agents because the command returns after the server is ready instead of keeping the terminal attached to the long-running process.

      astro preview --background

      When a preview server is running in the background, you can inspect or stop it with new astro preview subcommands:

      astro preview status
      astro preview logs
      astro preview logs --follow
      astro preview stop

      If Astro detects that astro preview is being run by an AI coding agent, background mode is enabled automatically. This matches the existing behavior for astro dev, allowing agents to continue working after the preview server starts while still receiving the server URL and process ID.

      To opt out of automatic background mode for preview servers, set ASTRO_PREVIEW_BACKGROUND=0 before running astro preview.

    • #17532 7f94895 Thanks @​florian-lefebvre! - Adds support for paths relative to your project root in logger.entrypoint

      Previously, pointing logger.entrypoint at a custom log handler living in your own project required building an absolute URL. You can now write the path directly:

      // astro.config.mjs
      import { defineConfig } from 'astro/config';
      export default defineConfig({
      logger: {
      
      entrypoint: new URL('./src/logger.js', import.meta.url),
      
      
      entrypoint: './src/logger.js',
      },
      });

    Paths starting with ./ or ../ are resolved against your project root. Package specifiers such as @org/astro-logger, absolute paths, and URL entrypoints keep working as before.

  • #17084 961bbe5 Thanks @​matthewp! - Widens the AstroPrerenderer render() return type so prerenderers can report incremental-build metadata

    A prerenderer's render() may now resolve to either a Response (as before) or a PrerenderResult object that pairs the response with the content entries and optimized-image transforms the page resolved. This lets prerenderers that render out of process (for example, in an adapter's runtime like workerd) report those dependencies back to the build, so incremental static builds can track and replay them for skipped pages.

    import type { AstroPrerenderer, PrerenderResult } from 'astro';

  • ... (truncated)

    Commits

    Updates @astrojs/react from 5.0.7 to 6.0.2

    Release notes

    Sourced from @​astrojs/react's releases.

    @​astrojs/react@​6.0.2

    Patch Changes

    • Updated dependencies [c895b12]:
      • @​astrojs/internal-helpers@​0.10.2

    @​astrojs/react@​6.0.1

    Patch Changes

    • Updated dependencies [eb6f97e]:
      • @​astrojs/internal-helpers@​0.10.1

    @​astrojs/react@​6.0.0

    Major Changes

    Minor Changes

    • #17093 4585fe5 Thanks @​Princesseuh! - Replaces the import entrypoint of getContainerRenderer()

      A new container-renderer entrypoint exporting getContainerRenderer() has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.

      If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the getContainerRenderer() import for React:

      - import { getContainerRenderer } from '@astrojs/react';
      + import { getContainerRenderer } from '@astrojs/react/container-renderer';

      Importing getContainerRenderer() from the package root still works, but is now deprecated and logs a warning.

    Patch Changes

    Changelog

    Sourced from @​astrojs/react's changelog.

    6.0.2

    Patch Changes

    • Updated dependencies [c895b12]:
      • @​astrojs/internal-helpers@​0.10.2

    6.0.1

    Patch Changes

    • Updated dependencies [eb6f97e]:
      • @​astrojs/internal-helpers@​0.10.1

    6.0.0

    Major Changes

    Minor Changes

    • #17093 4585fe5 Thanks @​Princesseuh! - Replaces the import entrypoint of getContainerRenderer()

      A new container-renderer entrypoint exporting getContainerRenderer() has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.

      If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the getContainerRenderer() import for React:

      - import { getContainerRenderer } from '@astrojs/react';
      + import { getContainerRenderer } from '@astrojs/react/container-renderer';

      Importing getContainerRenderer() from the package root still works, but is now deprecated and logs a warning.

    Patch Changes

    6.0.0-beta.2

    Minor Changes

    • #17093 4585fe5 Thanks @​Princesseuh! - Replaces the import entrypoint of getContainerRenderer()

      A new container-renderer entrypoint exporting getContainerRenderer() has been added to the following integrations: React, Preact, Svelte, SolidJS, Vue, and MDX. This prevents bundlers from trying to bundle unrelated exports from the package root when only the Container API is used.

      If you are using the Container API, update your import statements to use the new entrypoint. The following example updates the getContainerRenderer() import for React:

    ... (truncated)

    Commits

    Note
    Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

    @dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 29, 2026
    @dependabot dependabot Bot changed the title deps(deps): bump the build group with 2 updates deps(deps): bump the build group across 1 directory with 2 updates Jun 30, 2026
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/build-c7ac4de7bd branch 2 times, most recently from 791cd3c to e903de1 Compare June 30, 2026 21:02
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/build-c7ac4de7bd branch 3 times, most recently from 1639cf2 to e3b32e8 Compare July 14, 2026 21:41
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/build-c7ac4de7bd branch 2 times, most recently from 0aa430d to 709e8b2 Compare July 23, 2026 21:43
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/build-c7ac4de7bd branch 2 times, most recently from 2ba6e37 to 20e3f5c Compare August 3, 2026 03:06
    Bumps the build group with 2 updates in the / directory: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) and [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react).
    
    
    Updates `astro` from 6.4.8 to 7.2.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@7.2.0/packages/astro)
    
    Updates `@astrojs/react` from 5.0.7 to 6.0.2
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/react/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/react@6.0.2/packages/integrations/react)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/react"
      dependency-version: 6.0.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: build
    - dependency-name: astro
      dependency-version: 7.0.3
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: build
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/build-c7ac4de7bd branch from 20e3f5c to 95b2f62 Compare August 10, 2026 03:07
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    dependencies Pull requests that update a dependency file

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants