Skip to content

chore(deps): bump the minors-and-patches group with 13 updates - #109

Merged
marekh19 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/minors-and-patches-fe09091dab
Aug 9, 2026
Merged

marekh19 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/minors-and-patches-fe09091dab

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the minors-and-patches group with 13 updates:

Package From To
@iconify-json/logos 1.2.11 1.2.12
@iconify-json/lucide 1.2.121 1.2.122
astro 7.1.6 7.2.0
lucide-preact 1.28.0 1.30.0
preact 10.29.7 10.29.8
@types/node 26.1.2 26.2.0
daisyui 5.7.9 5.7.16
eslint 10.8.0 10.8.1
eslint-plugin-astro 3.0.1 3.1.0
knip 6.31.0 6.32.0
typescript-eslint 8.65.0 8.66.0
vite 8.2.0 8.2.1
wrangler 4.118.0 4.120.0

Updates @iconify-json/logos from 1.2.11 to 1.2.12

Commits

Updates @iconify-json/lucide from 1.2.121 to 1.2.122

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 lucide-preact from 1.28.0 to 1.30.0

    Release notes

    Sourced from lucide-preact's releases.

    Version 1.30.0

    What's Changed

    New Contributors

    Full Changelog: lucide-icons/lucide@1.29.0...1.30.0

    Version 1.29.0

    What's Changed

    Full Changelog: lucide-icons/lucide@1.28.0...1.29.0

    Commits

    Updates preact from 10.29.7 to 10.29.8

    Release notes

    Sourced from preact's releases.

    10.29.8

    Performance

    Commits

    Updates @types/node from 26.1.2 to 26.2.0

    Commits

    Updates daisyui from 5.7.9 to 5.7.16

    Release notes

    Sourced from daisyui's releases.

    v5.7.16

    🌼 Read changelog: https://daisyui.com/docs/changelog/

    📦 Install this update:

    npm i -D daisyui@5.7.16

    💚 Thank you for using daisyUI!

    v5.7.15

    🌼 Read changelog: https://daisyui.com/docs/changelog/

    📦 Install this update:

    npm i -D daisyui@5.7.15

    💚 Thank you for using daisyUI!

    v5.7.14

    🌼 Read changelog: https://daisyui.com/docs/changelog/

    📦 Install this update:

    npm i -D daisyui@5.7.14

    💚 Thank you for using daisyUI!

    v5.7.13

    🌼 Read changelog: https://daisyui.com/docs/changelog/

    📦 Install this update:

    npm i -D daisyui@5.7.13

    💚 Thank you for using daisyUI!

    v5.7.12

    🌼 Read changelog: https://daisyui.com/docs/changelog/

    📦 Install this update:

    npm i -D daisyui@5.7.12

    💚 Thank you for using daisyUI!

    ... (truncated)

    Changelog

    Sourced from daisyui's changelog.

    5.7.16 (2026-08-04)

    Bug Fixes

    • horizontal menu alignment (1125e2a)

    5.7.15 (2026-08-03)

    Bug Fixes

    5.7.14 (2026-08-02)

    Bug Fixes

    • table: pin thead/tfoot as a group so multi-row headers stack (#4643). Closes: #4350 (38ac3d3)

    5.7.13 (2026-08-02)

    Bug Fixes

    5.7.12 (2026-08-02)

    Bug Fixes

    • prevent select arrow to rotate when select is focused but not open (#4655) (3362dc2)

    5.7.11 (2026-08-02)

    Bug Fixes

    5.7.10 (2026-08-02)

    Bug Fixes

    • move tooltip default position in l3 in main definition (#4653). closes: #4647 (7923f53)
    Commits

    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 eslint-plugin-astro from 3.0.1 to 3.1.0

    Release notes

    Sourced from eslint-plugin-astro's releases.

    v3.1.0

    Minor Changes

    • #616 425aebb Thanks @​ota-meshi! - Resolve the TypeScript parser from the typescript-eslint package when @typescript-eslint/parser is not installed directly.
    Changelog

    Sourced from eslint-plugin-astro's changelog.

    3.1.0

    Minor Changes

    • #616 425aebb Thanks @​ota-meshi! - Resolve the TypeScript parser from the typescript-eslint package when @typescript-eslint/parser is not installed directly.
    Commits
    • 49c94c6 Version Packages (#615)
    • 425aebb Resolve the TypeScript parser from the typescript-eslint package when `@typ...
    • b5bae36 chore(deps): update actions/stale action to v11 (#609)
    • bff64d9 chore(deps): update dependency @​astrojs/markdown-satteri to v0.3.5 (#610)
    • 983b186 docs: add eslint-plugin-import interoperability guide (#612)
    • e1f01f9 chore(deps): update dependency c8 to v12 (#606)
    • See full diff in compare view

    Updates knip from 6.31.0 to 6.32.0

    Release notes

    Sourced from knip's releases.

    Release 6.32.0

    • fix: attribute wildcard subpath-import aliases as dependency usage (#1918) (4890a2ad5317b9e3f0ab844631ad0f0592802c3e) - thanks @​jsmecham!
    • Add Borp plugin (5eb9ad4cfb2ccb7770eac49f6109459d30590211)
    • Add tsd plugin (bd4ae7041f3fc6aef27b027644f80daefc432aca)
    • Resolve Rollup --config argument as plugin configuration (8111f97981406f4327d5e6a655c13308a9dc4426)
    • Resolve babel-jest configFile from Jest transform options (24794ccecb80fdaecfe4d46a26faff46c30d9015)
    • Add pre-commit plugin (ac726b0918cb931a6d538797e342484812a6752e)
    • Thread script words through resolvers to preserve quoting (89f9ada6ca81229bf8f7293439998acc5f87d457)
    • Resolve entries from Mocha script arguments (353f860f8e32f05f7c87dc5501071befc0e5a293)
    • Detect Node test runner through c8 (fa44be722aa35c6e8b441cd8cd0f4cf644027c22)
    • Update dependencies (non-major) (#1922) (6b1e6f3cbb1749776e3798f46eb2b99cd95ed56a) - thanks @​renovate[bot]!
    • fix(playwright): match config files with .cjs, .cts and .mts extensions (#1919) (1c1073a1817fdb3bcd3dc00eda2b1d858e444156) - thanks @​davidpavlovschi!
    • Restart VS Code language server process (resolve #1923) (d48eac5a2447567a33e835ce3e1648bf3f4ffb2b)
    • Classify built-ins from module specifiers (resolve #1925) (3528c5d0f808b7b2155f69a1f98493ee0e3e06c1)
    • Don't turn absolute-path script tokens into entries (resolve #1928) (e5608e77b434145c8dd5c2c2872bfb90ae622ce7)
    • Update sponsors data (025884bb53eede041732723197ac0415a1a50f71)
    • Update dependencies (d2c0a07c09cea70ab2cae5f97d12da272a6e43e6)
    Commits
    • f21bcbb Release knip@6.32.0
    • d2c0a07 Update dependencies
    • e5608e7 Don't turn absolute-path script tokens into entries (resolve #1928)
    • 3528c5d Classify built-ins from module specifiers (resolve #1925)
    • 1c1073a fix(playwright): match config files with .cjs, .cts and .mts extensions (#1919)
    • fa44be7 Detect Node test runner through c8
    • 353f860 Resolve entries from Mocha script arguments
    • 89f9ada Thread script words through resolvers to preserve quoting
    • ac726b0 Add pre-commit plugin
    • 24794cc Resolve babel-jest configFile from Jest transform options
    • Additional commits viewable in compare view

    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

    Updates vite from 8.2.0 to 8.2.1

    Release notes

    Sourced from vite's releases.

    plugin-legacy@8.2.1

    Please refer to CHANGELOG.md for details.

    v8.2.1

    Please refer to CHANGELOG.md for details.

    Changelog

    Sourced from vite's changelog.

    8.2.1 (2026-08-06)

    Bug Fixes

    • build: make client chunkImportMap work with sharedPlugins: true (#23184) (15f0307)
    • bundled-dev: inject client script tag before chunk scripts (#23161) (eac0cc8)
    • css: don't re-run lightningcss visitor during minify (fix #23146) (#23147) (de041a7)
    • deps: update all non-major dependencies (#23136) (14454fd)
    • deps: update rolldown-related dependencies (#23070) (7ac6f7f)
    • don't mutate the user config when resolving the lib entry from the top-level input (#23135) (b4bf596)
    • handle shebang ending with uncommon line terminators (#23038) (17f7b2f)
    • server: use a random port when port is 0 (#23158) (fddf4ea)

    Performance Improvements

    Documentation

    • build: fix incomplete @default for build.minify (#23177) (ef02435)

    Miscellaneous Chores

    • deps: update dependency rolldown-plugin-dts to ^0.28.0 (#23137) (4adc1e7)
    • deps: update dependency strip-literal to v4 (#23140) (9db65ce)

    Code Refactoring

    • bundled-dev: avoid injecting server values in the bundle (#22967) (23b8a08)
    • bundled-dev: remove rolldown lazy stub module workaround (#23129) (e72036e)

    Tests

    Commits
    • 4216158 release: v8.2.1
    • fddf4ea fix(server): use a random port when port is 0 (#23158)
    • de041a7 fix(css): don't re-run lightningcss visitor during minify (fix #23146) (#23147)
    • 15f0307 fix(build): make client chunkImportMap work with sharedPlugins: true (#23184)
    • c2155fe test(bundled-dev): enable sourcemap playgrounds (#23080)
    • ef02435 docs(build): fix incomplete @default for build.minify (#23177)
    • eac0cc8 fix(bundled-dev): inject client script tag before chunk scripts (#23161)
    • 23b8a08 refactor(bundled-dev): avoid injecting server values in the bundle (#22967)
    • e72036e refactor(bundled-dev): remove rolldown lazy stub module workaround (#23129)
    • 14454fd fix(deps): update all non-major dependencies (#23136)
    • Additional commits viewable in compare view

    Updates wrangler from 4.118.0 to 4.120.0

    Release notes

    Sourced from wrangler's releases.

    wrangler@4.120.0

    Minor Changes

    • #15008 35c87e9 Thanks @​skepticfx! - Adds the ability to find container instances by exact ID or name

      wrangler containers instances <application_id> --search <instance_id_or_name> now searches every page and returns exact matches in human-readable or JSON output. JSON returns a top-level array, including an empty array when there is no match, while human-readable output prints a no-match message. If multiple instances have the same exact name, every matching instance is returned.

    • #15008 35c87e9 Thanks @​skepticfx! - Add explicit pagination to container instance JSON output

      Use wrangler containers instances <application_id> --json --per-page <size> to return one page with machine-readable result_info, then pass its next_page_token to --page-token to retrieve the next page. Plain --json remains backward-compatible: it requests the complete list and returns the existing top-level array.

    Patch Changes

    • #15013 8cf78c8 Thanks @​dario-piotrowicz! - Update undici from 7.28.0 to 7.29.0

    • #15015 a60ff4d Thanks @​nickpatt! - Cut the per-request cost of local observability capture

      Every tail event was written to the trace store as its own Durable Object call, so a request paid two or three round-trips per span. On a module-heavy app under the Vite plugin that dominated dev request latency. Rows are now buffered and written in batches, taking a request from roughly thirty calls to three.

      Work in progress still shows up as it happens: the root span is written immediately, console logs and exceptions as they arrive, and a span's completion is written on the next event once 100ms has passed. An invocation that goes completely quiet writes nothing further until it ends, since the flush is driven by tail events rather than a timer.

      The Vite plugin's own router, asset and proxy workers are also no longer captured. Their traces were noise the Observability views already hid, and skipping them cuts the spans recorded per request — a side benefit being that a trace's root is now your Worker rather than __router-worker__.

    • Updated dependencies [b4f0c97, 8cf78c8, a60ff4d, 99eb50c]:

    wrangler@4.119.0

    Minor Changes

    • #14952 20470fa Thanks @​nelsonjsduarte! - Add --parse-type flag to wrangler ai-search create

      wrangler ai-search create now accepts --parse-type to control how a website data source discovers URLs. sitemap (the default) reads XML sitemaps; discover follows links recursively.

      Previously the parse type could only be chosen through the interactive wizard, which was skipped whenever --source was supplied — so it was impossible to create a discover instance from a script.

      wrangler ai-search create my-instance \
        --type web-crawler \
        --source https://example.com \
        --parse-type discover

      The interactive wizard now offers Discover alongside Sitemap. --parse-type is only valid with --type web-crawler; passing it with --type builtin or --type r2 is rejected, since the API stores the value for those source types but never reads it. When the flag is omitted in non-interactive mode the field is left unset and the API default (sitemap) applies.

    • #14941 266172b Thanks @​nickpatt! - Improve the Local Explorer's Observability views

      console.log messages now render the way the console would (JSON-encoded strings are unwrapped and multi-argument logs are joined), traces and events can be lo...

      Description has been truncated

    Bumps the minors-and-patches group with 13 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@iconify-json/logos](https://github.com/iconify/icon-sets) | `1.2.11` | `1.2.12` |
    | [@iconify-json/lucide](https://github.com/iconify/icon-sets) | `1.2.121` | `1.2.122` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.1.6` | `7.2.0` |
    | [lucide-preact](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-preact) | `1.28.0` | `1.30.0` |
    | [preact](https://github.com/preactjs/preact) | `10.29.7` | `10.29.8` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.2` | `26.2.0` |
    | [daisyui](https://github.com/saadeghi/daisyui/tree/HEAD/packages/daisyui) | `5.7.9` | `5.7.16` |
    | [eslint](https://github.com/eslint/eslint) | `10.8.0` | `10.8.1` |
    | [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro) | `3.0.1` | `3.1.0` |
    | [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.31.0` | `6.32.0` |
    | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.65.0` | `8.66.0` |
    | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.2.0` | `8.2.1` |
    | [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.118.0` | `4.120.0` |
    
    
    Updates `@iconify-json/logos` from 1.2.11 to 1.2.12
    - [Commits](https://github.com/iconify/icon-sets/commits)
    
    Updates `@iconify-json/lucide` from 1.2.121 to 1.2.122
    - [Commits](https://github.com/iconify/icon-sets/commits)
    
    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 `lucide-preact` from 1.28.0 to 1.30.0
    - [Release notes](https://github.com/lucide-icons/lucide/releases)
    - [Commits](https://github.com/lucide-icons/lucide/commits/1.30.0/packages/lucide-preact)
    
    Updates `preact` from 10.29.7 to 10.29.8
    - [Release notes](https://github.com/preactjs/preact/releases)
    - [Commits](preactjs/preact@10.29.7...10.29.8)
    
    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 `daisyui` from 5.7.9 to 5.7.16
    - [Release notes](https://github.com/saadeghi/daisyui/releases)
    - [Changelog](https://github.com/saadeghi/daisyui/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/saadeghi/daisyui/commits/v5.7.16/packages/daisyui)
    
    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 `eslint-plugin-astro` from 3.0.1 to 3.1.0
    - [Release notes](https://github.com/ota-meshi/eslint-plugin-astro/releases)
    - [Changelog](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/CHANGELOG.md)
    - [Commits](ota-meshi/eslint-plugin-astro@v3.0.1...v3.1.0)
    
    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 `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)
    
    Updates `vite` from 8.2.0 to 8.2.1
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v8.2.1/packages/vite)
    
    Updates `wrangler` from 4.118.0 to 4.120.0
    - [Release notes](https://github.com/cloudflare/workers-sdk/releases)
    - [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.120.0/packages/wrangler)
    
    ---
    updated-dependencies:
    - dependency-name: "@iconify-json/logos"
      dependency-version: 1.2.12
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: minors-and-patches
    - dependency-name: "@iconify-json/lucide"
      dependency-version: 1.2.122
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: minors-and-patches
    - dependency-name: astro
      dependency-version: 7.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: minors-and-patches
    - dependency-name: lucide-preact
      dependency-version: 1.30.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: minors-and-patches
    - dependency-name: preact
      dependency-version: 10.29.8
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: minors-and-patches
    - dependency-name: "@types/node"
      dependency-version: 26.2.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minors-and-patches
    - dependency-name: daisyui
      dependency-version: 5.7.16
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minors-and-patches
    - dependency-name: eslint
      dependency-version: 10.8.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minors-and-patches
    - dependency-name: eslint-plugin-astro
      dependency-version: 3.1.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minors-and-patches
    - dependency-name: knip
      dependency-version: 6.32.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minors-and-patches
    - dependency-name: typescript-eslint
      dependency-version: 8.66.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minors-and-patches
    - dependency-name: vite
      dependency-version: 8.2.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minors-and-patches
    - dependency-name: wrangler
      dependency-version: 4.120.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minors-and-patches
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 9, 2026
    @marekh19
    marekh19 merged commit 0da3100 into main Aug 9, 2026
    1 check passed
    @marekh19
    marekh19 deleted the dependabot/npm_and_yarn/minors-and-patches-fe09091dab branch August 9, 2026 21:54
    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.

    1 participant