Skip to content

build(deps): bump the all-dependencies group with 18 updates - #150

Merged
iamnewton merged 2 commits into
mainfrom
dependabot/npm_and_yarn/all-dependencies-2b6ff47402
Aug 12, 2026
Merged

build(deps): bump the all-dependencies group with 18 updates#150
iamnewton merged 2 commits into
mainfrom
dependabot/npm_and_yarn/all-dependencies-2b6ff47402

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all-dependencies group with 18 updates:

Package From To
@astrojs/starlight 0.41.6 0.41.7
@theholocron/docs-theme 1.3.1 1.3.2
astro 7.1.6 7.2.0
@types/node 26.1.2 26.2.0
@theholocron/commitlint-config 7.8.1 7.15.0
@theholocron/eslint-config 7.8.1 7.15.0
@theholocron/holocron-config 7.8.1 7.15.0
@theholocron/lint-staged-config 7.8.1 7.15.0
@theholocron/prettier-config 7.8.1 7.15.0
@theholocron/semantic-release-config 7.8.1 7.15.0
@theholocron/tsconfig 7.8.1 7.15.0
@theholocron/tsdown-config 7.8.1 7.15.0
@theholocron/vitest-config 7.8.1 7.15.0
eslint-plugin-n 18.2.2 18.3.0
eslint 10.8.0 10.8.1
knip 6.31.0 6.32.0
semantic-release 25.0.8 25.0.9
typescript-eslint 8.65.0 8.66.0

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

Updates @theholocron/docs-theme from 1.3.1 to 1.3.2

Release notes

Sourced from @​theholocron/docs-theme's releases.

v1.3.2

1.3.2 (2026-08-04)

Changelog

Sourced from @​theholocron/docs-theme's changelog.

1.3.2 (2026-08-04)

Commits
  • 6ebe89a chore(release): 1.3.2 [skip ci]
  • 307cc44 chore(deps): Bump the all-dependencies group with 15 updates (#34)
  • 6385848 chore: 🔧 add missing prettier.config.ts (#33)
  • 1959180 chore: ✨ simplify release bump-versions, add themes-docs readme (#29)
  • 8ca8cf1 docs: 📝 replace npm install with pnpm add in package READMEs and docs content...
  • See full diff in compare view

Updates astro from 7.1.6 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 @types/node from 26.1.2 to 26.2.0

    Commits

    Updates @theholocron/commitlint-config from 7.8.1 to 7.15.0

    Changelog

    Sourced from @​theholocron/commitlint-config's changelog.

    7.15.0 (2026-08-07)

    7.14.4 (2026-08-06)

    7.14.3 (2026-08-05)

    7.14.2 (2026-08-05)

    7.14.1 (2026-08-05)

    7.14.0 (2026-08-05)

    7.13.2 (2026-08-05)

    7.13.1 (2026-08-04)

    7.13.0 (2026-08-04)

    7.12.0 (2026-08-04)

    7.11.0 (2026-08-04)

    7.10.0 (2026-08-04)

    7.9.1 (2026-08-04)

    7.9.0 (2026-08-04)

    Commits
    • dc9669a chore(release): 7.15.0 [skip ci]
    • 5ae074c feat: ✨ add cli preset to tsdown-config (#347)
    • a3dca65 chore(release): 7.14.4 [skip ci]
    • 3fa5e34 fix(vitest-config): use playwright() factory in storybook preset for vitest 4...
    • 9728ccc chore(release): 7.14.3 [skip ci]
    • a5dae19 fix: extend storybook-config peer deps to support Storybook v10 (#345)
    • c018f54 chore(release): 7.14.2 [skip ci]
    • fe4e083 fix: revert to @​vitejs/plugin-react ^6 (oxc changes now merged into it) (#344)
    • 5c299f2 chore(release): 7.14.1 [skip ci]
    • 9e638b6 fix: switch react presets from plugin-react to plugin-react-oxc for Vite v8 (...
    • Additional commits viewable in compare view

    Updates @theholocron/eslint-config from 7.8.1 to 7.15.0

    Changelog

    Sourced from @​theholocron/eslint-config's changelog.

    7.15.0 (2026-08-07)

    7.14.4 (2026-08-06)

    7.14.3 (2026-08-05)

    7.14.2 (2026-08-05)

    7.14.1 (2026-08-05)

    7.14.0 (2026-08-05)

    7.13.2 (2026-08-05)

    7.13.1 (2026-08-04)

    7.13.0 (2026-08-04)

    7.12.0 (2026-08-04)

    7.11.0 (2026-08-04)

    7.10.0 (2026-08-04)

    7.9.1 (2026-08-04)

    7.9.0 (2026-08-04)

    Commits
    • dc9669a chore(release): 7.15.0 [skip ci]
    • 5ae074c feat: ✨ add cli preset to tsdown-config (#347)
    • a3dca65 chore(release): 7.14.4 [skip ci]
    • 3fa5e34 fix(vitest-config): use playwright() factory in storybook preset for vitest 4...
    • 9728ccc chore(release): 7.14.3 [skip ci]
    • a5dae19 fix: extend storybook-config peer deps to support Storybook v10 (#345)
    • c018f54 chore(release): 7.14.2 [skip ci]
    • fe4e083 fix: revert to @​vitejs/plugin-react ^6 (oxc changes now merged into it) (#344)
    • 5c299f2 chore(release): 7.14.1 [skip ci]
    • 9e638b6 fix: switch react presets from plugin-react to plugin-react-oxc for Vite v8 (...
    • Additional commits viewable in compare view

    Updates @theholocron/holocron-config from 7.8.1 to 7.15.0

    Release notes

    Sourced from @​theholocron/holocron-config's releases.

    v7.15.0

    7.15.0 (2026-08-07)

    v7.14.4

    7.14.4 (2026-08-06)

    v7.14.3

    7.14.3 (2026-08-05)

    v7.14.2

    7.14.2 (2026-08-05)

    v7.14.1

    7.14.1 (2026-08-05)

    v7.14.0

    7.14.0 (2026-08-05)

    v7.13.2

    7.13.2 (2026-08-05)

    v7.13.1

    7.13.1 (2026-08-04)

    v7.13.0

    7.13.0 (2026-08-04)

    v7.12.0

    7.12.0 (2026-08-04)

    v7.11.0

    7.11.0 (2026-08-04)

    v7.10.0

    7.10.0 (2026-08-04)

    v7.9.1

    7.9.1 (2026-08-04)

    v7.9.0

    7.9.0 (2026-08-04)

    Changelog

    Sourced from @​theholocron/holocron-config's changelog.

    7.15.0 (2026-08-07)

    7.14.4 (2026-08-06)

    7.14.3 (2026-08-05)

    7.14.2 (2026-08-05)

    7.14.1 (2026-08-05)

    7.14.0 (2026-08-05)

    7.13.2 (2026-08-05)

    7.13.1 (2026-08-04)

    7.13.0 (2026-08-04)

    7.12.0 (2026-08-04)

    7.11.0 (2026-08-04)

    7.10.0 (2026-08-04)

    7.9.1 (2026-08-04)

    7.9.0 (2026-08-04)

    Commits
    • dc9669a chore(release): 7.15.0 [skip ci]
    • 5ae074c feat: ✨ add cli preset to tsdown-config (#347)
    • a3dca65 chore(release): 7.14.4 [skip ci]
    • 3fa5e34 fix(vitest-config): use playwright() factory in storybook preset for vitest 4...
    • 9728ccc chore(release): 7.14.3 [skip ci]
    • a5dae19 fix: extend storybook-config peer deps to support Storybook v10 (#345)
    • c018f54 chore(release): 7.14.2 [skip ci]
    • fe4e083 fix: revert to @​vitejs/plugin-react ^6 (oxc changes now merged into it) (#344)
    • 5c299f2 chore(release): 7.14.1 [skip ci]
    • 9e638b6 fix: switch react presets from plugin-react to plugin-react-oxc for Vite v8 (...
    • Additional commits viewable in compare view

    Updates @theholocron/lint-staged-config from 7.8.1 to 7.15.0

    Changelog

    Sourced from @​theholocron/lint-staged-config's changelog.

    7.15.0 (2026-08-07)

    7.14.4 (2026-08-06)

    7.14.3 (2026-08-05)

    7.14.2 (2026-08-05)

    7.14.1 (2026-08-05)

    7.14.0 (2026-08-05)

    7.13.2 (2026-08-05)

    7.13.1 (2026-08-04)

    7.13.0 (2026-08-04)

    7.12.0 (2026-08-04)

    7.11.0 (2026-08-04)

    7.10.0 (2026-08-04)

    7.9.1 (2026-08-04)

    7.9.0 (2026-08-04)

    Commits
    • dc9669a chore(release): 7.15.0 [skip ci]
    • 5ae074c feat: ✨ add cli preset to tsdown-config (#347)
    • a3dca65 chore(release): 7.14.4 [skip ci]
    • 3fa5e34 fix(vitest-config): use playwright() factory in storybook preset for vitest 4...
    • 9728ccc chore(release): 7.14.3 [skip ci]
    • a5dae19 fix: extend storybook-config peer deps to support Storybook v10 (#345)
    • c018f54 chore(release): 7.14.2 [skip ci]
    • fe4e083 fix: revert to @​vitejs/plugin-react ^6 (oxc changes now merged into it) (#344)
    • 5c299f2 chore(release): 7.14.1 [skip ci]
    • 9e638b6 fix: switch react presets from plugin-react to plugin-react-oxc for Vite v8 (...
    • Additional commits viewable in compare view

    Updates @theholocron/prettier-config from 7.8.1 to 7.15.0

    Changelog

    Sourced from @​theholocron/prettier-config's changelog.

    7.15.0 (2026-08-07)

    7.14.4 (2026-08-06)

    7.14.3 (2026-08-05)

    7.14.2 (2026-08-05)

    7.14.1 (2026-08-05)

    7.14.0 (2026-08-05)

    7.13.2 (2026-08-05)

    7.13.1 (2026-08-04)

    7.13.0 (2026-08-04)

    7.12.0 (2026-08-04)

    7.11.0 (2026-08-04)

    7.10.0 (2026-08-04)

    7.9.1 (2026-08-04)

    7.9.0 (2026-08-04)

    Commits
    • dc9669a chore(release): 7.15.0 [skip ci]
    • 5ae074c feat: ✨ add cli preset to tsdown-config (#347)
    • a3dca65 chore(release): 7.14.4 [skip ci]
    • 3fa5e34 fix(vitest-config): use playwright() factory in storybook preset for vitest 4...
    • 9728ccc chore(release): 7.14.3 [skip ci]
    • a5dae19 fix: extend storybook-config peer deps to support Storybook v10 (#345)
    • c018f54 chore(release): 7.14.2 [skip ci]
    • fe4e083 fix: revert to @​vitejs/plugin-react ^6 (oxc changes now merged into it) (#344)
    • 5c299f2 chore(release): 7.14.1 [skip ci]
    • 9e638b6 fix: switch react presets from plugin-react to plugin-react-oxc for Vite v8 (...
    • Additional commits viewable in compare view

    Updates @theholocron/semantic-release-config from 7.8.1 to 7.15.0

    Release notes

    Sourced from @​theholocron/semantic-release-config's releases.

    v7.15.0

    7.15.0 (2026-08-07)

    v7.14.4

    7.14.4 (2026-08-06)

    v7.14.3

    7.14.3 (2026-08-05)

    v7.14.2

    7.14.2 (2026-08-05)

    v7.14.1

    7.14.1 (2026-08-05)

    v7.14.0

    7.14.0 (2026-08-05)

    v7.13.2

    7.13.2 (2026-08-05)

    v7.13.1

    7.13.1 (2026-08-04)

    v7.13.0

    7.13.0 (2026-08-04)

    v7.12.0

    7.12.0 (2026-08-04)

    v7.11.0

    7.11.0 (2026-08-04)

    v7.10.0

    7.10.0 (2026-08-04)

    v7.9.1

    7.9.1 (2026-08-04)

    v7.9.0

    7.9.0 (2026-08-04)

    Changelog

    Sourced from @​theholocron/semantic-release-config's changelog.

    7.15.0 (2026-08-07)

    7.14.4 (2026-08-06)

    7.14.3 (2026-08-05)

    7.14.2 (2026-08-05)

    7.14.1 (2026-08-05)

    7.14.0 (2026-08-05)

    7.13.2 (2026-08-05)

    7.13.1 (2026-08-04)

    7.13.0 (2026-08-04)

    7.12.0 (2026-08-04)

    7.11.0 (2026-08-04)

    7.10.0 (2026-08-04)

    7.9.1 (2026-08-04)

    7.9.0 (2026-08-04)

    Commits
    • dc9669a chore(release): 7.15.0 [skip ci]
    • 5ae074c feat: ✨ add cli preset to tsdown-config (#347)
    • a3dca65 chore(release): 7.14.4 [skip ci]
    • 3fa5e34 fix(vitest-config): use playwright() factory in storybook preset for vitest 4...
    • 9728ccc chore(release): 7.14.3 [skip ci]
    • a5dae19 fix: extend storybook-config peer deps to support Storybook v10 (#345)
    • c018f54 chore(release): 7.14.2 [skip ci]
    • fe4e083 fix: revert to @​vitejs/plugin-react ^6 (oxc changes now merged into it) (#344)
    • 5c299f2 chore(release): 7.14.1 [skip ci]
    • 9e638b6 fix: switch react presets from plugin-react to plugin-react-oxc for Vite v8 (...
    • Additional commits viewable in compare view

    Updates @theholocron/tsconfig from 7.8.1 to 7.15.0

    Changelog

    Sourced from @​theholocron/tsconfig's changelog.

    7.15.0 (2026-08-07)

    7.14.4 (2026-08-06)

    7.14.3 (2026-08-05)

    7.14.2 (2026-08-05)

    7.14.1 (2026-08-05)

    7.14.0 (2026-08-05)

    7.13.2 (2026-08-05)

    7.13.1 (2026-08-04)

    7.13.0 (2026-08-04)

    7.12.0 (2026-08-04)

    7.11.0 (2026-08-04)

    7.10.0 (2026-08-04)

    7.9.1 (2026-08-04)

    7.9.0 (2026-08-04)

    Commits
    • dc9669a chore(release): 7.15.0 [skip ci]
    • 5ae074c feat: ✨ add cli preset to tsdown-config (#347)
    • a3dca65 chore(release): 7.14.4 [skip ci]
    • 3fa5e34 fix(vitest-config): use playwright() factory in storybook preset for vitest 4...
    • 9728ccc chore(release): 7.14.3 [skip ci]
    • a5dae19 fix: extend storybook-config peer deps to support Storybook v10 (#345)
    • c018f54 chore(release): 7.14.2 [skip ci]
    • fe4e083 fix: revert to @​vitejs/plugin-react ^6 (oxc changes now merged into it) (#344)
    • 5c299f2 chore(release): 7.14.1 [skip ci]
    • 9e638b6 fix: switch react presets from plugin-react to plugin-react-oxc for Vite v8 (...
    • Additional commits viewable in compare view

    Updates @theholocron/tsdown-config from 7.8.1 to 7.15.0

    Release notes

    Sourced from @​theholocron/tsdown-config's releases.

    v7.15.0

    7.15.0 (2026-08-07)

    v7.14.4

    7.14.4 (2026-08-06)

    v7.14.3

    7.14.3 (2026-08-05)

    v7.14.2

    7.14.2 (2026-08-05)

    v7.14.1

    7.14.1 (2026-08-05)

    v7.14.0

    7.14.0 (2026-08-05)

    v7.13.2

    7.13.2 (2026-08-05)

    v7.13.1

    7.13.1 (2026-08-04)

    v7.13.0

    7.13.0 (2026-08-04)

    v7.12.0

    7.12.0 (2026-08-04)

    v7.11.0

    7.11.0 (2026-08-04)

    v7.10.0

    7.10.0 (2026-08-04)

    v7.9.1

    7.9.1 (2026-08-04)

    v7.9.0

    7.9.0 (2026-08-04)

    Changelog

    Sourced from @​theholocron/tsdown-config's changelog.

    7.15.0 (2026-08-07)

    7.14.4 (2026-08-06)

    7.14.3 (2026-08-05)

    7.14.2 (2026-08-05)

    7.14.1 (2026-08-05)

    7.14.0 (2026-08-05)

    7.13.2 (2026-08-05)

    7.13.1 (2026-08-04)

    7.13.0 (2026-08-04)

    7.12.0 (2026-08-04)

    7.11.0 (2026-08-04)

    7.10.0 (2026-08-04)

    7.9.1 (2026-08-04)

    7.9.0 (2026-08-04)

    Commits
    • dc9669a chore(release): 7.15.0 [skip ci]
    • 5ae074c feat: ✨ add cli preset to tsdown-config (#347)
    • a3dca65 chore(release): 7.14.4 [skip ci]
    • 3fa5e34 fix(vitest-config): use playwright() factory in storybook preset for vitest 4...
    • 9728ccc chore(release): 7.14.3 [skip ci]
    • a5dae19 fix: extend storybook-config peer deps to support Storybook v10 (#345)
    • c018f54 chore(release): 7.14.2 [skip ci]
    • fe4e083 fix: revert to @​vitejs/plugin-react ^6 (oxc changes now merged into it) (#344)
    • 5c299f2 chore(release): 7.14.1 [skip ci]
    • 9e638b6 fix: switch react presets from plugin-react to plugin-react-oxc for Vite v8 (...
    • Additional commits viewable in compare view

    Updates @theholocron/vitest-config from 7.8.1 to 7.15.0

    Release notes

    Sourced from @​theholocron/vitest-config's releases.

    v7.15.0

    7.15.0 (2026-08-07)

    v7.14.4

    7.14.4 (2026-08-06)

    v7.14.3

    7.14.3 (2026-08-05)

    v7.14.2

    7.14.2 (2026-08-05)

    v7.14.1

    7.14.1 (2026-08-05)

    v7.14.0

    7.14.0 (2026-08-05)

    v7.13.2

    7.13.2 (2026-08-05)

    v7.13.1

    7.13.1 (2026-08-04)

    v7.13.0

    7.13.0 (2026-08-04)

    v7.12.0

    7.12.0 (2026-08-04)

    v7.11.0

    7.11.0 (2026-08-04)

    v7.10.0

    7.10.0 (2026-08-04)

    v7.9.1

    7.9.1 (2026-08-04)

    v7.9.0

    7.9.0 (2026-08-04)

    Changelog

    Sourced from @​theholocron/vitest-config's changelog.

    7.15.0 (2026-08-07)

    7.14.4 (2026-08-06)

    7.14.3 (2026-08-05)

    7.14.2 (2026-08-05)

    7.14.1 (2026-08-05)

    7.14.0 (2026-08-05)

    7.13.2 (2026-08-05)

    7.13.1 (2026-08-04)

    7.13.0 (2026-08-04)

    7.12.0 (2026-08-04)

    7.11.0 (2026-08-04)

    7.10.0 (2026-08-04)

    7.9.1 (2026-08-04)

    7.9.0 (2026-08-04)

    Commits
    • dc9669a chore(release): 7.15.0 [skip ci]
    • 5ae074c feat: ✨ add cli preset to tsdown-config (#347)
    • a3dca65 chore(release): 7.14.4 [skip ci]
    • 3fa5e34 fix(vitest-config): use playwright() factory in storybook preset for vitest 4...
    • 9728ccc chore(release): 7.14.3 [skip ci]
    • a5dae19 fix: extend storybook-config peer deps to support Storybook v10 (#345)
    • c018f54 chore(release): 7.14.2 [skip ci]
    • fe4e083 fix: revert to @​vitejs/plugin-react ^6 (oxc changes now merged into it) (#344)
    • 5c299f2 chore(release): 7.14.1 [skip ci]
    • 9e638b6 fix: switch react presets from plugin-react to plugin-react-oxc for Vite v8 (...
    • Additional commits viewable in compare view

    Updates eslint-plugin-n from 18.2.2 to 18.3.0

    Release notes

    Sourced from eslint-plugin-n's releases.

    v18.3.0

    18.3.0 (2026-08-08)

    🌟 Features

    • add prefer-process-get-builtin-module rule (#554) (8d9bd05)
    • implement prefer-import/assert-strict rule (#553) (d7afbed)

    🩹 Fixes

    • handle import.meta paths in no-path-concat (#559) (a6b3ce2)
    • no-unsupported-features: classify util.styleText as experimental (#560) (b8e39c5)
    • support brace expansion and extglobs in package files (#558) (8cae1af)

    📚 Documentation

    • add eslint-plugin-node migration guide (#561) (4138d4e)
    • update outdated http links to https in docs/rules (#562) (a6cd6a5)

    🧹 Chores

    Changelog

    Sourced from eslint-plugin-n's changelog.

    18.3.0 (2026-08-08)

    🌟 Features

    • add prefer-process-get-builtin-module rule (#554) (8d9bd05)
    • implement prefer-import/assert-strict rule (#553) (d7afbed)

    🩹 Fixes

    • handle import.meta paths in no-path-concat (#559) (a6b3ce2)
    • no-unsupported-features: classify util.styleText as experimental (#560) (...

      Description has been truncated

    Bumps the all-dependencies group with 18 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.41.6` | `0.41.7` |
    | [@theholocron/docs-theme](https://github.com/theholocron/themes/tree/HEAD/packages/docs-theme) | `1.3.1` | `1.3.2` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.1.6` | `7.2.0` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.2` | `26.2.0` |
    | [@theholocron/commitlint-config](https://github.com/theholocron/configs) | `7.8.1` | `7.15.0` |
    | [@theholocron/eslint-config](https://github.com/theholocron/configs) | `7.8.1` | `7.15.0` |
    | [@theholocron/holocron-config](https://github.com/theholocron/configs) | `7.8.1` | `7.15.0` |
    | [@theholocron/lint-staged-config](https://github.com/theholocron/configs) | `7.8.1` | `7.15.0` |
    | [@theholocron/prettier-config](https://github.com/theholocron/configs) | `7.8.1` | `7.15.0` |
    | [@theholocron/semantic-release-config](https://github.com/theholocron/configs) | `7.8.1` | `7.15.0` |
    | [@theholocron/tsconfig](https://github.com/theholocron/configs) | `7.8.1` | `7.15.0` |
    | [@theholocron/tsdown-config](https://github.com/theholocron/configs) | `7.8.1` | `7.15.0` |
    | [@theholocron/vitest-config](https://github.com/theholocron/configs) | `7.8.1` | `7.15.0` |
    | [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `18.2.2` | `18.3.0` |
    | [eslint](https://github.com/eslint/eslint) | `10.8.0` | `10.8.1` |
    | [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.31.0` | `6.32.0` |
    | [semantic-release](https://github.com/semantic-release/semantic-release) | `25.0.8` | `25.0.9` |
    | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.65.0` | `8.66.0` |
    
    
    Updates `@astrojs/starlight` from 0.41.6 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 `@theholocron/docs-theme` from 1.3.1 to 1.3.2
    - [Release notes](https://github.com/theholocron/themes/releases)
    - [Changelog](https://github.com/theholocron/themes/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/theholocron/themes/commits/v1.3.2/packages/docs-theme)
    
    Updates `astro` from 7.1.6 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 `@types/node` from 26.1.2 to 26.2.0
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Updates `@theholocron/commitlint-config` from 7.8.1 to 7.15.0
    - [Release notes](https://github.com/theholocron/configs/releases)
    - [Changelog](https://github.com/theholocron/configs/blob/main/CHANGELOG.md)
    - [Commits](theholocron/configs@v7.8.1...v7.15.0)
    
    Updates `@theholocron/eslint-config` from 7.8.1 to 7.15.0
    - [Release notes](https://github.com/theholocron/configs/releases)
    - [Changelog](https://github.com/theholocron/configs/blob/main/CHANGELOG.md)
    - [Commits](theholocron/configs@v7.8.1...v7.15.0)
    
    Updates `@theholocron/holocron-config` from 7.8.1 to 7.15.0
    - [Release notes](https://github.com/theholocron/configs/releases)
    - [Changelog](https://github.com/theholocron/configs/blob/main/CHANGELOG.md)
    - [Commits](theholocron/configs@v7.8.1...v7.15.0)
    
    Updates `@theholocron/lint-staged-config` from 7.8.1 to 7.15.0
    - [Release notes](https://github.com/theholocron/configs/releases)
    - [Changelog](https://github.com/theholocron/configs/blob/main/CHANGELOG.md)
    - [Commits](theholocron/configs@v7.8.1...v7.15.0)
    
    Updates `@theholocron/prettier-config` from 7.8.1 to 7.15.0
    - [Release notes](https://github.com/theholocron/configs/releases)
    - [Changelog](https://github.com/theholocron/configs/blob/main/CHANGELOG.md)
    - [Commits](theholocron/configs@v7.8.1...v7.15.0)
    
    Updates `@theholocron/semantic-release-config` from 7.8.1 to 7.15.0
    - [Release notes](https://github.com/theholocron/configs/releases)
    - [Changelog](https://github.com/theholocron/configs/blob/main/CHANGELOG.md)
    - [Commits](theholocron/configs@v7.8.1...v7.15.0)
    
    Updates `@theholocron/tsconfig` from 7.8.1 to 7.15.0
    - [Release notes](https://github.com/theholocron/configs/releases)
    - [Changelog](https://github.com/theholocron/configs/blob/main/CHANGELOG.md)
    - [Commits](theholocron/configs@v7.8.1...v7.15.0)
    
    Updates `@theholocron/tsdown-config` from 7.8.1 to 7.15.0
    - [Release notes](https://github.com/theholocron/configs/releases)
    - [Changelog](https://github.com/theholocron/configs/blob/main/CHANGELOG.md)
    - [Commits](theholocron/configs@v7.8.1...v7.15.0)
    
    Updates `@theholocron/vitest-config` from 7.8.1 to 7.15.0
    - [Release notes](https://github.com/theholocron/configs/releases)
    - [Changelog](https://github.com/theholocron/configs/blob/main/CHANGELOG.md)
    - [Commits](theholocron/configs@v7.8.1...v7.15.0)
    
    Updates `eslint-plugin-n` from 18.2.2 to 18.3.0
    - [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
    - [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
    - [Commits](eslint-community/eslint-plugin-n@v18.2.2...v18.3.0)
    
    Updates `eslint` from 10.8.0 to 10.8.1
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Commits](eslint/eslint@v10.8.0...v10.8.1)
    
    Updates `knip` from 6.31.0 to 6.32.0
    - [Release notes](https://github.com/webpro-nl/knip/releases)
    - [Commits](https://github.com/webpro-nl/knip/commits/knip@6.32.0/packages/knip)
    
    Updates `semantic-release` from 25.0.8 to 25.0.9
    - [Release notes](https://github.com/semantic-release/semantic-release/releases)
    - [Commits](semantic-release/semantic-release@v25.0.8...v25.0.9)
    
    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/starlight"
      dependency-version: 0.41.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/docs-theme"
      dependency-version: 1.3.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: astro
      dependency-version: 7.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@types/node"
      dependency-version: 26.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/commitlint-config"
      dependency-version: 7.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/eslint-config"
      dependency-version: 7.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/holocron-config"
      dependency-version: 7.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/lint-staged-config"
      dependency-version: 7.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/prettier-config"
      dependency-version: 7.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/semantic-release-config"
      dependency-version: 7.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/tsconfig"
      dependency-version: 7.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/tsdown-config"
      dependency-version: 7.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: "@theholocron/vitest-config"
      dependency-version: 7.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: eslint-plugin-n
      dependency-version: 18.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: eslint
      dependency-version: 10.8.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: knip
      dependency-version: 6.32.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    - dependency-name: semantic-release
      dependency-version: 25.0.9
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-dependencies
    - dependency-name: typescript-eslint
      dependency-version: 8.66.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot Bot added dependencies Dependency update javascript Pull requests that update javascript code labels Aug 12, 2026
    @dependabot
    dependabot Bot requested a review from a team as a code owner August 12, 2026 01:56
    @dependabot
    dependabot Bot requested review from iamnewton and removed request for a team August 12, 2026 01:56
    @dependabot dependabot Bot added dependencies Dependency update javascript Pull requests that update javascript code labels Aug 12, 2026
    @codecov

    codecov Bot commented Aug 12, 2026

    Copy link
    Copy Markdown

    Codecov Report

    ✅ All modified and coverable lines are covered by tests.
    ✅ All tests successful. No failed tests found.

    Impacted file tree graph

    @@            Coverage Diff            @@
    ##              main      #150   +/-   ##
    =========================================
      Coverage   100.00%   100.00%           
    =========================================
      Files            1         1           
      Lines            1         1           
    =========================================
      Hits             1         1           
    🚀 New features to boost your workflow:
    • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

    Signed-off-by: Newton <5769156+iamnewton@users.noreply.github.com>
    @iamnewton iamnewton changed the title build(deps): Bump the all-dependencies group with 18 updates build(deps): bump the all-dependencies group with 18 updates Aug 12, 2026
    @iamnewton
    iamnewton merged commit 61d8759 into main Aug 12, 2026
    24 of 26 checks passed
    @iamnewton
    iamnewton deleted the dependabot/npm_and_yarn/all-dependencies-2b6ff47402 branch August 12, 2026 03:26
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    dependencies Dependency update javascript Pull requests that update javascript code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    1 participant