Skip to content

Bump the npm-minor-updates group across 1 directory with 7 updates#11182

Merged
NigelBreslaw merged 2 commits intomasterfrom
dependabot/npm_and_yarn/npm-minor-updates-4f8be6b628
Mar 30, 2026
Merged

Bump the npm-minor-updates group across 1 directory with 7 updates#11182
NigelBreslaw merged 2 commits intomasterfrom
dependabot/npm_and_yarn/npm-minor-updates-4f8be6b628

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the npm-minor-updates group with 7 updates in the / directory:

Package From To
@napi-rs/cli 3.5.1 3.6.0
image-js 1.4.0 1.5.0
@figma/plugin-typings 1.123.0 1.124.0
@astrojs/markdown-remark 7.0.1 7.1.0
astro 6.0.8 6.1.1
knip 6.0.6 6.1.0
starlight-links-validator 0.20.1 0.21.0

Updates @napi-rs/cli from 3.5.1 to 3.6.0

Commits

Updates image-js from 1.4.0 to 1.5.0

Release notes

Sourced from image-js's releases.

v1.5.0

1.5.0 (2026-03-27)

Features

  • make skia-canvas an optional dependency (#787) (16861e9)
Changelog

Sourced from image-js's changelog.

1.5.0 (2026-03-27)

Features

  • make skia-canvas an optional dependency (#787) (16861e9)
Commits

Updates @figma/plugin-typings from 1.123.0 to 1.124.0

Commits

Updates @astrojs/markdown-remark from 7.0.1 to 7.1.0

Release notes

Sourced from @​astrojs/markdown-remark's releases.

@​astrojs/markdown-remark@​7.1.0

Minor Changes

  • #15340 10a1a5a Thanks @​trueberryless! - Updates createMarkdownProcessor to support advanced SmartyPants options.

    The smartypants property in AstroMarkdownOptions now accepts Smartypants options, allowing fine-grained control over typography transformations (backticks, dashes, ellipses, and quotes).

    import { createMarkdownProcessor } from '@astrojs/markdown-remark';
    const processor = await createMarkdownProcessor({
    smartypants: {
    backticks: 'all',
    dashes: 'oldschool',
    ellipses: 'unspaced',
    openingQuotes: { double: '«', single: '‹' },
    closingQuotes: { double: '»', single: '›' },
    quotes: false,
    },
    });

    For the up-to-date supported properties, check out the retext-smartypants options.

Changelog

Sourced from @​astrojs/markdown-remark's changelog.

7.1.0

Minor Changes

  • #15340 10a1a5a Thanks @​trueberryless! - Updates createMarkdownProcessor to support advanced SmartyPants options.

    The smartypants property in AstroMarkdownOptions now accepts Smartypants options, allowing fine-grained control over typography transformations (backticks, dashes, ellipses, and quotes).

    import { createMarkdownProcessor } from '@astrojs/markdown-remark';
    const processor = await createMarkdownProcessor({
    smartypants: {
    backticks: 'all',
    dashes: 'oldschool',
    ellipses: 'unspaced',
    openingQuotes: { double: '«', single: '‹' },
    closingQuotes: { double: '»', single: '›' },
    quotes: false,
    },
    });

    For the up-to-date supported properties, check out the retext-smartypants options.

Commits

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 knip from 6.0.6 to 6.1.0

Release notes

Sourced from knip's releases.

Release 6.1.0

  • Add knip.nodeRuntimePath setting (resolve #1643) (65e943ccde55ea54c1cd749e577b4bcb4f97e1b4)
  • Swap Astro sharp detection to match default behavior (#1559) (84968bb713a0d8c478b8b329323a43da6bf0833e)
  • feat: stencil plugin (#1644) (d5d20e5e21d64590c0e735c6bc840295cda665cd) - thanks @​johnjenkins!
  • Enable metro plugin when expo is installed (#1600) (14bc9d7744962d740e2bef1ead3e3f444b2cca5c) - thanks @​DaniFoldi!
  • Resolve jsPlugins dependencies in oxlint plugin (#1576) (e11c962ea55d7afa89ae812686565383b852a50a) - thanks @​nikolailehbrink!
  • Wrap up oxlint jsPlugins support (209a9f78784153d14c2ef0ae2c987926d35de4b7)
  • Update dependencies (close #1646) (869020fc2ed765a52cc242810e0f20a137047b26)
  • Fix config hint filePath edge case (e79c302f9cfd33957485327688e5fcbc25848eec)
  • Rename oxlint config file in fixtures (563020402f35281f2c57672aff12a09aebb363fe)
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 dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 30, 2026
@NigelBreslaw
Copy link
Copy Markdown
Member

@dependabot recreate

Bumps the npm-minor-updates group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@napi-rs/cli](https://github.com/napi-rs/napi-rs) | `3.5.1` | `3.6.0` |
| [image-js](https://github.com/image-js/image-js) | `1.4.0` | `1.5.0` |
| [@figma/plugin-typings](https://github.com/figma/plugin-typings) | `1.123.0` | `1.124.0` |
| [@astrojs/markdown-remark](https://github.com/withastro/astro/tree/HEAD/packages/markdown/remark) | `7.0.1` | `7.1.0` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `6.0.8` | `6.1.1` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.0.6` | `6.1.0` |
| [starlight-links-validator](https://github.com/HiDeoo/starlight-links-validator/tree/HEAD/packages/starlight-links-validator) | `0.20.1` | `0.21.0` |


Updates `@napi-rs/cli` from 3.5.1 to 3.6.0
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](https://github.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.5.1...@napi-rs/cli@3.6.0)

Updates `image-js` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/image-js/image-js/releases)
- [Changelog](https://github.com/image-js/image-js/blob/main/CHANGELOG.md)
- [Commits](image-js/image-js@v1.4.0...v1.5.0)

Updates `@figma/plugin-typings` from 1.123.0 to 1.124.0
- [Commits](figma/plugin-typings@v1.123.0...v1.124.0)

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

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 `knip` from 6.0.6 to 6.1.0
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@6.1.0/packages/knip)

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: "@napi-rs/cli"
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-updates
- dependency-name: image-js
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-updates
- dependency-name: "@figma/plugin-typings"
  dependency-version: 1.124.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-updates
- dependency-name: "@astrojs/markdown-remark"
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-updates
- dependency-name: astro
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-updates
- dependency-name: knip
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-updates
- dependency-name: starlight-links-validator
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot changed the title Bump the npm-minor-updates group with 7 updates Bump the npm-minor-updates group across 1 directory with 7 updates Mar 30, 2026
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm-minor-updates-4f8be6b628 branch from b997ee8 to cc83f2d Compare March 30, 2026 06:54
@NigelBreslaw NigelBreslaw merged commit 9e35b55 into master Mar 30, 2026
43 checks passed
@NigelBreslaw NigelBreslaw deleted the dependabot/npm_and_yarn/npm-minor-updates-4f8be6b628 branch March 30, 2026 07:25
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