Skip to content

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

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

build(deps): bump the npm-all group across 1 directory with 5 updates#424
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-all-c3106cbe94

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
@astrojs/markdown-satteri 0.3.7 0.4.0
@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

Updates @astrojs/markdown-satteri from 0.3.7 to 0.4.0

Release notes

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

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

    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 Aug 31, 2026
    @dependabot
    dependabot Bot requested a review from a team as a code owner August 31, 2026 15:09
    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 31, 2026
    Bumps the npm-all group with 5 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.0` |
    | [@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` |
    
    
    
    Updates `@astrojs/markdown-satteri` from 0.3.7 to 0.4.0
    - [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.0/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)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/markdown-satteri"
      dependency-version: 0.3.8
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.41.10
      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: 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-c3106cbe94 branch from 2a5a32e to 546d1f6 Compare September 7, 2026 15:11
    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