Skip to content

chore(deps): bump the npm-minor-patch group across 1 directory with 10 updates - #695

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/docs/site/npm-minor-patch-f4880dd969
Open

chore(deps): bump the npm-minor-patch group across 1 directory with 10 updates#695
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/docs/site/npm-minor-patch-f4880dd969

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-minor-patch group with 10 updates in the /docs/site directory:

Package From To
@astrojs/starlight 0.41.2 0.41.7
@fontsource/ibm-plex-mono 5.2.7 5.3.0
@fontsource/public-sans 5.2.7 5.3.0
astro 7.1.3 7.2.0
@astrojs/check 0.9.9 0.9.10
@astrojs/markdown-remark 7.2.1 7.2.2
@redocly/cli 2.36.0 2.46.0
@vvago/vale 3.15.1 3.17.1
markdownlint-cli2 0.23.0 0.23.2
turndown 7.2.1 7.2.4

Updates @astrojs/starlight from 0.41.2 to 0.41.7

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.41.7

Patch Changes

  • #4114 3e486fb Thanks @​delucis! - Fixes processing of code examples in RTL languages when using Astro’s Sätteri Markdown processor

@​astrojs/starlight@​0.41.6

Patch Changes

@​astrojs/starlight@​0.41.5

Patch Changes

@​astrojs/starlight@​0.41.4

Patch Changes

@​astrojs/starlight@​0.41.3

Patch Changes

  • #3911 1686ecc Thanks @​timothyjordan! - Keeps keyboard focus inside the mobile menu while it is open, preventing focus moving to hidden interactive elements in page content.
Changelog

Sourced from @​astrojs/starlight's changelog.

0.41.7

Patch Changes

  • #4114 3e486fb Thanks @​delucis! - Fixes processing of code examples in RTL languages when using Astro’s Sätteri Markdown processor

0.41.6

Patch Changes

0.41.5

Patch Changes

0.41.4

Patch Changes

0.41.3

Patch Changes

  • #3911 1686ecc Thanks @​timothyjordan! - Keeps keyboard focus inside the mobile menu while it is open, preventing focus moving to hidden interactive elements in page content.
Commits

Updates @fontsource/ibm-plex-mono from 5.2.7 to 5.3.0

Commits

Updates @fontsource/public-sans from 5.2.7 to 5.3.0

Commits

Updates astro from 7.1.3 to 7.2.0

Release notes

Sourced from astro's releases.

astro@7.2.0

Minor Changes

  • #17174 0224a3a Thanks @​matthewp! - Adds the astro preview --background flag to start preview servers as background processes.

    This makes preview servers easier to manage from scripts and AI coding agents because the command returns after the server is ready instead of keeping the terminal attached to the long-running process.

    astro preview --background

    When a preview server is running in the background, you can inspect or stop it with new astro preview subcommands:

    astro preview status
    astro preview logs
    astro preview logs --follow
    astro preview stop

    If Astro detects that astro preview is being run by an AI coding agent, background mode is enabled automatically. This matches the existing behavior for astro dev, allowing agents to continue working after the preview server starts while still receiving the server URL and process ID.

    To opt out of automatic background mode for preview servers, set ASTRO_PREVIEW_BACKGROUND=0 before running astro preview.

  • #17532 7f94895 Thanks @​florian-lefebvre! - Adds support for paths relative to your project root in logger.entrypoint

    Previously, pointing logger.entrypoint at a custom log handler living in your own project required building an absolute URL. You can now write the path directly:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    logger: {
    
    entrypoint: new URL('./src/logger.js', import.meta.url),
    
    
    entrypoint: './src/logger.js',
    },
    });

Paths starting with ./ or ../ are resolved against your project root. Package specifiers such as @org/astro-logger, absolute paths, and URL entrypoints keep working as before.

  • #17084 961bbe5 Thanks @​matthewp! - Widens the AstroPrerenderer render() return type so prerenderers can report incremental-build metadata

    A prerenderer's render() may now resolve to either a Response (as before) or a PrerenderResult object that pairs the response with the content entries and optimized-image transforms the page resolved. This lets prerenderers that render out of process (for example, in an adapter's runtime like workerd) report those dependencies back to the build, so incremental static builds can track and replay them for skipped pages.

    import type { AstroPrerenderer, PrerenderResult } from 'astro';
    const prerenderer: AstroPrerenderer = {

  • ... (truncated)

    Changelog

    Sourced from astro's changelog.

    7.2.0

    Minor Changes

    • #17174 0224a3a Thanks @​matthewp! - Adds the astro preview --background flag to start preview servers as background processes.

      This makes preview servers easier to manage from scripts and AI coding agents because the command returns after the server is ready instead of keeping the terminal attached to the long-running process.

      astro preview --background

      When a preview server is running in the background, you can inspect or stop it with new astro preview subcommands:

      astro preview status
      astro preview logs
      astro preview logs --follow
      astro preview stop

      If Astro detects that astro preview is being run by an AI coding agent, background mode is enabled automatically. This matches the existing behavior for astro dev, allowing agents to continue working after the preview server starts while still receiving the server URL and process ID.

      To opt out of automatic background mode for preview servers, set ASTRO_PREVIEW_BACKGROUND=0 before running astro preview.

    • #17532 7f94895 Thanks @​florian-lefebvre! - Adds support for paths relative to your project root in logger.entrypoint

      Previously, pointing logger.entrypoint at a custom log handler living in your own project required building an absolute URL. You can now write the path directly:

      // astro.config.mjs
      import { defineConfig } from 'astro/config';
      export default defineConfig({
      logger: {
      
      entrypoint: new URL('./src/logger.js', import.meta.url),
      
      
      entrypoint: './src/logger.js',
      },
      });

    Paths starting with ./ or ../ are resolved against your project root. Package specifiers such as @org/astro-logger, absolute paths, and URL entrypoints keep working as before.

  • #17084 961bbe5 Thanks @​matthewp! - Widens the AstroPrerenderer render() return type so prerenderers can report incremental-build metadata

    A prerenderer's render() may now resolve to either a Response (as before) or a PrerenderResult object that pairs the response with the content entries and optimized-image transforms the page resolved. This lets prerenderers that render out of process (for example, in an adapter's runtime like workerd) report those dependencies back to the build, so incremental static builds can track and replay them for skipped pages.

    import type { AstroPrerenderer, PrerenderResult } from 'astro';

  • ... (truncated)

    Commits

    Updates @astrojs/check from 0.9.9 to 0.9.10

    Release notes

    Sourced from @​astrojs/check's releases.

    @​astrojs/check@​0.9.10

    Patch Changes

    Changelog

    Sourced from @​astrojs/check's changelog.

    0.9.10

    Patch Changes

    Commits

    Updates @astrojs/markdown-remark from 7.2.1 to 7.2.2

    Release notes

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

    @​astrojs/markdown-remark@​7.2.2

    Patch Changes

    • Updated dependencies [c895b12]:
      • @​astrojs/internal-helpers@​0.10.2
    Changelog

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

    7.2.2

    Patch Changes

    • Updated dependencies [c895b12]:
      • @​astrojs/internal-helpers@​0.10.2
    Commits

    Updates @redocly/cli from 2.36.0 to 2.46.0

    Release notes

    Sourced from @​redocly/cli's releases.

    @​redocly/cli@​2.46.0

    Minor Changes

    • Added the spec-ref-siblings rule that reports properties placed next to a $ref which the specification does not allow.

    Patch Changes

    • Updated @​redocly/openapi-core to v2.46.0.

    @​redocly/cli@​2.45.0

    Minor Changes

    • Fixed the bundle command losing schema keywords (such as title, properties, or required) written next to a $ref when the referenced schemas started with their own $ref.

    Patch Changes

    • Updated @​redocly/openapi-core to v2.45.0.

    @​redocly/cli@​2.44.2

    Patch Changes

    • Changed the severity of the security-defined rule for AsyncAPI 2.x and 3.x in the recommended ruleset from error to warn. AsyncAPI descriptions with undefined or unresolved security no longer fail linting by default.
    • Updated @​redocly/openapi-core to v2.44.2.

    @​redocly/cli@​2.44.1

    Patch Changes

    • Updated undici to the 6.28.0 version.
    • Fixed an issue where the operation-4xx-problem-details-rfc7807 rule incorrectly reported the type and title properties inherited through allOf as missing.
    • Updated @​redocly/openapi-core to v2.44.1.

    @​redocly/cli@​2.44.0

    Minor Changes

    • Added the no-duplicated-enum-values rule that requires all values in an enum to be unique. The rule is enabled at the warn level in the recommended ruleset.

      Note: linting output may include new warnings for API descriptions that contain duplicated enum values.

    • Added the no-unsafe-markdown rule that disallows potentially executable content in description fields. The rule is enabled at the warn level in the recommended ruleset.

      Note: linting output may include new warnings for description fields that contain potentially executable content.

    Patch Changes

    • Updated @​redocly/client-generator to v0.3.0.
    • Updated @​redocly/openapi-core to v2.44.0.

    ... (truncated)

    Commits

    Updates @vvago/vale from 3.15.1 to 3.17.1

    Commits

    Updates markdownlint-cli2 from 0.23.0 to 0.23.2

    Changelog

    Sourced from markdownlint-cli2's changelog.

    0.23.2

    • Update dependencies

    0.23.1

    • Show attempted fix counts after fixing
    • Update dependencies (including markdownlint)
    Commits
    • b82a6c8 Update to version 0.23.2.
    • e4e659d Add a stub for process.nextTick (using queueMicrotask) now that globby (indir...
    • 99760af Bump globby from 16.2.1 to 16.2.2
    • 3070236 Address new ESLint warnings from previous commit.
    • 6e3cc93 Bump eslint-plugin-unicorn from 71.1.0 to 72.0.0
    • 4ba8177 Add eslint-package-json/all to lint script, address new issues.
    • 9cb99b2 Refactor eslint.config.mjs to use defineConfig, change eslint-plugin-n from "...
    • 37fb0ec Address new ESLint warnings from previous commit.
    • f7fea61 Bump eslint-node-test from 0.2.0 to 0.3.0
    • 85bb5e7 Bump js-yaml from 5.2.1 to 5.2.2
    • Additional commits viewable in compare view

    Updates turndown from 7.2.1 to 7.2.4

    Release notes

    Sourced from turndown's releases.

    v7.2.4

    • Revert "Merge pull request #515 from Corion/master" f11801c

    mixmark-io/turndown@v7.2.3...v7.2.4

    v7.2.3

    • Merge pull request #521 from mixmark-io/dependabot/npm_and_yarn/flatted-3.4.2 3cb11bd
    • Bump flatted from 3.4.1 to 3.4.2 20bd64e
    • Merge pull request #520 from pavelhoral/remove-browserify 0a6d298
    • Replace Browserify with RollupJS build 54123af
    • Merge pull request #519 from pavelhoral/upgrade-deps 8c2055e
    • Merge pull request #477 from za3k/demo-link a1bb94a
    • Add Babel transpilation step so that the output stays the same fc21b5f
    • Upgrade standard linter and fix connected issues c1e9141
    • Merge pull request #518 from pavelhoral/upgrade-deps 88ebe7c
    • Upgrade dependencies 5337d5b
    • Merge pull request #515 from Corion/master 01b35ad
    • Normalize linebreaks within PRE elements ae008ec
    • Merge pull request #511 from vicb/vicb/up-rollup 162ef46
    • Bump rollup f82dcaa
    • Merge pull request #517 from pavelhoral/fix-link-destination 1986fd3
    • Fix escaping link destination with spaces ce16479
    • Merge pull request #474 from orchitech/fix-image-links a22e6dc
    • Properly escape inline link and image attributes. Fix #473. ea45ddd
    • Add demo link b6874f7

    mixmark-io/turndown@v7.2.2...v7.2.3

    v7.2.2

    • Merge pull request #504 from pavelhoral/fix-regexp-trim 8ed0499
    • Replace regexp trim (#501) e26cc81

    mixmark-io/turndown@v7.2.1...v7.2.2

    Commits
    • fb7a865 7.2.4
    • f11801c Revert "Merge pull request #515 from Corion/master"
    • 0c9954b 7.2.3
    • 3cb11bd Merge pull request #521 from mixmark-io/dependabot/npm_and_yarn/flatted-3.4.2
    • 20bd64e Bump flatted from 3.4.1 to 3.4.2
    • 0a6d298 Merge pull request #520 from pavelhoral/remove-browserify
    • 54123af Replace Browserify with RollupJS build
    • 8c2055e Merge pull request #519 from pavelhoral/upgrade-deps
    • a1bb94a Merge pull request #477 from za3k/demo-link
    • fc21b5f Add Babel transpilation step so that the output stays the same
    • Additional commits viewable in compare view

    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 9, 2026
    @dependabot
    dependabot Bot requested a review from jeremi as a code owner August 9, 2026 05:27
    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 9, 2026
    …0 updates
    
    Bumps the npm-minor-patch group with 10 updates in the /docs/site directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.41.2` | `0.41.7` |
    | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.7` | `5.3.0` |
    | [@fontsource/public-sans](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/public-sans) | `5.2.7` | `5.3.0` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.1.3` | `7.2.0` |
    | [@astrojs/check](https://github.com/withastro/astro/tree/HEAD/packages/language-tools/astro-check) | `0.9.9` | `0.9.10` |
    | [@astrojs/markdown-remark](https://github.com/withastro/astro/tree/HEAD/packages/markdown/remark) | `7.2.1` | `7.2.2` |
    | [@redocly/cli](https://github.com/Redocly/redocly-cli) | `2.36.0` | `2.46.0` |
    | [@vvago/vale](https://github.com/zeropaper/vale) | `3.15.1` | `3.17.1` |
    | [markdownlint-cli2](https://github.com/DavidAnson/markdownlint-cli2) | `0.23.0` | `0.23.2` |
    | [turndown](https://github.com/mixmark-io/turndown) | `7.2.1` | `7.2.4` |
    
    
    
    Updates `@astrojs/starlight` from 0.41.2 to 0.41.7
    - [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.41.7/packages/starlight)
    
    Updates `@fontsource/ibm-plex-mono` from 5.2.7 to 5.3.0
    - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono)
    
    Updates `@fontsource/public-sans` from 5.2.7 to 5.3.0
    - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/public-sans)
    
    Updates `astro` from 7.1.3 to 7.2.0
    - [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@7.2.0/packages/astro)
    
    Updates `@astrojs/check` from 0.9.9 to 0.9.10
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/language-tools/astro-check/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/check@0.9.10/packages/language-tools/astro-check)
    
    Updates `@astrojs/markdown-remark` from 7.2.1 to 7.2.2
    - [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.2.2/packages/markdown/remark)
    
    Updates `@redocly/cli` from 2.36.0 to 2.46.0
    - [Release notes](https://github.com/Redocly/redocly-cli/releases)
    - [Commits](https://github.com/Redocly/redocly-cli/compare/@redocly/cli@2.36.0...@redocly/cli@2.46.0)
    
    Updates `@vvago/vale` from 3.15.1 to 3.17.1
    - [Commits](https://github.com/zeropaper/vale/commits)
    
    Updates `markdownlint-cli2` from 0.23.0 to 0.23.2
    - [Changelog](https://github.com/DavidAnson/markdownlint-cli2/blob/main/CHANGELOG.md)
    - [Commits](DavidAnson/markdownlint-cli2@v0.23.0...v0.23.2)
    
    Updates `turndown` from 7.2.1 to 7.2.4
    - [Release notes](https://github.com/mixmark-io/turndown/releases)
    - [Commits](mixmark-io/turndown@v7.2.1...v7.2.4)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/check"
      dependency-version: 0.9.10
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-minor-patch
    - dependency-name: "@astrojs/markdown-remark"
      dependency-version: 7.2.2
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-minor-patch
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.41.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-minor-patch
    - dependency-name: "@fontsource/ibm-plex-mono"
      dependency-version: 5.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-minor-patch
    - dependency-name: "@fontsource/public-sans"
      dependency-version: 5.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-minor-patch
    - dependency-name: "@redocly/cli"
      dependency-version: 2.44.2
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-minor-patch
    - dependency-name: "@vvago/vale"
      dependency-version: 3.17.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-minor-patch
    - dependency-name: astro
      dependency-version: 7.1.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-minor-patch
    - dependency-name: markdownlint-cli2
      dependency-version: 0.23.2
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-minor-patch
    - dependency-name: turndown
      dependency-version: 7.2.4
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-minor-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/docs/site/npm-minor-patch-f4880dd969 branch from 67d22bd to b5e206c Compare August 11, 2026 10:20
    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