Skip to content

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

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/src/frontend/npm-all-2e6cc42803
Open

build(deps): bump the npm-all group across 1 directory with 14 updates#1456
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/src/frontend/npm-all-2e6cc42803

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-all group with 14 updates in the /src/frontend directory:

Package From To
@astrojs/markdown-remark 7.2.1 7.2.2
@astrojs/mdx 7.0.3 7.0.5
@astrojs/starlight 0.41.3 0.41.7
astro 7.1.3 7.2.0
satori 0.28.1 0.29.0
@iconify-json/material-icon-theme 1.2.69 1.2.70
@playwright/test 1.61.1 1.62.1
astro-vtbot 3.0.0 3.0.1
eslint 10.7.0 10.8.1
globals 17.7.0 17.9.0
prettier 3.9.5 3.9.6
tsx 4.23.1 4.23.12
typescript 6.0.3 7.0.2
typescript-eslint 8.65.0 8.66.0

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 @astrojs/mdx from 7.0.3 to 7.0.5

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​7.0.5

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
    • @​astrojs/markdown-remark@​7.2.2

@​astrojs/mdx@​7.0.4

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

7.0.5

Patch Changes

  • Updated dependencies [c895b12]:
    • @​astrojs/internal-helpers@​0.10.2
    • @​astrojs/markdown-remark@​7.2.2

7.0.4

Patch Changes

Commits

Updates @astrojs/starlight from 0.41.3 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

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

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 satori from 0.28.1 to 0.29.0

    Release notes

    Sourced from satori's releases.

    0.29.0

    0.29.0 (2026-07-23)

    Features

    0.28.2

    0.28.2 (2026-07-21)

    Bug Fixes

    Commits

    Updates @iconify-json/material-icon-theme from 1.2.69 to 1.2.70

    Commits

    Updates @playwright/test from 1.61.1 to 1.62.1

    Release notes

    Sourced from @​playwright/test's releases.

    v1.62.1

    Bug Fixes

    • #41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
    • #41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
    • #41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
    • #42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
    • #42013 [BUG]Image-type actionable elements are not presented in the snapshot.

    v1.62.0

    🧱 New component testing model

    Component testing moves to a stories and galleries model. A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

    test('click should expand', async ({ mount }) => {
      const component = await mount('components/Expandable/Stateful');
      await component.getByRole('button').click();
      await expect(component.getByTestId('expanded')).toHaveValue('true');
    });

    Pass a story type as a template argument to type-check its props, and use update(props) / unmount() on the returned locator to re-render or tear down within a test.

    🛑 Cancel operations with AbortSignal

    Most operations and web-first assertions now accept a signal option that takes an AbortSignal, letting you cancel long-running actions, navigations, waits, and assertions:

    const controller = new AbortController();
    setTimeout(() => controller.abort(), 1000);
    await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
    await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

    Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

    🖼️ WebP screenshots

    expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot() can now store snapshots in the WebP format — just give the snapshot a .webp name:

    // Visual comparisons store the golden snapshot as lossless WebP.
    await expect(page).toHaveScreenshot('homepage.webp');
    // Standalone screenshots can trade quality for size with lossy WebP.
    await page.screenshot({ path: 'homepage.webp', quality: 50 });
    </tr></table>

    ... (truncated)

    Commits
    • 26a9e47 cherry-pick(#42043): docs: release notes for v1.62 Python, Java, and .NET (#4...
    • 0a81d5d cherry-pick(#42040): docs(release-notes): mention the isolated headless clipb...
    • 8376826 cherry-pick(#42034): fix(aria): keep icon-only clickable elements in ai snaps...
    • 66c5cc9 chore: mark v1.62.1 (#42020)
    • 9672bc3 cherry-pick(#42009): fix(types): support branded primitives in evaluate argum...
    • 4325804 cherry-pick(#41988): fix(aria): preserve names from collapsed text contributors
    • 9632f8e cherry-pick(#42005): fix(tsconfig): do not throw when "extends"/"references" ...
    • e3950d9 chore: mark v1.62.0 (#41981)
    • f07e0f7 cherry-pick(#41940): docs: release notes for v1.62 (#41967)
    • 05a306c cherry-pick(#41964): Revert "feat(routeFromHar): add interceptAPIRequests opt...
    • Additional commits viewable in compare view

    Updates astro-vtbot from 3.0.0 to 3.0.1

    Changelog

    Sourced from astro-vtbot's changelog.

    3.0.1 - 2026-07-30

    Patch Changes

    • 19a0839: Updates dependencies, especially now comes with @​vtbag/utensil-drawer@​1.2.17

    • ae7ac18: Additionally exports remarkEndOfMarkdown now also as mdastEndOfMarkdown. For all who prefer that name when switching Starlight from remark to mdast for Sätteri.

      See the StarlightPlugin page for details.

    Commits

    Updates eslint from 10.7.0 to 10.8.1

    Release notes

    Sourced from eslint's releases.

    v10.8.1

    Bug Fixes

    • 18eb0a7 fix: prevent ASI hazard in no-unused-labels autofix (#21173) (dongkyu lee)
    • 151ba3f fix: false positives in getter-return and accessor-pairs (#21163) (Grit)
    • 6898df9 fix: ignore meta-property names in id-denylist (#21166) (Pixel)
    • 4d7db66 fix: ignore meta-property names in id-match (#21167) (Pixel)
    • 677214e fix: handle ASI hazards in no-unused-vars removeVar suggestion (#20935) (kuldeep kumar)

    Documentation

    • 7d0cbf8 docs: Update README (GitHub Actions Bot)
    • 0a05812 docs: add missing backticks to no-duplicate-imports.js (#21183) (Lee Daeun)
    • 678c90b docs: Update README (GitHub Actions Bot)
    • 8a10424 docs: Update README (GitHub Actions Bot)
    • 69bb948 docs: Update README (GitHub Actions Bot)

    Chores

    • 0a14800 chore: update github/codeql-action action to v4.37.4 (#21196) (renovate[bot])
    • 05adcb1 test: fix failing ecosystem test for eslint-plugin-unicorn (#21191) (Lazizbek Ergashev)
    • 5611035 test: add error locations info to no-void (#21185) (Lee Daeun)
    • ee47333 ci: bump github/codeql-action from 4 to 4.37.3 (#21176) (dependabot[bot])
    • f131c03 chore: improve ecosystem test failure reporting (#20937) (crimsonjay0)
    • 1f6edde chore: update ecosystem plugins (#21182) (ESLint Bot)
    • d3266fb chore: unpin webpack dependency (#21172) (Francesco Trotta)
    • 65a6519 chore: add allowScripts field to package.json (#21092) (GiHoon Noh)
    • 22e5256 ci: add triage:no label to Dependabot PRs (#21141) (lumir)
    • 55c9038 ci: bump actions/labeler from 6 to 7 (#21159) (dependabot[bot])
    • 7280e78 chore: update dependency prettier to v3.9.6 (#21162) (renovate[bot])
    • eddbad6 test: fix failing ecosystem test for eslint-plugin-unicorn (#21156) (Francesco Trotta)
    • 60a178d chore: update ecosystem plugins (#21150) (ESLint Bot)
    • f9f61dc test: add error locations to no-unreachable (#21151) (JIYEON)
    • d086293 test: add error locations to no-undef (#21147) (JIYEON)
    • cc01b67 test: add error locations to no-useless-catch (#21144) (devoil)
    • 688e75e chore: add missing backticks in JSDoc (#21143) (Bo Hyun Kim)
    • 7c1e175 test: add error locations to require-await (#21145) (Grit)
    • 588a26d test: add error locations to no-extra-label (#21139) (dongkyu lee)
    • 059aa89 test: add error locations to no-useless-concat (#21140) (dongkyu lee)
    • 5a452a8 test: add error locations to no-const-assign (#21138) (dongkyu lee)

    v10.8.0

    Features

    • 2fee9bb feat: export ConfigObject from eslint/config (#21082) (sethamus)

    Bug Fixes

    • 6b8d2f7 fix: escape reserved characters in rule id in html formatter (#21129) (Francesco Trotta)
    • 9091071 fix: prevent no-unreachable-loop crash when all loop types are ignored (#21116) (Pixel)
    • e23fafe fix: prefer-object-spread add semicolon when adding parenthesis (#21081) (synthex-byte)
    • 20b5ad0 fix: quadratic-time regex in prefer-template (#21096) (Milos Djermanovic)
    • 8b6f6c0 fix: apply ignore configs to computed methods in class-methods-use-this (#21094) (Pixel)
    • b2c608c fix: NewExpression with parenthesized callee in preserve-caught-error (#21083) (Francesco Trotta)

    ... (truncated)

    Commits

    Updates globals from 17.7.0 to 17.9.0

    Release notes

    Sourced from globals's releases.

    v17.9.0

    • Update globals (2026-08-01) (#348) 5a958ed

    sindresorhus/globals@v17.8.0...v17.9.0

    v17.8.0

    • Update globals (2026-07-01) (#347) 7394811

    sindresorhus/globals@v17.7.0...v17.8.0

    Commits

    Updates prettier from 3.9.5 to 3.9.6

    Release notes

    Sourced from prettier's releases.

    3.9.6

    What's Changed

    🔗 Changelog

    Changelog

    Sourced from prettier's changelog.

    3.9.6

    diff

    TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

    // Input
    interface Container {
      "new"(id: string): number;
    }
    // Prettier 3.9.5
    interface Container {
    new(id: string): number;
    }
    // Prettier 3.9.6
    interface Container {
    "new"(id: string): number;
    }

    TypeScript: Support import defer (#19624, #19675 by @​fisker)

    // Input
    import defer * as foo from "foo";
    // Prettier 3.9.5
    import * as foo from "foo";
    // Prettier 3.9.6
    import defer * as foo from "foo";

    JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

    @prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

    This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

    To use this plugin:

    1. Install the plugin:

      yarn add --dev prettier @prettier/plugin-yuku

    ... (truncated)

    Commits

    Updates tsx from 4.23.1 to 4.23.12

    Release notes

    Sourced from tsx's releases.

    v4.23.12

    4.23.12 (2026-08-10)

    Bug Fixes

    • shim import.meta when tokens are split by comments or newlines (#829) (ed9d330), closes #828

    This release is also available on:

    v4.23.11

    4.23.11 (2026-08-07)

    Bug Fixes

    • preserve async ESM require fallback (55cbece)

    This release is also available on:

    v4.23.10

    4.23.10 (2026-08-07)

    Bug Fixes


    This release is also available on:

    v4.23.9

    4.23.9 (2026-08-06)

    Bug Fixes

    • map Node test locations (2f55884)
    • support data URLs in tsImport (b94f46f)

    This release is also available on:

    v4.23.8

    ... (truncated)

    Commits
    • ed9d330 fix: shim import.meta when tokens are split by comments or newlines (#829)
    • 651f5be test: cover CommonJS TypeScript import.meta paths
    • bd3bc64 test: cover CommonJS loader source fallback
    • 55cbece fix: preserve async ESM require fallback
    • 6c5ba85 docs: document CommonJS default interop
    • ec1bcd5 fix: support nyc coverage discovery (#710)
    • b6e5b48 docs: clarify CommonJS default imports
    • 2f55884 fix: map Node test locations
    • de935d5 docs: document Node source-map stack formatting
    • b94f46f fix: support data URLs in tsImport
    • Additional commits viewable in compare view

    Updates typescript from 6.0.3 to 7.0.2

    Commits
    Maintainer changes

    This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.


    Updates typescript-eslint from 8.65.0 to 8.66.0

    Release notes

    Sourced from typescript-eslint's releases.

    v8.66.0

    8.66.0 (2026-08-03)

    🚀 Features

    • typescript-estree: handle import.defer() as ImportExpression (#12609)

    🩹 Fixes

    • eslint-plugin: [no-unnecessary-type-conversion] ignore shadowed built-ins (#12590)
    • eslint-plugin: [prefer-nullish-coalescing] handle shadowed Boolean calls (#12591)
    • eslint-plugin: [no-useless-default-assignment] don't report defaults used by other overloads (#12607)
    • eslint-plugin: [no-unnecessary-type-parameters] check MappedType key remapping (#12588)
    • eslint-plugin: [class-literal-property-style] preserve type annotations and don't drop decorators (#12617)
    • website: list onUnsupportedTypeScriptVersion in parser options (#12585)

    ❤️ Thank You

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    Changelog

    Sourced from typescript-eslint's changelog.

    8.66.0 (2026-08-03)

    This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    Commits

    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 11, 2026
    Copilot AI lite review requested due to automatic review settings August 11, 2026 04:40
    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 11, 2026

    Copilot AI left a comment

    Copy link
    Copy Markdown
    Contributor

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    Pull request overview

    Note

    Copilot could not run the full agentic suite for this review because it was automatically requested on a bot-authored pull request. Request a review from Copilot under Reviewers to retry with the full agentic suite. Improved support for bot-authored pull requests is coming soon.

    Updates the frontend build/tooling stack by bumping Astro ecosystem packages and developer tooling versions.

    Changes:

    • Bumped Astro core and several @astrojs/* integrations (MDX/remark/Starlight).
    • Updated rendering/tooling deps (e.g., satori) and dev tooling (Playwright, ESLint, Prettier, TS/tsx).
    • Minor version bumps for supporting packages (globals, iconify JSON).

    💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

    Comment thread src/frontend/package.json Outdated
    Comment on lines +124 to +126
    "tsx": "^4.23.11",
    "typescript": "^7.0.2",
    "typescript-eslint": "^8.66.0",
    Comment thread src/frontend/package.json
    Comment on lines +63 to +66
    "@astrojs/markdown-remark": "7.2.2",
    "@astrojs/mdx": "^7.0.5",
    "@astrojs/rss": "^4.0.19",
    "@astrojs/starlight": "^0.41.3",
    "@astrojs/starlight": "^0.41.7",
    Comment thread src/frontend/package.json
    "@lunariajs/starlight": "^0.1.1",
    "asciinema-player": "^3.17.0",
    "astro": "^7.1.3",
    "astro": "^7.2.0",

    @adamint Adam Ratzman (adamint) left a comment

    Copy link
    Copy Markdown
    Member

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    The frontend build is currently failing under TypeScript 7 (Cannot read properties of undefined (reading 'Cjs') in @typescript-eslint/typescript-estree). Copilot already has an inline thread on the unsupported pairing, so I’m not adding another one. I don't think this is ready until TypeScript stays on a supported version or the TypeScript-coupled packages move together.

    Bumps the npm-all group with 14 updates in the /src/frontend directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/markdown-remark](https://github.com/withastro/astro/tree/HEAD/packages/markdown/remark) | `7.2.1` | `7.2.2` |
    | [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `7.0.3` | `7.0.5` |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.41.3` | `0.41.7` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.1.3` | `7.2.0` |
    | [satori](https://github.com/vercel/satori) | `0.28.1` | `0.29.0` |
    | [@iconify-json/material-icon-theme](https://github.com/iconify/icon-sets) | `1.2.69` | `1.2.70` |
    | [@playwright/test](https://github.com/microsoft/playwright) | `1.61.1` | `1.62.1` |
    | [astro-vtbot](https://github.com/martrapp/astro-vtbot) | `3.0.0` | `3.0.1` |
    | [eslint](https://github.com/eslint/eslint) | `10.7.0` | `10.8.1` |
    | [globals](https://github.com/sindresorhus/globals) | `17.7.0` | `17.9.0` |
    | [prettier](https://github.com/prettier/prettier) | `3.9.5` | `3.9.6` |
    | [tsx](https://github.com/privatenumber/tsx) | `4.23.1` | `4.23.12` |
    | [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` |
    | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.65.0` | `8.66.0` |
    
    
    
    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 `@astrojs/mdx` from 7.0.3 to 7.0.5
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@7.0.5/packages/integrations/mdx)
    
    Updates `@astrojs/starlight` from 0.41.3 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 `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 `satori` from 0.28.1 to 0.29.0
    - [Release notes](https://github.com/vercel/satori/releases)
    - [Commits](vercel/satori@0.28.1...0.29.0)
    
    Updates `@iconify-json/material-icon-theme` from 1.2.69 to 1.2.70
    - [Commits](https://github.com/iconify/icon-sets/commits)
    
    Updates `@playwright/test` from 1.61.1 to 1.62.1
    - [Release notes](https://github.com/microsoft/playwright/releases)
    - [Commits](microsoft/playwright@v1.61.1...v1.62.1)
    
    Updates `astro-vtbot` from 3.0.0 to 3.0.1
    - [Changelog](https://github.com/martrapp/astro-vtbot/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/martrapp/astro-vtbot/commits)
    
    Updates `eslint` from 10.7.0 to 10.8.1
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Commits](eslint/eslint@v10.7.0...v10.8.1)
    
    Updates `globals` from 17.7.0 to 17.9.0
    - [Release notes](https://github.com/sindresorhus/globals/releases)
    - [Commits](sindresorhus/globals@v17.7.0...v17.9.0)
    
    Updates `prettier` from 3.9.5 to 3.9.6
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.9.5...3.9.6)
    
    Updates `tsx` from 4.23.1 to 4.23.12
    - [Release notes](https://github.com/privatenumber/tsx/releases)
    - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
    - [Commits](privatenumber/tsx@v4.23.1...v4.23.12)
    
    Updates `typescript` from 6.0.3 to 7.0.2
    - [Release notes](https://github.com/microsoft/TypeScript/releases)
    - [Commits](https://github.com/microsoft/TypeScript/commits)
    
    Updates `typescript-eslint` from 8.65.0 to 8.66.0
    - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
    - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.66.0/packages/typescript-eslint)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/markdown-remark"
      dependency-version: 7.2.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: "@astrojs/mdx"
      dependency-version: 7.0.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.41.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: "@iconify-json/material-icon-theme"
      dependency-version: 1.2.70
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: "@playwright/test"
      dependency-version: 1.62.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-all
    - dependency-name: astro
      dependency-version: 7.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-all
    - dependency-name: astro-vtbot
      dependency-version: 3.0.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: eslint
      dependency-version: 10.8.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-all
    - dependency-name: globals
      dependency-version: 17.9.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-all
    - dependency-name: prettier
      dependency-version: 3.9.6
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: satori
      dependency-version: 0.29.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-all
    - dependency-name: tsx
      dependency-version: 4.23.11
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-all
    - dependency-name: typescript
      dependency-version: 7.0.2
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: npm-all
    - dependency-name: typescript-eslint
      dependency-version: 8.66.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-all
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot Bot changed the title chore(deps): bump the npm-all group across 1 directory with 14 updates build(deps): bump the npm-all group across 1 directory with 14 updates Aug 13, 2026
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/src/frontend/npm-all-2e6cc42803 branch from ef822dc to 9f08c4c Compare August 13, 2026 14:06
    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.

    2 participants