Skip to content

chore(deps): bump the npm-updates group in /frontend with 9 updates - #1574

Merged
github-actions[bot] merged 2 commits into
mainfrom
dependabot/npm_and_yarn/frontend/npm-updates-8b63b42e2b
Aug 27, 2026
Merged

chore(deps): bump the npm-updates group in /frontend with 9 updates#1574
github-actions[bot] merged 2 commits into
mainfrom
dependabot/npm_and_yarn/frontend/npm-updates-8b63b42e2b

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-updates group in /frontend with 9 updates:

Package From To
@astrojs/node 11.0.3 11.1.0
astro 7.1.6 7.2.0
@testing-library/jest-dom 7.0.0 7.0.1
@testing-library/user-event 14.6.1 14.6.3
@types/node 26.1.2 26.2.0
@vitest/eslint-plugin 1.6.26 1.6.27
eslint 10.8.0 10.8.1
svelte-check 4.7.4 4.7.5
typescript-eslint 8.65.0 8.66.0

Updates @astrojs/node from 11.0.3 to 11.1.0

Release notes

Sourced from @​astrojs/node's releases.

@​astrojs/node@​11.1.0

Minor Changes

  • #16871 90c98ae Thanks @​adamchal! - When session: false is set in astro.config, the adapter no longer auto-wires the filesystem session driver. Combined with the matching astro change, this lets the session runtime tree-shake out of the server bundle.

Patch Changes

  • #17564 004fb0a Thanks @​dmgawel! - Fixes middleware mode routing when a prerendered dynamic route sorts before an on-demand fallback
Changelog

Sourced from @​astrojs/node's changelog.

11.1.0

Minor Changes

  • #16871 90c98ae Thanks @​adamchal! - When session: false is set in astro.config, the adapter no longer auto-wires the filesystem session driver. Combined with the matching astro change, this lets the session runtime tree-shake out of the server bundle.

Patch Changes

  • #17564 004fb0a Thanks @​dmgawel! - Fixes middleware mode routing when a prerendered dynamic route sorts before an on-demand fallback
Commits

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 @testing-library/jest-dom from 7.0.0 to 7.0.1

    Release notes

    Sourced from @​testing-library/jest-dom's releases.

    v7.0.1

    7.0.1 (2026-08-09)

    Bug Fixes

    • declare vitest as an optional peer dependency (#733) (3782c78)
    Commits

    Updates @testing-library/user-event from 14.6.1 to 14.6.3

    Release notes

    Sourced from @​testing-library/user-event's releases.

    v14.6.3

    14.6.3 (2026-08-03)

    Bug Fixes

    v14.6.2

    14.6.2 (2026-08-03)

    Commits
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for @​testing-library/user-event since your current version.


    Updates @types/node from 26.1.2 to 26.2.0

    Commits

    Updates @vitest/eslint-plugin from 1.6.26 to 1.6.27

    Release notes

    Sourced from @​vitest/eslint-plugin's releases.

    v1.6.27

       🐞 Bug Fixes

        View changes on GitHub
    Commits
    • aad57d1 chore: release v1.6.27
    • d1c0a34 docs(valid-title): fixed the description of the valid-title option (#940)
    • ef70063 fix(valid-title): handle missing argument in valid-title rule (#942)
    • 089732f fix(valid-title): Refine the reportEmptyTitle message (#941)
    • See full diff in compare view

    Updates eslint from 10.8.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)
    Commits

    Updates svelte-check from 4.7.4 to 4.7.5

    Release notes

    Sourced from svelte-check's releases.

    svelte-check@4.7.5

    Patch Changes

    • fix: prevent silent error during start-up caused by unhandled promise (#3096)

    • Updated dependencies [1df53d8]:

      • @​sveltejs/load-config@​0.2.2
    Commits

    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 will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
    • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
    • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 24, 2026
    @dependabot
    dependabot Bot requested a review from a team as a code owner August 24, 2026 04:34
    @dependabot
    dependabot Bot requested review from SamuelHLewis and removed request for a team August 24, 2026 04:34

    @github-actions github-actions Bot 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.

    Auto-approved - all dependency bumps are minor or patch only.

    @github-actions
    github-actions Bot enabled auto-merge (rebase) August 24, 2026 04:34
    @linear-code

    linear-code Bot commented Aug 26, 2026

    Copy link
    Copy Markdown

    PRO-714

    @github-actions github-actions Bot 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.

    Auto-approved - all dependency bumps are minor or patch only.

    @252afh

    252afh commented Aug 27, 2026

    Copy link
    Copy Markdown
    Contributor

    @dependabot rebase

    @dependabot @github

    dependabot Bot commented on behalf of github Aug 27, 2026

    Copy link
    Copy Markdown
    Contributor Author

    Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

    If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

    dependabot Bot and others added 2 commits August 27, 2026 13:09
    Bumps the npm-updates group in /frontend with 9 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/node](https://github.com/withastro/astro/tree/HEAD/packages/integrations/node) | `11.0.3` | `11.1.0` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.1.6` | `7.2.0` |
    | [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `7.0.0` | `7.0.1` |
    | [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.6.1` | `14.6.3` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.2` | `26.2.0` |
    | [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) | `1.6.26` | `1.6.27` |
    | [eslint](https://github.com/eslint/eslint) | `10.8.0` | `10.8.1` |
    | [svelte-check](https://github.com/sveltejs/language-tools) | `4.7.4` | `4.7.5` |
    | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.65.0` | `8.66.0` |
    
    
    Updates `@astrojs/node` from 11.0.3 to 11.1.0
    - [Release notes](https://github.com/withastro/astro/releases)
    - [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/node/CHANGELOG.md)
    - [Commits](https://github.com/withastro/astro/commits/@astrojs/node@11.1.0/packages/integrations/node)
    
    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 `@testing-library/jest-dom` from 7.0.0 to 7.0.1
    - [Release notes](https://github.com/testing-library/jest-dom/releases)
    - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
    - [Commits](testing-library/jest-dom@v7.0.0...v7.0.1)
    
    Updates `@testing-library/user-event` from 14.6.1 to 14.6.3
    - [Release notes](https://github.com/testing-library/user-event/releases)
    - [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md)
    - [Commits](testing-library/user-event@v14.6.1...v14.6.3)
    
    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 `@vitest/eslint-plugin` from 1.6.26 to 1.6.27
    - [Release notes](https://github.com/vitest-dev/eslint-plugin-vitest/releases)
    - [Commits](vitest-dev/eslint-plugin-vitest@v1.6.26...v1.6.27)
    
    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 `svelte-check` from 4.7.4 to 4.7.5
    - [Release notes](https://github.com/sveltejs/language-tools/releases)
    - [Commits](https://github.com/sveltejs/language-tools/compare/svelte-check@4.7.4...svelte-check@4.7.5)
    
    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/node"
      dependency-version: 11.1.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-updates
    - dependency-name: astro
      dependency-version: 7.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: npm-updates
    - dependency-name: "@testing-library/jest-dom"
      dependency-version: 7.0.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-updates
    - dependency-name: "@testing-library/user-event"
      dependency-version: 14.6.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-updates
    - dependency-name: "@types/node"
      dependency-version: 26.2.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-updates
    - dependency-name: "@vitest/eslint-plugin"
      dependency-version: 1.6.27
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-updates
    - dependency-name: eslint
      dependency-version: 10.8.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-updates
    - dependency-name: svelte-check
      dependency-version: 4.7.5
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: npm-updates
    - dependency-name: typescript-eslint
      dependency-version: 8.66.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: npm-updates
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @252afh
    252afh force-pushed the dependabot/npm_and_yarn/frontend/npm-updates-8b63b42e2b branch from 6c14eb8 to 09d97af Compare August 27, 2026 12:09
    @github-actions
    github-actions Bot merged commit 785afa0 into main Aug 27, 2026
    13 checks passed
    @github-actions
    github-actions Bot deleted the dependabot/npm_and_yarn/frontend/npm-updates-8b63b42e2b branch August 27, 2026 12:19
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    ci-failure dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    1 participant