Skip to content

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

Merged
erinxocon merged 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-all-2c71b50c3d
Sep 21, 2026
Merged

erinxocon merged 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-all-2c71b50c3d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026 •

Copy link
Copy Markdown
Contributor

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

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

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

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.42.2

Patch Changes

@​astrojs/starlight@​0.42.1

Patch Changes

  • #4198 96a44d4 Thanks @​mayank99! - Removes the popover attribute from the sidebar pane on desktop viewports. This ensures the desktop sidebar doesn't stay in a "hidden" popover visibility state.

@​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:

  • ... (truncated)

    Changelog

    Sourced from @​astrojs/starlight's changelog.

    0.42.2

    Patch Changes

    0.42.1

    Patch Changes

    • #4198 96a44d4 Thanks @​mayank99! - Removes the popover attribute from the sidebar pane on desktop viewports. This ensures the desktop sidebar doesn't stay in a "hidden" popover visibility state.

    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)
  • ... (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 from 3.9.6 to 3.9.8

    Release notes

    Sourced from prettier's releases.

    3.9.8

    • Markdown: Don't let Liquid objects interrupt paragraphs (#20087 by @​seiyab)

    🔗 Changelog

    3.9.7

    • Support Angular 22.2
    • Fix regressions in v3.9

    🔗 Changelog

    Changelog

    Sourced from prettier's changelog.

    3.9.8

    diff

    Markdown: Don't let Liquid objects interrupt paragraphs (#20087 by @​seiyab)

    <!-- Input -->
    If `module` is not a [`WebAssembly.Module`](https://github.com/prettier/prettier/blob/main/en-US/docs/WebAssembly/Reference/JavaScript_interface/Module) object instance, a
    {{jsxref("TypeError")}} is thrown.
    <!-- Prettier 3.9.7 -->
    If module is not a WebAssembly.Module object instance, a
    {{jsxref("TypeError")}} is thrown.
    <!-- Prettier 3.9.8 -->
    If module is not a WebAssembly.Module object instance, a
    {{jsxref("TypeError")}} is thrown.

    3.9.7

    diff

    Markdown: Prevent indentation drift in list-item code blocks (#19647, #19990 by @​Austin1serb, @​giaBaoJS)

    <!-- Input -->
    - [x] short first line.
      second paragraph at six spaces that wraps
      onto another line here.
    
    <!-- Prettier 3.9.6 -->
    
     
    short first line.
    second paragraph at six spaces that wraps
        onto another line here.
    
    
    
    <!-- Prettier 3.9.7 -->
    
     
    short first line.
    second paragraph at six spaces that wraps
    onto another line here.
    
    
    

    JavaScript: Fix embedded template literal idempotency (#19725 by @​fisker)

    ... (truncated)

    Commits

    Updates prettier-plugin-astro from 0.14.1 to 1.0.1

    Release notes

    Sourced from prettier-plugin-astro's releases.

    v1.0.1

    Patch Changes

    • 5b5a735: Publish TypeScript declarations for Astro plugin options.
    • 6154471: Fixes an error when a JavaScript comment appears before a raw or custom-printed element, such as a <script> in the alternate branch of a conditional expression.
    • fabb28f: Fix non-idempotent CSS <style> block formatting with astroCompressHTML set to 'html' or 'none'.

    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.

    ... (truncated)

    Changelog

    Sourced from prettier-plugin-astro's changelog.

    1.0.1

    Patch Changes

    • 5b5a735: Publish TypeScript declarations for Astro plugin options.
    • 6154471: Fixes an error when a JavaScript comment appears before a raw or custom-printed element, such as a <script> in the alternate branch of a conditional expression.
    • fabb28f: Fix non-idempotent CSS <style> block formatting with astroCompressHTML set to 'html' or 'none'.

    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

    ... (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 dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 21, 2026
    @dependabot
    dependabot Bot requested a review from a team as a code owner September 21, 2026 15:07
    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 21, 2026
    @erinxocon

    Copy link
    Copy Markdown
    Member

    @dependabot recreate

    Bumps the npm-all group with 7 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.2` |
    | [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](https://github.com/prettier/prettier) | `3.9.6` | `3.9.8` |
    | [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) | `0.14.1` | `1.0.1` |
    
    
    
    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.2
    - [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.2/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` from 3.9.6 to 3.9.8
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.9.6...3.9.8)
    
    Updates `prettier-plugin-astro` from 0.14.1 to 1.0.1
    - [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.1)
    
    ---
    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.2
      dependency-type: direct:production
      update-type: version-update:semver-minor
      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
      dependency-version: 3.9.8
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: prettier-plugin-astro
      dependency-version: 1.0.1
      dependency-type: direct:development
      update-type: version-update:semver-major
      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
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-all-2c71b50c3d branch from 5a8e5a4 to cbb6cc4 Compare September 21, 2026 19:27
    @erinxocon
    erinxocon merged commit 9c0245b into master Sep 21, 2026
    1 check passed
    @erinxocon
    erinxocon deleted the dependabot/npm_and_yarn/npm-all-2c71b50c3d branch September 21, 2026 21:28
    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