Skip to content

deps: bump the npm-dependencies group with 2 updates - #30

Merged
finallyjay merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-016917ecfc
Aug 12, 2026
Merged

deps: bump the npm-dependencies group with 2 updates#30
finallyjay merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-016917ecfc

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 12, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies group with 2 updates: @astrojs/vercel and astro.

Updates @astrojs/vercel from 11.0.4 to 11.0.5

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​11.0.5

Patch Changes

  • #17569 d1bb7fa Thanks @​lazerg! - Prevents astro build from crashing with EEXIST when .vercel/output/server/ already exists by creating it with { recursive: true }, matching the sibling static/ directory call
Changelog

Sourced from @​astrojs/vercel's changelog.

11.0.5

Patch Changes

  • #17569 d1bb7fa Thanks @​lazerg! - Prevents astro build from crashing with EEXIST when .vercel/output/server/ already exists by creating it with { recursive: true }, matching the sibling static/ directory call
Commits

Updates astro from 7.1.6 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

    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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
    • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

    Bumps the npm-dependencies group with 2 updates: [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro).
    
    
    Updates `@astrojs/vercel` from 11.0.4 to 11.0.5
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/vercel/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/vercel@11.0.5/packages/integrations/vercel)
    
    Updates `astro` from 7.1.6 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)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/vercel"
      dependency-version: 11.0.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-dependencies
    - dependency-name: astro
      dependency-version: 7.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 12, 2026
    @vercel

    vercel Bot commented Aug 12, 2026

    Copy link
    Copy Markdown

    The latest updates on your projects. Learn more about Vercel for GitHub.

    Project Deployment Actions Updated (UTC)
    daily-dev-roulette Ready Ready Preview Aug 12, 2026 1:06am

    @coderabbitai

    coderabbitai Bot commented Aug 12, 2026

    Copy link
    Copy Markdown

    Review Change Stack

    No actionable comments were generated in the recent review. 🎉

    ℹ️ Recent review info
    ⚙️ Run configuration

    Configuration used: Organization UI

    Review profile: CHILL

    Plan: Pro Plus

    Run ID: 7289883c-e927-44ef-ac73-c6319cc5f0db

    📥 Commits

    Reviewing files that changed from the base of the PR and between 281e1f4 and 43a9395.

    ⛔ Files ignored due to path filters (1)
    • package-lock.json is excluded by !**/package-lock.json
    📒 Files selected for processing (1)
    • package.json
    📜 Recent review details
    🔇 Additional comments (1)
    package.json (1)

    18-20: LGTM!


    📝 Walkthrough

    Summary by CodeRabbit

    • Chores
      • Updated platform and framework packages to newer versions.
      • Includes minor improvements and fixes from the updated releases.

    Walkthrough

    The package manifest updates @astrojs/vercel from ^11.0.4 to ^11.0.5 and astro from ^7.1.6 to ^7.2.0. @vercel/speed-insights remains unchanged.

    Changes

    Astro dependency update

    Layer / File(s) Summary
    Update Astro dependency requirements
    package.json
    The manifest raises the required versions for @astrojs/vercel and astro. The @vercel/speed-insights version remains unchanged.

    Estimated code review effort: 1 (Trivial) | ~2 minutes

    Possibly related PRs

    Suggested reviewers: finallyjay

    Poem

    A rabbit checks the Astro trail,
    Two fresh versions catch the gale.
    Vercel hops one patch ahead,
    While speed insights stay in bed.
    The manifest shines, neat and bright.
    “Ship the update!” says the rabbit tonight.

    🚥 Pre-merge checks | ✅ 5
    ✅ Passed checks (5 passed)
    Check name Status Explanation
    Title check ✅ Passed The title clearly identifies the pull request as a grouped update to two npm dependencies.
    Description check ✅ Passed The description directly explains the two dependency updates and summarizes their relevant release changes.
    Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
    Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
    Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
    ✨ Finishing Touches
    🧪 Generate unit tests (beta)
    • Create PR with unit tests
    • Commit unit tests in branch dependabot/npm_and_yarn/npm-dependencies-016917ecfc

    Comment @coderabbitai help to get the list of available commands.

    @finallyjay
    finallyjay merged commit 118c497 into main Aug 12, 2026
    5 checks passed
    @finallyjay
    finallyjay deleted the dependabot/npm_and_yarn/npm-dependencies-016917ecfc branch August 12, 2026 06:54
    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.

    1 participant