Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 9 updates - #60

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-ee94a9fe16
Open

chore(deps): bump the minor-and-patch group across 1 directory with 9 updates#60
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-ee94a9fe16

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 9 updates in the / directory:

Package From To
@astrojs/starlight 0.41.6 0.41.7
astro 7.1.6 7.2.0
@cloudflare/workers-types 5.20260801.1 5.20260809.1
wrangler 4.118.0 4.120.0
@sveltejs/vite-plugin-svelte 7.2.0 7.3.0
@testing-library/user-event 14.6.1 14.6.3
publint 0.3.22 0.3.23
svelte-check 4.7.4 4.7.5
vite 8.2.0 8.2.1

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 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 @cloudflare/workers-types from 5.20260801.1 to 5.20260809.1

    Commits

    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 looked up by trace or span id from the search bar, and an event's "View trace" button jumps to the exact invocation that emitted it — even when a trace_id spans several invocations (e.g. a subrequest or self fetch).

    • #14064 a9e5abb Thanks @​petebacondarwin! - Add support for OAuth 2.0 Device Authorization Grant to wrangler login

    ... (truncated)

    Commits

    Updates @sveltejs/vite-plugin-svelte from 7.2.0 to 7.3.0

    Release notes

    Sourced from @​sveltejs/vite-plugin-svelte's releases.

    @​sveltejs/vite-plugin-svelte@​7.3.0

    Minor Changes

    • feat: pass environment to dynamicCompileOptions (#1386)

    Patch Changes

    • fix: don't log inline config when encountering unexpected options (#1376)
    Changelog

    Sourced from @​sveltejs/vite-plugin-svelte's changelog.

    7.3.0

    Minor Changes

    • feat: pass environment to dynamicCompileOptions (#1386)

    Patch Changes

    • fix: don't log inline config when encountering unexpected options (#1376)
    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 publint from 0.3.22 to 0.3.23

    Changelog

    Sourced from publint's changelog.

    0.3.23

    Patch Changes

    • #248 9ff88ac - Recursively detect test files (e.g. *.test.js, *.spec.ts) for the USE_FILES suggestion.

    • #245 ad737a3 - The USE_FILES message now reports which internal files or directories triggered it via args.internalFilePaths

    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 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

    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

    … updates
    
    Bumps the minor-and-patch group with 9 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.41.6` | `0.41.7` |
    | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.1.6` | `7.2.0` |
    | [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `5.20260801.1` | `5.20260809.1` |
    | [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `4.118.0` | `4.120.0` |
    | [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte) | `7.2.0` | `7.3.0` |
    | [@testing-library/user-event](https://github.com/testing-library/user-event) | `14.6.1` | `14.6.3` |
    | [publint](https://github.com/publint/publint/tree/HEAD/packages/publint) | `0.3.22` | `0.3.23` |
    | [svelte-check](https://github.com/sveltejs/language-tools) | `4.7.4` | `4.7.5` |
    | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.2.0` | `8.2.1` |
    
    
    
    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 `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 `@cloudflare/workers-types` from 5.20260801.1 to 5.20260809.1
    - [Release notes](https://github.com/cloudflare/workerd/releases)
    - [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
    - [Commits](https://github.com/cloudflare/workerd/commits)
    
    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)
    
    Updates `@sveltejs/vite-plugin-svelte` from 7.2.0 to 7.3.0
    - [Release notes](https://github.com/sveltejs/vite-plugin-svelte/releases)
    - [Changelog](https://github.com/sveltejs/vite-plugin-svelte/blob/main/packages/vite-plugin-svelte/CHANGELOG.md)
    - [Commits](https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/vite-plugin-svelte@7.3.0/packages/vite-plugin-svelte)
    
    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 `publint` from 0.3.22 to 0.3.23
    - [Release notes](https://github.com/publint/publint/releases)
    - [Changelog](https://github.com/publint/publint/blob/master/packages/publint/CHANGELOG.md)
    - [Commits](https://github.com/publint/publint/commits/HEAD/packages/publint)
    
    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 `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)
    
    ---
    updated-dependencies:
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.41.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: minor-and-patch
    - dependency-name: astro
      dependency-version: 7.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: minor-and-patch
    - dependency-name: "@cloudflare/workers-types"
      dependency-version: 5.20260809.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minor-and-patch
    - dependency-name: wrangler
      dependency-version: 4.120.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minor-and-patch
    - dependency-name: "@sveltejs/vite-plugin-svelte"
      dependency-version: 7.3.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: minor-and-patch
    - dependency-name: "@testing-library/user-event"
      dependency-version: 14.6.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor-and-patch
    - dependency-name: publint
      dependency-version: 0.3.23
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor-and-patch
    - dependency-name: svelte-check
      dependency-version: 4.7.5
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor-and-patch
    - dependency-name: vite
      dependency-version: 8.2.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: minor-and-patch
    ...
    
    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 12, 2026
    @cloudflare-workers-and-pages

    cloudflare-workers-and-pages Bot commented Aug 12, 2026

    Copy link
    Copy Markdown

    Deploying with  Cloudflare Workers  Cloudflare Workers

    The latest updates on your project. Learn more about integrating Git with Workers.

    Status Name Latest Commit Preview URL Updated (UTC)
    ✅ Deployment successful!
    View logs
    nyuchi-docs-mcp 677bfe4 Commit Preview URL

    Branch Preview URL
    Aug 12 2026, 04:37 AM

    @cloudflare-workers-and-pages

    cloudflare-workers-and-pages Bot commented Aug 12, 2026

    Copy link
    Copy Markdown

    Deploying with  Cloudflare Workers  Cloudflare Workers

    The latest updates on your project. Learn more about integrating Git with Workers.

    Status Name Latest Commit Preview URL Updated (UTC)
    ✅ Deployment successful!
    View logs
    shamwari-docs-ai 677bfe4 Commit Preview URL

    Branch Preview URL
    Aug 12 2026, 04:37 AM

    @cloudflare-workers-and-pages

    cloudflare-workers-and-pages Bot commented Aug 12, 2026

    Copy link
    Copy Markdown

    Deploying with  Cloudflare Workers  Cloudflare Workers

    The latest updates on your project. Learn more about integrating Git with Workers.

    Status Name Latest Commit Preview URL Updated (UTC)
    ✅ Deployment successful!
    View logs
    nyuchi-docs 677bfe4 Commit Preview URL

    Branch Preview URL
    Aug 12 2026, 04:38 AM

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants