Skip to content

chore(deps): bump the npm-astro-dependencies group across 1 directory with 4 updates#95

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/application/npm-astro-dependencies-a73390d890
Closed

chore(deps): bump the npm-astro-dependencies group across 1 directory with 4 updates#95
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/application/npm-astro-dependencies-a73390d890

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 15, 2026

Bumps the npm-astro-dependencies group with 4 updates in the /application directory: @astrojs/rss, @astrojs/sitemap, astro and astro-embed.

Updates @astrojs/rss from 4.0.11 to 4.0.15

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.15

Patch Changes

@​astrojs/rss@​4.0.15-beta.3

Patch Changes

@​astrojs/rss@​4.0.15-beta.2

Patch Changes

@​astrojs/rss@​4.0.15-beta.1

Patch Changes

Changelog

Sourced from @​astrojs/rss's changelog.

4.0.15

Patch Changes

4.0.14

Patch Changes

4.0.13

Patch Changes

  • #14598 7b45c65 Thanks @​delucis! - Reduces terminal text styling dependency size by switching from kleur to picocolors

4.0.12

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​astrojs/rss since your current version.


Updates @astrojs/sitemap from 3.3.0 to 3.7.0

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.7.0

Minor Changes

  • #14471 4296373 Thanks @​Slackluky! - Adds the ability to split sitemap generation into chunks based on customizable logic. This allows for better management of large sitemaps and improved performance. The new chunks option in the sitemap configuration allows users to define functions that categorize sitemap items into different chunks. Each chunk is then written to a separate sitemap file.

    integrations: [
      sitemap({
        serialize(item) { th
          return item
        },
        chunks: { // this property will be treated last on the configuration
          'blog': (item) => {  // will produce a sitemap file with `blog` name (sitemap-blog-0.xml)
            if (/blog/.test(item.url)) { // filter path that will be included in this specific sitemap file
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.9; // define specific properties for this filtered path
              return item;
            }
          },
          'glossary': (item) => {
            if (/glossary/.test(item.url)) {
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.7;
              return item;
            }
          }
    
      // the rest of the path will be stored in `sitemap-pages.0.xml`
    },
    

    }), ],

@​astrojs/sitemap@​3.6.1-beta.3

Patch Changes

@​astrojs/sitemap@​3.6.1-beta.2

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.7.0

Minor Changes

  • #14471 4296373 Thanks @​Slackluky! - Adds the ability to split sitemap generation into chunks based on customizable logic. This allows for better management of large sitemaps and improved performance. The new chunks option in the sitemap configuration allows users to define functions that categorize sitemap items into different chunks. Each chunk is then written to a separate sitemap file.

    integrations: [
      sitemap({
        serialize(item) { th
          return item
        },
        chunks: { // this property will be treated last on the configuration
          'blog': (item) => {  // will produce a sitemap file with `blog` name (sitemap-blog-0.xml)
            if (/blog/.test(item.url)) { // filter path that will be included in this specific sitemap file
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.9; // define specific properties for this filtered path
              return item;
            }
          },
          'glossary': (item) => {
            if (/glossary/.test(item.url)) {
              item.changefreq = 'weekly';
              item.lastmod = new Date();
              item.priority = 0.7;
              return item;
            }
          }
    
      // the rest of the path will be stored in `sitemap-pages.0.xml`
    },
    

    }), ],

3.6.1

Patch Changes

3.6.0

Minor Changes

  • #14285 bedc31b Thanks @​jdcolombo! - Adds a new configuration option namespaces for more control over XML namespaces used in sitemap generation

    Excluding unused namespaces can help create cleaner, more focused sitemaps that are faster for search engines to parse and use less bandwidth. If your site doesn't have news content, videos, or multiple languages, you can exclude those namespaces to reduce XML bloat.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​astrojs/sitemap since your current version.


Updates astro from 5.7.3 to 5.17.2

Release notes

Sourced from astro's releases.

astro@5.17.2

Patch Changes

  • c13b536 Thanks @​matthewp! - Improves Host header handling for SSR deployments behind proxies

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 };

... (truncated)

Changelog

Sourced from astro's changelog.

5.17.2

Patch Changes

  • c13b536 Thanks @​matthewp! - Improves Host header handling for SSR deployments behind proxies

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;
    },
    
    }),
    });

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for astro since your current version.


Updates astro-embed from 0.9.0 to 0.12.0

Release notes

Sourced from astro-embed's releases.

astro-embed@0.12.0

Minor Changes

Patch Changes

  • Updated dependencies [eee1d7e]:
    • @​astro-community/astro-embed-integration@​0.11.0
    • @​astro-community/astro-embed-gist@​0.1.0

astro-embed@0.11.0

Minor Changes

  • #140 30121f2 Thanks @​HiDeoo! - Adds a new MastodonPost component for embedding posts to Mastodon servers

Patch Changes

  • Updated dependencies [30121f2]:
    • @​astro-community/astro-embed-integration@​0.10.0
    • @​astro-community/astro-embed-mastodon@​0.1.0

astro-embed@0.10.0

Minor Changes

Patch Changes

  • Updated dependencies [101466c, a2201be, a2201be, a186fa1]:
    • @​astro-community/astro-embed-bluesky@​0.1.6
    • @​astro-community/astro-embed-baseline-status@​0.2.2
    • @​astro-community/astro-embed-twitter@​0.5.10
    • @​astro-community/astro-embed-youtube@​0.5.10
    • @​astro-community/astro-embed-vimeo@​0.3.12
    • @​astro-community/astro-embed-integration@​0.9.0
    • @​astro-community/astro-embed-link-preview@​0.3.0

astro-embed@0.9.2

Patch Changes

  • #219 d90ce7a Thanks @​delucis! - No code changes. This release is the first published using OIDC trusted publisher configuration for improved security.

  • Updated dependencies [d90ce7a]:

    • @​astro-community/astro-embed-baseline-status@​0.2.1
    • @​astro-community/astro-embed-bluesky@​0.1.5
    • @​astro-community/astro-embed-integration@​0.8.3
    • @​astro-community/astro-embed-link-preview@​0.2.3
    • @​astro-community/astro-embed-twitter@​0.5.9
    • @​astro-community/astro-embed-vimeo@​0.3.11

... (truncated)

Changelog

Sourced from astro-embed's changelog.

0.12.0

Minor Changes

Patch Changes

  • Updated dependencies [eee1d7e]:
    • @​astro-community/astro-embed-integration@​0.11.0
    • @​astro-community/astro-embed-gist@​0.1.0

0.11.0

Minor Changes

  • #140 30121f2 Thanks @​HiDeoo! - Adds a new MastodonPost component for embedding posts to Mastodon servers

Patch Changes

  • Updated dependencies [30121f2]:
    • @​astro-community/astro-embed-integration@​0.10.0
    • @​astro-community/astro-embed-mastodon@​0.1.0

0.10.0

Minor Changes

Patch Changes

  • Updated dependencies [101466c, a2201be, a2201be, a186fa1]:
    • @​astro-community/astro-embed-bluesky@​0.1.6
    • @​astro-community/astro-embed-baseline-status@​0.2.2
    • @​astro-community/astro-embed-twitter@​0.5.10
    • @​astro-community/astro-embed-youtube@​0.5.10
    • @​astro-community/astro-embed-vimeo@​0.3.12
    • @​astro-community/astro-embed-integration@​0.9.0
    • @​astro-community/astro-embed-link-preview@​0.3.0

0.9.2

Patch Changes

  • #219 d90ce7a Thanks @​delucis! - No code changes. This release is the first published using OIDC trusted publisher configuration for improved security.

  • Updated dependencies [d90ce7a]:

    • @​astro-community/astro-embed-baseline-status@​0.2.1
    • @​astro-community/astro-embed-bluesky@​0.1.5

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for astro-embed since your current version.


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

… with 4 updates

Bumps the npm-astro-dependencies group with 4 updates in the /application directory: [@astrojs/rss](https://github.com/withastro/astro/tree/HEAD/packages/astro-rss), [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) and [astro-embed](https://github.com/delucis/astro-embed/tree/HEAD/packages/astro-embed).


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

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

Updates `astro` from 5.7.3 to 5.17.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/astro@5.17.2/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@5.17.2/packages/astro)

Updates `astro-embed` from 0.9.0 to 0.12.0
- [Release notes](https://github.com/delucis/astro-embed/releases)
- [Changelog](https://github.com/delucis/astro-embed/blob/main/packages/astro-embed/CHANGELOG.md)
- [Commits](https://github.com/delucis/astro-embed/commits/astro-embed@0.12.0/packages/astro-embed)

---
updated-dependencies:
- dependency-name: "@astrojs/rss"
  dependency-version: 4.0.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-astro-dependencies
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-astro-dependencies
- dependency-name: astro
  dependency-version: 5.17.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-astro-dependencies
- dependency-name: astro-embed
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-astro-dependencies
...

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 Feb 15, 2026
@github-actions
Copy link
Copy Markdown

Hi, thank you for creating your PR, we will check it out very soon

@github-actions
Copy link
Copy Markdown

Code Coverage Report

Coverage Results

Test Results

Status Count
✅ Passed 65
❌ Failed 0
⏭️ Skipped 0
Total 65

Pass Rate: 100.0%

Coverage

Metric Covered Total Percentage
Lines 402 434 92.63%
Branches 297 370 80.27%
Functions 96 100 96.00%

Overall: 92.63% 🟢
🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩⬜

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 15, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Feb 15, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/application/npm-astro-dependencies-a73390d890 branch February 15, 2026 17:43
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