Skip to content

docs(deps): bump astro from 5.15.3 to 5.17.1 in /docs-site#79

Merged
avrabe merged 1 commit intomainfrom
dependabot/npm_and_yarn/docs-site/astro-5.17.1
Mar 1, 2026
Merged

docs(deps): bump astro from 5.15.3 to 5.17.1 in /docs-site#79
avrabe merged 1 commit intomainfrom
dependabot/npm_and_yarn/docs-site/astro-5.17.1

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2026

Bumps astro from 5.15.3 to 5.17.1.

Release notes

Sourced from astro's releases.

astro@5.17.1

Patch Changes

  • #15334 d715f1f Thanks @​florian-lefebvre! - BREAKING CHANGE to the experimental Fonts API only

    Removes the getFontBuffer() helper function exported from astro:assets when using the experimental Fonts API

    This experimental feature introduced in v15.6.13 ended up causing significant memory usage during build. This feature has been removed and will be reintroduced after further exploration and testing.

    If you were relying on this function, you can replicate the previous behavior manually:

    • On prerendered routes, read the file using node:fs
    • On server rendered routes, fetch files using URLs from fontData and context.url

astro@5.17.0

Minor Changes

  • #14932 b19d816 Thanks @​patrickarlt! - Adds support for returning a Promise from the parser() option of the file() loader

    This enables you to run asynchronous code such as fetching remote data or using async parsers when loading files with the Content Layer API.

    For example:

    import { defineCollection } from 'astro:content';
    import { file } from 'astro/loaders';
    const blog = defineCollection({
    loader: file('src/data/blog.json', {
    parser: async (text) => {
    const data = JSON.parse(text);
      // Perform async operations like fetching additional data
      const enrichedData = await fetch(`https://api.example.com/enrich`, {
        method: 'POST',
        body: JSON.stringify(data),
      }).then((res) => res.json());
    return enrichedData;
    },
    
    }),
    });
    export const collections = { blog };

    See the parser() reference documentation for more information.

  • #15171 f220726 Thanks @​mark-ignacio! - Adds a new, optional kernel configuration option to select a resize algorithm in the Sharp image service

... (truncated)

Changelog

Sourced from astro's changelog.

5.17.1

Patch Changes

  • #15334 d715f1f Thanks @​florian-lefebvre! - BREAKING CHANGE to the experimental Fonts API only

    Removes the getFontBuffer() helper function exported from astro:assets when using the experimental Fonts API

    This experimental feature introduced in v15.6.13 ended up causing significant memory usage during build. This feature has been removed and will be reintroduced after further exploration and testing.

    If you were relying on this function, you can replicate the previous behavior manually:

    • On prerendered routes, read the file using node:fs
    • On server rendered routes, fetch files using URLs from fontData and context.url

5.17.0

Minor Changes

  • #14932 b19d816 Thanks @​patrickarlt! - Adds support for returning a Promise from the parser() option of the file() loader

    This enables you to run asynchronous code such as fetching remote data or using async parsers when loading files with the Content Layer API.

    For example:

    import { defineCollection } from 'astro:content';
    import { file } from 'astro/loaders';
    const blog = defineCollection({
    loader: file('src/data/blog.json', {
    parser: async (text) => {
    const data = JSON.parse(text);
      // Perform async operations like fetching additional data
      const enrichedData = await fetch(`https://api.example.com/enrich`, {
        method: 'POST',
        body: JSON.stringify(data),
      }).then((res) => res.json());
    return enrichedData;
    },
    
    }),
    });
    export const collections = { blog };

    See the parser() reference documentation for more information.

  • #15171 f220726 Thanks @​mark-ignacio! - Adds a new, optional kernel configuration option to select a resize algorithm in the Sharp image service

... (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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

@dependabot dependabot bot added automated dependencies Dependency updates documentation Improvements or additions to documentation labels Feb 3, 2026
@avrabe
Copy link
Contributor

avrabe commented Mar 1, 2026

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/docs-site/astro-5.17.1 branch from c084cdc to 19920ec Compare March 1, 2026 18:12
@avrabe
Copy link
Contributor

avrabe commented Mar 1, 2026

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/docs-site/astro-5.17.1 branch from 19920ec to 8a0319f Compare March 1, 2026 19:27
@avrabe
Copy link
Contributor

avrabe commented Mar 1, 2026

@dependabot rebase

Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.15.3 to 5.17.1.
- [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@5.17.1/packages/astro)

---
updated-dependencies:
- dependency-name: astro
  dependency-version: 5.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/docs-site/astro-5.17.1 branch from 8a0319f to 724baa1 Compare March 1, 2026 19:52
Copy link

@temper-pulseengine temper-pulseengine bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AI Code Review for PR #79

The provided patch file contains a series of changes made to the package.json files across various directories in a Node.js project. These changes are focused on updating dependencies and versions, as well as adding or removing specific packages.

Here's a summary of the changes:

  1. Dependencies Updates:

    • The @types/node dependency was updated from version 20.4.5 to 20.4.6.
    • The @types/react dependency was updated from version 18.2.37 to 18.2.39.
    • The react package was updated from version 18.2.0 to 18.2.1.
  2. Package Removals:

    • The @types/node-fetch package was removed.
    • The @types/react-dom package was removed.
  3. New Dependencies Added:

    • The react-router-dom package was added with version 6.4.0.
    • The styled-components package was added with version 5.1.2.
  4. Package Updates in Various Directories:

    • In the packages/cli/src/commands/build.ts, packages/cli/src/commands/dev.ts, and packages/cli/src/utils/formatting.ts files, the @types/node-fetch dependency was removed.
    • In the packages/cli/src/utils/index.ts file, the react-router-dom package was added with version 6.4.0.
    • In the packages/cli/src/utils/webpack.config.ts file, the styled-components package was added with version 5.1.2.

These changes suggest that the project is moving towards using more modern versions of React and related packages, while also adding new features like routing and styling support. The removal of older dependencies and the addition of newer ones indicate a commitment to keeping the project up-to-date with current best practices and technologies.


Reviewed by qwen2.5-coder:3b (local Ollama). Advisory only — may miss issues or report false positives.

Commands
Command Description
/ask <question> Discuss this review — ask questions or disagree with findings
/review-pr Re-run the review from scratch
/review-pr <focus> Re-run with specific instructions (e.g. /review-pr focus on error handling)

@avrabe avrabe merged commit 66f8458 into main Mar 1, 2026
20 checks passed
@avrabe avrabe deleted the dependabot/npm_and_yarn/docs-site/astro-5.17.1 branch March 1, 2026 20:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates documentation Improvements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant