Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 22, 2026

Bumps the npm-production group with 3 updates in the / directory: @astrojs/vercel, @astrojs/node and astro.

Updates @astrojs/vercel from 9.0.2 to 9.0.4

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​9.0.4

Patch Changes

@​astrojs/vercel@​9.0.3

Patch Changes

Changelog

Sourced from @​astrojs/vercel's changelog.

9.0.4

Patch Changes

9.0.3

Patch Changes

Commits

Updates @astrojs/node from 9.5.1 to 9.5.2

Release notes

Sourced from @​astrojs/node's releases.

@​astrojs/node@​9.5.2

Patch Changes

  • #15196 a8317c1 Thanks @​ematipico! - Fixes an issue where some prendered pages weren't correctly rendered when using the Node.js adapter in middleware mode.

  • #15169 b803d8b Thanks @​rururux! - fix: fix image 500 error when moving dist directory in standalone Node

Changelog

Sourced from @​astrojs/node's changelog.

9.5.2

Patch Changes

  • #15196 a8317c1 Thanks @​ematipico! - Fixes an issue where some prendered pages weren't correctly rendered when using the Node.js adapter in middleware mode.

  • #15169 b803d8b Thanks @​rururux! - fix: fix image 500 error when moving dist directory in standalone Node

Commits

Updates astro from 5.16.6 to 5.16.13

Release notes

Sourced from astro's releases.

astro@5.16.13

Patch Changes

  • #15182 cb60ee1 Thanks @​florian-lefebvre! - Adds a new getFontBuffer() method to retrieve font file buffers when using the experimental Fonts API

    The getFontData() helper function from astro:assets was introduced in 5.14.0 to provide access to font family data for use outside of Astro. One of the goals of this API was to be able to retrieve buffers using URLs.

    However, it turned out to be impactical and even impossible during prerendering.

    Astro now exports a new getFontBuffer() helper function from astro:assets to retrieve font file buffers from URL returned by getFontData(). For example, when using satori to generate OpenGraph images:

    // src/pages/og.png.ts
    import type{ APIRoute } from "astro"
    -import { getFontData } from "astro:assets"
    +import { getFontData, getFontBuffer } from "astro:assets"
    import satori from "satori"
    export const GET: APIRoute = (context) => {
    const data = getFontData("--font-roboto")
    const svg = await satori(
    <div style={{ color: "black" }}>hello, world</div>,
    {
    width: 600,
    height: 400,
    fonts: [
    {
    name: "Roboto",
    
    
         data: await fetch(new URL(data[0].src[0].url, context.url.origin)).then(res =&gt; res.arrayBuffer()),
    
    
    
    
    
         data: await getFontBuffer(data[0].src[0].url),
        weight: 400,
        style: &quot;normal&quot;,
      },
    ],
    
    },
    )
    // ...
    }

See the experimental Fonts API documentation for more information.

astro@5.16.12

Patch Changes

... (truncated)

Changelog

Sourced from astro's changelog.

5.16.13

Patch Changes

  • #15182 cb60ee1 Thanks @​florian-lefebvre! - Adds a new getFontBuffer() method to retrieve font file buffers when using the experimental Fonts API

    The getFontData() helper function from astro:assets was introduced in 5.14.0 to provide access to font family data for use outside of Astro. One of the goals of this API was to be able to retrieve buffers using URLs.

    However, it turned out to be impactical and even impossible during prerendering.

    Astro now exports a new getFontBuffer() helper function from astro:assets to retrieve font file buffers from URL returned by getFontData(). For example, when using satori to generate OpenGraph images:

    // src/pages/og.png.ts
    import type{ APIRoute } from "astro"
    -import { getFontData } from "astro:assets"
    +import { getFontData, getFontBuffer } from "astro:assets"
    import satori from "satori"
    export const GET: APIRoute = (context) => {
    const data = getFontData("--font-roboto")
    const svg = await satori(
    <div style={{ color: "black" }}>hello, world</div>,
    {
    width: 600,
    height: 400,
    fonts: [
    {
    name: "Roboto",
    
    
         data: await fetch(new URL(data[0].src[0].url, context.url.origin)).then(res =&gt; res.arrayBuffer()),
    
    
    
    
    
         data: await getFontBuffer(data[0].src[0].url),
        weight: 400,
        style: &quot;normal&quot;,
      },
    ],
    
    },
    )
    // ...
    }

See the experimental Fonts API documentation for more information.

5.16.12

Patch Changes

... (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 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 <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

…updates

Bumps the npm-production group with 3 updates in the / directory: [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel), [@astrojs/node](https://github.com/withastro/astro/tree/HEAD/packages/integrations/node) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro).


Updates `@astrojs/vercel` from 9.0.2 to 9.0.4
- [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@9.0.4/packages/integrations/vercel)

Updates `@astrojs/node` from 9.5.1 to 9.5.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/node/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/node@9.5.2/packages/integrations/node)

Updates `astro` from 5.16.6 to 5.16.13
- [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.16.13/packages/astro)

---
updated-dependencies:
- dependency-name: "@astrojs/vercel"
  dependency-version: 9.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: "@astrojs/node"
  dependency-version: 9.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: astro
  dependency-version: 5.16.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jan 22, 2026
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants