Skip to content

chore(deps): bump the npm-deps group with 3 updates#523

Open
dependabot[bot] wants to merge 3 commits intomainfrom
dependabot/npm_and_yarn/npm-deps-9640205052
Open

chore(deps): bump the npm-deps group with 3 updates#523
dependabot[bot] wants to merge 3 commits intomainfrom
dependabot/npm_and_yarn/npm-deps-9640205052

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2026

Bumps the npm-deps group with 3 updates: astro, typescript and starlight-links-validator.

Updates astro from 6.0.8 to 6.1.1

Release notes

Sourced from astro's releases.

astro@6.1.1

Patch Changes

astro@6.1.0

Minor Changes

  • #15804 a5e7232 Thanks @​merlinnot! - Allows setting codec-specific defaults for Astro's built-in Sharp image service via image.service.config.

    You can now configure encoder-level options such as jpeg.mozjpeg, webp.effort, webp.alphaQuality, avif.effort, avif.chromaSubsampling, and png.compressionLevel when using astro/assets/services/sharp for compile-time image generation.

    These settings apply as defaults for the built-in Sharp pipeline, while per-image quality still takes precedence when set on <Image />, <Picture />, or getImage().

  • #15455 babf57f Thanks @​AhmadYasser1! - Adds fallbackRoutes to the IntegrationResolvedRoute type, exposing i18n fallback routes to integrations via the astro:routes:resolved hook for projects using fallbackType: 'rewrite'.

    This allows integrations such as the sitemap integration to properly include generated fallback routes in their output.

    {
      'astro:routes:resolved': ({ routes }) => {
        for (const route of routes) {
          for (const fallback of route.fallbackRoutes) {
            console.log(fallback.pathname) // e.g. /fr/about/
          }
        }
      }
    }
  • #15340 10a1a5a Thanks @​trueberryless! - Adds support for advanced configuration of SmartyPants in Markdown.

    You can now pass an options object to markdown.smartypants in your Astro configuration to fine-tune how punctuation, dashes, and quotes are transformed.

    This is helpful for projects that require specific typographic standards, such as "oldschool" dash handling or localized quotation marks.

    // astro.config.mjs
    export default defineConfig({
      markdown: {
        smartypants: {
          backticks: 'all',
          dashes: 'oldschool',
          ellipses: 'unspaced',
          openingQuotes: { double: '«', single: '‹' },
          closingQuotes: { double: '»', single: '›' },
          quotes: false,
        },

... (truncated)

Changelog

Sourced from astro's changelog.

6.1.1

Patch Changes

6.1.0

Minor Changes

  • #15804 a5e7232 Thanks @​merlinnot! - Allows setting codec-specific defaults for Astro's built-in Sharp image service via image.service.config.

    You can now configure encoder-level options such as jpeg.mozjpeg, webp.effort, webp.alphaQuality, avif.effort, avif.chromaSubsampling, and png.compressionLevel when using astro/assets/services/sharp for compile-time image generation.

    These settings apply as defaults for the built-in Sharp pipeline, while per-image quality still takes precedence when set on <Image />, <Picture />, or getImage().

  • #15455 babf57f Thanks @​AhmadYasser1! - Adds fallbackRoutes to the IntegrationResolvedRoute type, exposing i18n fallback routes to integrations via the astro:routes:resolved hook for projects using fallbackType: 'rewrite'.

    This allows integrations such as the sitemap integration to properly include generated fallback routes in their output.

    {
      'astro:routes:resolved': ({ routes }) => {
        for (const route of routes) {
          for (const fallback of route.fallbackRoutes) {
            console.log(fallback.pathname) // e.g. /fr/about/
          }
        }
      }
    }
  • #15340 10a1a5a Thanks @​trueberryless! - Adds support for advanced configuration of SmartyPants in Markdown.

    You can now pass an options object to markdown.smartypants in your Astro configuration to fine-tune how punctuation, dashes, and quotes are transformed.

    This is helpful for projects that require specific typographic standards, such as "oldschool" dash handling or localized quotation marks.

    // astro.config.mjs
    export default defineConfig({
      markdown: {
        smartypants: {
          backticks: 'all',
          dashes: 'oldschool',
          ellipses: 'unspaced',
          openingQuotes: { double: '«', single: '‹' },
          closingQuotes: { double: '»', single: '›' },

... (truncated)

Commits

Updates typescript from 5.9.3 to 6.0.2

Release notes

Sourced from typescript's releases.

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits

Updates starlight-links-validator from 0.20.1 to 0.21.0

Release notes

Sourced from starlight-links-validator's releases.

starlight-links-validator@0.21.0

Minor Changes

  • #142 9ee77ad Thanks @​HiDeoo! - Refactors internal logic from a remark to a rehype plugin.

    This is an internal update and should not cause any user-facing changes, but it improves plugin performance and fixes some edge-case validation issues.

  • #144 b30aa17 Thanks @​HiDeoo! - Redesigns link validation error reporting to be more user-friendly and actionable.

    Most notably, error reporting now includes the following improvements:

    • Errors now include source line numbers.
    • In supported terminals and editors, links can open the source file at the relevant error location.
    • In supported terminals, error messages link to dedicated documentation pages with explanations and suggested fixes.
  • #145 82cb4d Thanks @​HiDeoo! - Adds support for a GitHub Actions reporter.

    When enabled and the plugin runs in GitHub Actions, validation errors are written to the job summary as a Markdown table.

  • #142 9ee77ad Thanks @​HiDeoo! - Adds support for validating links transformed by remark and rehype plugins.

    This change allows users to use portable Markdown links, author links that can be followed in an IDE and that are transformed by remark or rehype plugins into proper URLs at build time, while still being validated.

  • #144 b30aa17 Thanks @​HiDeoo! - Reduces terminal text styling dependency size by switching to Node.js built-in util.styleText().

Patch Changes

Changelog

Sourced from starlight-links-validator's changelog.

0.21.0

Minor Changes

  • #142 9ee77ad Thanks @​HiDeoo! - Refactors internal logic from a remark to a rehype plugin.

    This is an internal update and should not cause any user-facing changes, but it improves plugin performance and fixes some edge-case validation issues.

  • #144 b30aa17 Thanks @​HiDeoo! - Redesigns link validation error reporting to be more user-friendly and actionable.

    Most notably, error reporting now includes the following improvements:

    • Errors now include source line numbers.
    • In supported terminals and editors, links can open the source file at the relevant error location.
    • In supported terminals, error messages link to dedicated documentation pages with explanations and suggested fixes.
  • #145 82cb4d Thanks @​HiDeoo! - Adds support for a GitHub Actions reporter.

    When enabled and the plugin runs in GitHub Actions, validation errors are written to the job summary as a Markdown table.

  • #142 9ee77ad Thanks @​HiDeoo! - Adds support for validating links transformed by remark and rehype plugins.

    This change allows users to use portable Markdown links, author links that can be followed in an IDE and that are transformed by remark or rehype plugins into proper URLs at build time, while still being validated.

  • #144 b30aa17 Thanks @​HiDeoo! - Reduces terminal text styling dependency size by switching to Node.js built-in util.styleText().

Patch Changes

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-deps group with 3 updates: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [typescript](https://github.com/microsoft/TypeScript) and [starlight-links-validator](https://github.com/HiDeoo/starlight-links-validator/tree/HEAD/packages/starlight-links-validator).


Updates `astro` from 6.0.8 to 6.1.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@6.1.1/packages/astro)

Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `starlight-links-validator` from 0.20.1 to 0.21.0
- [Release notes](https://github.com/HiDeoo/starlight-links-validator/releases)
- [Changelog](https://github.com/HiDeoo/starlight-links-validator/blob/main/packages/starlight-links-validator/CHANGELOG.md)
- [Commits](https://github.com/HiDeoo/starlight-links-validator/commits/starlight-links-validator@0.21.0/packages/starlight-links-validator)

---
updated-dependencies:
- dependency-name: astro
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-deps
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-deps
- dependency-name: starlight-links-validator
  dependency-version: 0.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-deps
...

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 Mar 30, 2026
@tomarra
Copy link
Copy Markdown
Contributor

tomarra commented Mar 30, 2026

@astrojs/check@0.9.8 requires typescript@^5.0.0 so backing that down for this weeks update. Hopefully next week it gets picked back up and that package is ready for the update.

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.

1 participant