Skip to content

build(deps): bump the npm-all group across 1 directory with 6 updates - #428

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-all-1eaee4257c
Open

dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-all-1eaee4257c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-all group with 6 updates in the / directory:

Package From To
@astrojs/markdown-satteri 0.3.7 0.4.1
@astrojs/starlight 0.41.7 0.42.0
satteri 0.9.5 0.10.5
sharp 0.35.3 0.35.4
js-yaml 4.3.1 4.3.2
prettier-plugin-astro 0.14.1 1.0.0

Updates @astrojs/markdown-satteri from 0.3.7 to 0.4.1

Release notes

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

@​astrojs/markdown-satteri@​0.4.1

Patch Changes

  • #17896 a548223 Thanks @​matthewp! - Fixes <script>/<style> rendering in MDX so that only literal content (including content injected by remark/rehype plugins) is treated as trusted markup. A dynamic value passed as a <script>/<style> child (e.g. <script>{value}</script>) is now escaped like any other element's content instead of being rendered raw. Use set:html to explicitly opt a dynamic value back into raw rendering.

@​astrojs/markdown-satteri@​0.4.0

Minor Changes

  • #17262 f8e9458 Thanks @​Princesseuh! - Adds MDX rendering to the unified() and satteri() processors.

    Both processors now compile .mdx files themselves. You still need to install @astrojs/mdx to add MDX support to your project.

Patch Changes

  • Updated dependencies [f8e9458]:
    • @​astrojs/internal-helpers@​0.11.0

@​astrojs/markdown-satteri@​0.3.8

Patch Changes

  • #17766 0762a83 Thanks @​HiDeoo! - Fixes Sätteri processor option types to accept all plugin entries supported by Sätteri v0.10.3.

  • #17314 0c99615 Thanks @​barry166! - Fixes the editor tooltip for smartPunctuation claiming it defaults to false when Astro enables it by default.

Changelog

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

0.4.1

Patch Changes

  • #17896 a548223 Thanks @​matthewp! - Fixes <script>/<style> rendering in MDX so that only literal content (including content injected by remark/rehype plugins) is treated as trusted markup. A dynamic value passed as a <script>/<style> child (e.g. <script>{value}</script>) is now escaped like any other element's content instead of being rendered raw. Use set:html to explicitly opt a dynamic value back into raw rendering.

0.4.0

Minor Changes

  • #17262 f8e9458 Thanks @​Princesseuh! - Adds MDX rendering to the unified() and satteri() processors.

    Both processors now compile .mdx files themselves. You still need to install @astrojs/mdx to add MDX support to your project.

Patch Changes

  • Updated dependencies [f8e9458]:
    • @​astrojs/internal-helpers@​0.11.0

0.3.8

Patch Changes

  • #17766 0762a83 Thanks @​HiDeoo! - Fixes Sätteri processor option types to accept all plugin entries supported by Sätteri v0.10.3.

  • #17314 0c99615 Thanks @​barry166! - Fixes the editor tooltip for smartPunctuation claiming it defaults to false when Astro enables it by default.

Commits

Updates @astrojs/starlight from 0.41.7 to 0.42.0

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.42.0

Minor Changes

  • #3572 292fb17 Thanks @​HiDeoo! - Distributes package as JavaScript files with dedicated type declaration files instead of TypeScript source files.

  • #4121 2623ae6 Thanks @​delucis! - Simplifies markup for Starlight’s mobile menu toggle

    ⚠️ Potentially breaking change: If you use a theme plugin, custom styles, or component overrides targeting the MobileMenuToggle button or PageFrame components, you may need to adjust these for the new markup. The button is no longer wrapped in a <starlight-menu-button> custom element and no longer uses the aria-expanded attribute. Instead, you can use the .sl-menu-button class name to target the button and the :popover-open pseudo-class to style the menu open state specifically.

    In the following example, custom styles for the menu button are updated for the new approach:

    - starlight-menu-button button {
    + .sl-menu-button {
      color: var(--sl-color-text);
    }
    
    starlight-menu-button[aria-expanded='true'] button {
    
    
    .sl-menu-button:has(~ :popover-open) {
    color: var(--sl-color-text-accent-high);
    }

See MobileMenuToggle.astro and PageFrame.astro on GitHub for the full source code of the updated components.

  • #3572 292fb17 Thanks @​HiDeoo! - Removes the tagline configuration option, which was never used.

    If your configuration included a tagline option, you can safely remove it without any replacement.

  • #4134 6135f01 Thanks @​HiDeoo! - Updates internal @astrojs/mdx, @astrojs/markdown-satteri, and satteri dependencies.

    ⚠️ BREAKING CHANGE: The following minimum versions are now required:

    • astro v7.2.10 or later
    • @astrojs/markdown-satteri 0.4.0 or later (if you use it)
    • @astrojs/markdown-remark 7.3.0 or later (if you use it)

    Please update Starlight and Astro together:

    npx @astrojs/upgrade
  • #4121 2623ae6 Thanks @​delucis! - Refactors Starlight’s mobile menu toggle to work when JavaScript fails or is disabled

    ⚠️ BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 116 (released August 2023), Safari-based browsers prior to version 17.0 (released September 2023), and Firefox prior to version 125 (released April 2024). You can find a list of currently supported browsers and their versions using this browserslist query.

    This change also removes the data-mobile-menu-expanded attribute, which was previously added to <body> while the mobile menu is open. If you have custom code that was depending on this attribute, you will need to update it to use a new selector to check if the mobile menu is open.

    In the following example, a custom background colour for the site header while the menu is open is updated for the new approach:

  • ... (truncated)

    Changelog

    Sourced from @​astrojs/starlight's changelog.

    0.42.0

    Minor Changes

    • #3572 292fb17 Thanks @​HiDeoo! - Distributes package as JavaScript files with dedicated type declaration files instead of TypeScript source files.

    • #4121 2623ae6 Thanks @​delucis! - Simplifies markup for Starlight’s mobile menu toggle

      ⚠️ Potentially breaking change: If you use a theme plugin, custom styles, or component overrides targeting the MobileMenuToggle button or PageFrame components, you may need to adjust these for the new markup. The button is no longer wrapped in a <starlight-menu-button> custom element and no longer uses the aria-expanded attribute. Instead, you can use the .sl-menu-button class name to target the button and the :popover-open pseudo-class to style the menu open state specifically.

      In the following example, custom styles for the menu button are updated for the new approach:

      - starlight-menu-button button {
      + .sl-menu-button {
        color: var(--sl-color-text);
      }
      
      starlight-menu-button[aria-expanded='true'] button {
      
      
      .sl-menu-button:has(~ :popover-open) {
      color: var(--sl-color-text-accent-high);
      }

    See MobileMenuToggle.astro and PageFrame.astro on GitHub for the full source code of the updated components.

  • #3572 292fb17 Thanks @​HiDeoo! - Removes the tagline configuration option, which was never used.

    If your configuration included a tagline option, you can safely remove it without any replacement.

  • #4134 6135f01 Thanks @​HiDeoo! - Updates internal @astrojs/mdx, @astrojs/markdown-satteri, and satteri dependencies.

    ⚠️ BREAKING CHANGE: The following minimum versions are now required:

    • astro v7.2.10 or later
    • @astrojs/markdown-satteri 0.4.0 or later (if you use it)
    • @astrojs/markdown-remark 7.3.0 or later (if you use it)

    Please update Starlight and Astro together:

    npx @astrojs/upgrade
  • #4121 2623ae6 Thanks @​delucis! - Refactors Starlight’s mobile menu toggle to work when JavaScript fails or is disabled

    ⚠️ BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 116 (released August 2023), Safari-based browsers prior to version 17.0 (released September 2023), and Firefox prior to version 125 (released April 2024). You can find a list of currently supported browsers and their versions using this browserslist query.

    This change also removes the data-mobile-menu-expanded attribute, which was previously added to <body> while the mobile menu is open. If you have custom code that was depending on this attribute, you will need to update it to use a new selector to check if the mobile menu is open.

  • ... (truncated)

    Commits

    Updates satteri from 0.9.5 to 0.10.5

    Release notes

    Sourced from satteri's releases.

    satteri-v0.10.5

    Patch changes

    • Updated dependencies: satteri-mdxjs (Cargo)@​0.3.13

    satteri-v0.10.4

    Patch changes

    • Updated dependencies: satteri-mdxjs (Cargo)@​0.3.13

    satteri-v0.10.3

    Patch changes

    • 2cf9aef Added clobberPrefix option to footnotes, mirroring remark-rehype — Thanks @​Princesseuh!
    • Updated dependencies: satteri-ast (Cargo)@​0.5.3, satteri-mdxjs (Cargo)@​0.3.12, satteri-pulldown-cmark (Cargo)@​0.6.3

    satteri-v0.10.2

    Patch changes

    • Updated dependencies: satteri-ast (Cargo)@​0.5.2, satteri-mdxjs (Cargo)@​0.3.11, satteri-pulldown-cmark (Cargo)@​0.6.2

    satteri-v0.10.1

    Patch changes

    • Updated dependencies: satteri-ast (Cargo)@​0.5.1, satteri-mdxjs (Cargo)@​0.3.10, satteri-pulldown-cmark (Cargo)@​0.6.1

    satteri-v0.10.0

    Patch changes

    • 0d26ea6 Changed the minimum supported Rust version to 1.85, as these crates now build on the 2024 edition. — Thanks @​Princesseuh!
    • Updated dependencies: satteri-ast (Cargo)@​0.5.0, satteri-mdxjs (Cargo)@​0.3.9, satteri-pulldown-cmark (Cargo)@​0.6.0
    Commits
    • b3d38e1 Release (main) (#276)
    • 393aed7 fix(release): fail the job when a native binding fails to publish (#275)
    • f2eb29a Release (main) (#273)
    • 72d4710 fix(mdx): key explicit JSX by node identity instead of span (#272)
    • f339a9c chore(website): update playground to satteri 0.10.3 (#269)
    • 5df21fc Release (main) (#268)
    • 1a052cf chore(changeset): collapse the pipeline performance changesets into one
    • 2cf9aef Revert "Release (main) (#267)"
    • a7132d2 Release (main) (#267)
    • d21f486 perf: cut per-call cost across the parser, renderer, and napi boundary (#257)
    • Additional commits viewable in compare view

    Updates sharp from 0.35.3 to 0.35.4

    Release notes

    Sourced from sharp's releases.

    v0.35.4

    https://github.com/lovell/sharp-libvips/releases/tag/v1.3.3

    v0.35.4-rc.0

    Commits
    • 7f1a0a2 Release v0.35.4
    • f927818 Upgrade to sharp-libvips v1.3.3
    • e802092 Prerelease v0.35.4-rc.0
    • e13eb2f CI: Fix wasm32 build (#4589)
    • a82a0b3 Upgrade to libvips v8.18.6
    • 8044fe4 Bound resize dimensions to coordinate limit
    • 147f859 Docs: changelog entries for #4578 #4584
    • ee5bfb8 Tests: use yauzl directly rather than via extract-zip wrapper
    • 7a77889 Bump uraimo/run-on-arch-action from 3.1.0 to 3.2.0 (#4588)
    • ea5bef2 Improve support for input Streams finishing before output is requested (#4584)
    • Additional commits viewable in compare view

    Updates js-yaml from 4.3.1 to 4.3.2

    Changelog

    Sourced from js-yaml's changelog.

    4.3.2 - 2026-08-26

    Changed

    • [backport] Hard-limit merge sequence size to 100.

    Security

    • [backport] Count empty mappings in merge sequences toward maxTotalMergeKeys to limit CPU usage, #797.
    Commits

    Updates prettier-plugin-astro from 0.14.1 to 1.0.0

    Release notes

    Sourced from prettier-plugin-astro's releases.

    v1.0.0

    Major Changes

    • a8bf1a3: Raises the minimum supported Node version to 22.12.0.

    • 595d47f: The plugin has been fully rewritten on top of Astro 7's new Rust compiler. This rewrite fixes many long-standing issues, such as certain elements not being handled properly inside expressions.

      Whitespace formatting now matches Astro’s whitespace handling, and a new astroCompressHTML option has been added to match Astro's compressHTML setting. If you set compressHTML in your Astro config, also set astroCompressHTML in your Prettier config to match.

      In addition, this rewrite has allowed us to more closely match Prettier's built-in JSX and HTML formatting, leading to less cosmetic differences between the different files in your repo.

    v1.0.0-beta.2

    Patch Changes

    • cc30d24: Fixes various formatting issues when using astroCompressHTML: 'html' or 'none':

      • Fixes a stray > being added after an empty or ignored element that is followed by a sibling.
      • Fixes closing tags being split from trailing void elements like <img>.
      • Fixes whitespace being added inside tables, lists, and captions under htmlWhitespaceSensitivity: 'strict'.
      • Fixes line breaks around inline elements being replaced by spaces.
      • Allows inline elements to wrap at the print width without adding rendered whitespace.
      • Keeps inline elements written on one line on that line.
      • Fixes components with dotted names like <Astro.self> losing their closing tags or failing to format.
      • Fixes whitespace around inline-block elements and reflowing markup written on one line.
      • Fixes quotes in style attribute values being written unescaped, corrupting the attribute and breaking the next format.
      • Fixes children hugging the closing bracket when an element's attributes span multiple lines.
      • Fixes whitespace being added around a lone <slot />, which stopped :empty from matching the container.
      • Fixes srcset values being mangled when a URL contains a comma, such as a data: URI or query string.
      • Lays out block-level elements like HTML.
      • Fixes whitespace being removed around a lone <slot />, which allowed :empty to start matching the container.
      • Fixes children hugging the closing bracket when an element's attributes wrap and allows a lone long attribute to wrap.
      • Formats style and srcset attributes.
      • Allows runs of adjacent inline elements to wrap at the print width without adding rendered whitespace.
      • Lays out graphical SVG contents one element per line.
      • Fixes nested markup being kept on one line.
      • Fixes spaces being removed from text directly inside <body>.
      • Fixes nested elements being collapsed onto a single line.
      • Fixes a blank line being left inside an opening tag whose attributes break.

    v1.0.0-beta.1

    Major Changes

    • a8bf1a3: Raises the minimum supported Node version to 22.12.0.

    Patch Changes

    • b0ec799: Fixes <script> tags being formatted as JavaScript instead of TypeScript
    • 04ecfe2: Fixes a crash on parenthesized types in template expressions

    v1.0.0-beta.0

    Major Changes

    ... (truncated)

    Changelog

    Sourced from prettier-plugin-astro's changelog.

    1.0.0

    Major Changes

    • a8bf1a3: Raises the minimum supported Node version to 22.12.0.

    • 595d47f: The plugin has been fully rewritten on top of Astro 7's new Rust compiler. This rewrite fixes many long-standing issues, such as certain elements not being handled properly inside expressions.

      Whitespace formatting now matches Astro’s whitespace handling, and a new astroCompressHTML option has been added to match Astro's compressHTML setting. If you set compressHTML in your Astro config, also set astroCompressHTML in your Prettier config to match.

      In addition, this rewrite has allowed us to more closely match Prettier's built-in JSX and HTML formatting, leading to less cosmetic differences between the different files in your repo.

    1.0.0-beta.2

    Patch Changes

    • cc30d24: Fixes various formatting issues when using astroCompressHTML: 'html' or 'none':

      • Fixes a stray > being added after an empty or ignored element that is followed by a sibling.
      • Fixes closing tags being split from trailing void elements like <img>.
      • Fixes whitespace being added inside tables, lists, and captions under htmlWhitespaceSensitivity: 'strict'.
      • Fixes line breaks around inline elements being replaced by spaces.
      • Allows inline elements to wrap at the print width without adding rendered whitespace.
      • Keeps inline elements written on one line on that line.
      • Fixes components with dotted names like <Astro.self> losing their closing tags or failing to format.
      • Fixes whitespace around inline-block elements and reflowing markup written on one line.
      • Fixes quotes in style attribute values being written unescaped, corrupting the attribute and breaking the next format.
      • Fixes children hugging the closing bracket when an element's attributes span multiple lines.
      • Fixes whitespace being added around a lone <slot />, which stopped :empty from matching the container.
      • Fixes srcset values being mangled when a URL contains a comma, such as a data: URI or query string.
      • Lays out block-level elements like HTML.
      • Fixes whitespace being removed around a lone <slot />, which allowed :empty to start matching the container.
      • Fixes children hugging the closing bracket when an element's attributes wrap and allows a lone long attribute to wrap.
      • Formats style and srcset attributes.
      • Allows runs of adjacent inline elements to wrap at the print width without adding rendered whitespace.
      • Lays out graphical SVG contents one element per line.
      • Fixes nested markup being kept on one line.
      • Fixes spaces being removed from text directly inside <body>.
      • Fixes nested elements being collapsed onto a single line.
      • Fixes a blank line being left inside an opening tag whose attributes break.

    1.0.0-beta.1

    Major Changes

    • a8bf1a3: Raises the minimum supported Node version to 22.12.0.

    Patch Changes

    • b0ec799: Fixes <script> tags being formatted as JavaScript instead of TypeScript
    • 04ecfe2: Fixes a crash on parenthesized types in template expressions

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for prettier-plugin-astro since your current version.


    Most Recent Ignore Conditions Applied to This Pull Request
    Dependency Name Ignore Conditions
    js-yaml [>= 5.a, < 6]

    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-all group with 6 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/markdown-satteri](https://github.com/withastro/astro/tree/HEAD/packages/markdown/satteri) | `0.3.7` | `0.4.1` |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.41.7` | `0.42.0` |
    | [satteri](https://github.com/bruits/satteri) | `0.9.5` | `0.10.5` |
    | [sharp](https://github.com/lovell/sharp) | `0.35.3` | `0.35.4` |
    | [js-yaml](https://github.com/nodeca/js-yaml) | `4.3.1` | `4.3.2` |
    | [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) | `0.14.1` | `1.0.0` |
    
    
    
    Updates `@astrojs/markdown-satteri` from 0.3.7 to 0.4.1
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/markdown/satteri/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/markdown-satteri@0.4.1/packages/markdown/satteri)
    
    Updates `@astrojs/starlight` from 0.41.7 to 0.42.0
    - [Release notes](https://github.com/withastro/starlight/releases)
    - [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)
    - [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.42.0/packages/starlight)
    
    Updates `satteri` from 0.9.5 to 0.10.5
    - [Release notes](https://github.com/bruits/satteri/releases)
    - [Commits](bruits/satteri@satteri-v0.9.5...satteri-v0.10.5)
    
    Updates `sharp` from 0.35.3 to 0.35.4
    - [Release notes](https://github.com/lovell/sharp/releases)
    - [Commits](lovell/sharp@v0.35.3...v0.35.4)
    
    Updates `js-yaml` from 4.3.1 to 4.3.2
    - [Changelog](https://github.com/nodeca/js-yaml/blob/4.3.2/CHANGELOG.md)
    - [Commits](nodeca/js-yaml@4.3.1...4.3.2)
    
    Updates `prettier-plugin-astro` from 0.14.1 to 1.0.0
    - [Release notes](https://github.com/withastro/prettier-plugin-astro/releases)
    - [Changelog](https://github.com/withastro/prettier-plugin-astro/blob/main/CHANGELOG.md)
    - [Commits](withastro/prettier-plugin-astro@v0.14.1...v1.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/markdown-satteri"
      dependency-version: 0.4.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-all
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.42.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-all
    - dependency-name: satteri
      dependency-version: 0.10.5
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-all
    - dependency-name: sharp
      dependency-version: 0.35.4
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: js-yaml
      dependency-version: 4.3.2
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: prettier-plugin-astro
      dependency-version: 1.0.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: npm-all
    ...
    
    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 Sep 14, 2026
    @dependabot
    dependabot Bot requested a review from a team as a code owner September 14, 2026 15:07
    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 14, 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