Skip to content

Version Packages - #14898

Merged
NuroDev merged 1 commit into
mainfrom
changeset-release/main
Jul 30, 2026
Merged

Version Packages#14898
NuroDev merged 1 commit into
mainfrom
changeset-release/main

Conversation

@workers-devprod

@workers-devprod workers-devprod commented Jul 28, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@cloudflare/build-output-utils@0.1.0

Minor Changes

Patch Changes

  • Updated dependencies [b21eac2]:
    • @cloudflare/config@0.4.0

@cloudflare/config@0.4.0

Minor Changes

miniflare@4.20260730.0

Minor Changes

  • #14685 01d7020 Thanks @edmundhung! - Add JSON output to /cdn-cgi/handler/email

    The /cdn-cgi/handler/email endpoint now accepts ?format=json to return the email handler result as JSON, including its outcome, rejection reason, forwarded messages, and replies. Requests without format=json still return the existing text outcome for backward compatibility.

Patch Changes

  • #14929 48f0c6c Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    @cloudflare/workers-types ^5.20260722.1 ^5.20260730.1
    workerd 1.20260722.1 1.20260730.1
  • #14810 d7f38c3 Thanks @allocsys! - Fix the local Images binding transform (env.IMAGES.input(...).transform(...)) ignoring the fit, gravity, and background options. Previously, local dev always letterboxed transformed images with black bars regardless of the options passed in. Local dev now respects fit, gravity, and background, matching production Images binding behavior.

  • #14850 5c25cfe Thanks @exKAZUu! - Disable the keep-alive timeout on the loopback server

    The loopback server (which serves custom service bindings, @cloudflare/vite-plugin's module transport, and other workerd → Node callbacks) used Node's default server.keepAliveTimeout of 5 seconds. workerd pools and reuses connections to the loopback server, so Node closing an idle pooled socket raced with workerd sending the next request on it, making that request fail with Network connection lost. The failure is probabilistic and load-dependent; under @cloudflare/vite-plugin with a large SSR module graph and a cold optimizer cache (thousands of fetchModule calls with multi-second idle gaps between bursts), it broke most dev sessions. Disable the idle keep-alive timeout on the loopback server, mirroring the undici pools used for dispatch in the opposite direction.

  • #14914 1f61001 Thanks @nickpatt! - Capture Workflows invocations in local observability

    When local observability is enabled, the Workflows engine service is now attached to the trace collector (like every user worker), so workflow runs show up in the Local Explorer's Observability view attributed to the workflow. Previously the engine ran outside the per-user-worker tail wiring, so workflow invocations left no traces, spans, or logs in the local store.

@cloudflare/pages-functions@0.1.0

Minor Changes

  • #14785 5e6556a Thanks @dario-piotrowicz! - Publish helpers for compiling Pages Functions directories into Workers bundle

    Provides both a programmatic API and a CLI (pages-functions build) for converting a Cloudflare Pages functions/ directory into a Cloudflare Workers bundle:

    npx @cloudflare/pages-functions build ./functions --outdir ./dist

    The package compiles the Worker and its auxiliary modules, but does not deploy them or generate deployment configuration. Consumers must provide the appropriate Wrangler configuration, including the selected fallback service binding (ASSETS by default) when applicable.

  • #14928 f05a0de Thanks @dario-piotrowicz! - Improve asset directory error messages in Pages Functions builds

    Previously, when an imported asset directory was invalid, a single error message was shown: '<path>' does not exist or is not a directory. This has been split into two distinct, actionable messages:

    • '<path>' does not exist. Please create the directory or check the path and try again.
    • '<path>' is not a directory. Please provide a path to a valid directory.

@cloudflare/vite-plugin@1.49.0

Minor Changes

  • #14905 b21eac2 Thanks @jamesopstad! - The experimental build output directory now includes the Worker's configuration at .cloudflare/output/v0/workers/default/config.json instead of .cloudflare/output/v0/workers/<worker-name>/worker.config.json

Patch Changes

@cloudflare/workers-utils@0.30.0

Minor Changes

  • #14785 5e6556a Thanks @dario-piotrowicz! - Add toUrlPath and UrlPath exports

    toUrlPath(filePath) converts a file-system path into a URL-safe path by replacing backslashes with forward slashes and rejecting Windows drive-letter prefixes (e.g. C:). UrlPath is the branded string type it returns, letting callers prove at the type level that a string has been normalized for use in URLs.

wrangler@4.116.0

Minor Changes

  • #14907 beec0fb Thanks @NuroDev! - Avoid Worker and workers.dev naming prompts in agent-driven deploys

    Wrangler now derives the Worker name from the project and automatically registers the same project-derived workers.dev account subdomain on a first deploy when running in a detected agent environment. The deploy output explains how to change both names.

  • #14905 b21eac2 Thanks @jamesopstad! - The experimental build output directory now includes the Worker's configuration at .cloudflare/output/v0/workers/default/config.json instead of .cloudflare/output/v0/workers/<worker-name>/worker.config.json

  • #14893 bb09f1b Thanks @apeacock1991! - Graduate wrangler check startup from alpha and show bundle size and a local timing summary

    The command no longer prints an alpha warning. It now reports its local profile window, sampled active, garbage collection, and idle time alongside the raw and compressed bundle sizes. The existing measurement warning continues to distinguish these local measurements from startup time measured on Cloudflare.

  • #14685 01d7020 Thanks @edmundhung! - Add support for dispatching email handlers with createTestHarness

    You can now call server.getWorker().email({ from, to, raw }) to dispatch directly to a Worker's email() handler and inspect its outcome, rejection reason, forwarded messages, and replies.

    const result = await server.getWorker().email({
      from: "sender@example.com",
      to: "inbox@example.com",
      raw: [
        "From: Sender <sender@example.com>",
        "To: Inbox <inbox@example.com>",
        "Message-ID: <test@example.com>",
        "Subject: Test email",
        "",
        "Hello from the test harness",
      ].join("\r\n"),
    });
    
    expect(result).toMatchObject({
      outcome: "ok",
      forwards: [{ recipient: "archive@example.com" }],
      replies: [
        {
          sender: "inbox@example.com",
          raw: expect.stringContaining("Thanks for your email"),
        },
      ],
    });

Patch Changes

  • #14929 48f0c6c Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    @cloudflare/workers-types ^5.20260722.1 ^5.20260730.1
    workerd 1.20260722.1 1.20260730.1
  • #14838 8049ca4 Thanks @TheSaiEaranti! - Fix ctrl+c not being able to interrupt wrangler while waiting for Cloudflare Access authorization

    When a domain is behind Cloudflare Access (for example during remote bindings startup), wrangler runs cloudflared access login, which only returns once the user completes the authorization flow in the browser. This was invoked synchronously, blocking Node's event loop, so wrangler could not react to ctrl+c (or anything else) until the authorization completed — abandoning the browser flow left a hung wrangler process that had to be killed externally. cloudflared is now spawned asynchronously, keeping wrangler responsive while it waits. The remote runtime passes its abort signal through to the spawn, so tearing down the session kills a still-pending cloudflared immediately, with process exit as a last-resort cleanup.

  • #14871 1394867 Thanks @nickpatt! - Include the local observability query endpoint in the agent-facing Local Explorer hint

    The hint wrangler dev prints for AI-agent sessions now lists POST /cdn-cgi/explorer/api/local/observability/query, so agents can discover the read-only SQL endpoint for captured request traces and console logs (the spans and logs tables) alongside the existing binding and storage routes.

  • #14918 cc54478 Thanks @nickpatt! - Improve the agent-facing Local Explorer hint for the observability query endpoint

    When a wrangler dev session is detected as running inside an AI agent, the hint for POST /local/observability/query now explains that the endpoint takes a read-only SQL query (SELECT/WITH only) over the captured spans and logs tables, notes that attributes is JSON (read via json(attributes)), and includes a copy-pasteable curl example. The full OpenAPI schema is demoted to a last-resort footer so agents reach for the small, actionable example first instead of fetching the large schema.

  • #14897 e31ab0f Thanks @ericclemmons! - Fix wrangler triggers deploy to use Vite-generated redirected configuration

    The command now reads .wrangler/deploy/config.json, matching wrangler deploy and wrangler versions upload, so generated Worker names and trigger settings are applied.

  • Updated dependencies [01d7020, 48f0c6c, d7f38c3, 5c25cfe, 1f61001]:

    • miniflare@4.20260730.0

@cloudflare/autoconfig@0.2.2

Patch Changes

  • Updated dependencies [5e6556a]:
    • @cloudflare/workers-utils@0.30.0
    • @cloudflare/cli-shared-helpers@0.1.18

@cloudflare/cli-shared-helpers@0.1.18

Patch Changes

  • Updated dependencies [5e6556a]:
    • @cloudflare/workers-utils@0.30.0

create-cloudflare@2.70.16

Patch Changes

  • #14908 301d6be Thanks @dependabot! - Update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    create-next-app 16.2.11 16.2.12
  • #14909 62dd693 Thanks @dependabot! - Update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    sv 0.16.5 0.16.6
  • #14910 6a03ffa Thanks @dependabot! - Update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    create-vike 0.0.668 0.0.670
  • #14911 e09da32 Thanks @dependabot! - Update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    create-astro 5.2.2 5.2.3
  • #14930 b89c2ae Thanks @dependabot! - Update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    create-vike 0.0.670 0.0.671
  • #14932 f820419 Thanks @dependabot! - Update dependencies of "create-cloudflare"

    The following dependency versions have been updated:

    Dependency From To
    @angular/create 22.0.8 22.0.9

@cloudflare/deploy-helpers@0.6.3

Patch Changes

@cloudflare/pages-shared@0.13.162

Patch Changes

@cloudflare/vitest-pool-workers@0.19.1

Patch Changes

@cloudflare/workers-auth@0.5.4

Patch Changes

  • #14838 8049ca4 Thanks @TheSaiEaranti! - Fix ctrl+c not being able to interrupt wrangler while waiting for Cloudflare Access authorization

    When a domain is behind Cloudflare Access (for example during remote bindings startup), wrangler runs cloudflared access login, which only returns once the user completes the authorization flow in the browser. This was invoked synchronously, blocking Node's event loop, so wrangler could not react to ctrl+c (or anything else) until the authorization completed — abandoning the browser flow left a hung wrangler process that had to be killed externally. cloudflared is now spawned asynchronously, keeping wrangler responsive while it waits. The remote runtime passes its abort signal through to the spawn, so tearing down the session kills a still-pending cloudflared immediately, with process exit as a last-resort cleanup.

  • Updated dependencies [5e6556a]:

    • @cloudflare/workers-utils@0.30.0

@cloudflare/remote-bindings@0.0.4

Patch Changes

  • Updated dependencies [01d7020, 48f0c6c, 8049ca4, d7f38c3, 5c25cfe, 5e6556a, 1f61001]:
    • miniflare@4.20260730.0
    • @cloudflare/workers-auth@0.5.4
    • @cloudflare/workers-utils@0.30.0
    • @cloudflare/deploy-helpers@0.6.3
    • @cloudflare/cli-shared-helpers@0.1.18

@cloudflare/runtime-types@0.0.7

Patch Changes

@devin-ai-integration devin-ai-integration 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.

✅ Devin Review: No Issues Found

Devin Review analyzed this PR and found no bugs or issues to report.

Open in Devin Review

@github-actions

github-actions Bot commented Jul 28, 2026

Copy link
Copy Markdown
Contributor

⚠️ Issues found

  • .changeset/poor-trams-tickle.md: This changeset describes a change to an experimental feature but does not include a note on how users can opt in. Per the changeset guidelines, changesets for experimental features must explain how users can enable or access the feature.

  • .changeset/polite-bags-study.md: The description is a single sentence and lacks a body explaining the reason for the change or its user-facing impact. Please add a paragraph or two explaining why the build output utils are being moved to a new package and what users of @cloudflare/build-output-utils or @cloudflare/config should expect.

@pkg-pr-new

pkg-pr-new Bot commented Jul 28, 2026

Copy link
Copy Markdown
@cloudflare/autoconfig

npm i https://pkg.pr.new/@cloudflare/autoconfig@14898

@cloudflare/build-output-utils

npm i https://pkg.pr.new/@cloudflare/build-output-utils@14898

@cloudflare/config

npm i https://pkg.pr.new/@cloudflare/config@14898

create-cloudflare

npm i https://pkg.pr.new/create-cloudflare@14898

@cloudflare/deploy-helpers

npm i https://pkg.pr.new/@cloudflare/deploy-helpers@14898

@cloudflare/kv-asset-handler

npm i https://pkg.pr.new/@cloudflare/kv-asset-handler@14898

miniflare

npm i https://pkg.pr.new/miniflare@14898

@cloudflare/pages-functions

npm i https://pkg.pr.new/@cloudflare/pages-functions@14898

@cloudflare/pages-shared

npm i https://pkg.pr.new/@cloudflare/pages-shared@14898

@cloudflare/unenv-preset

npm i https://pkg.pr.new/@cloudflare/unenv-preset@14898

@cloudflare/vite-plugin

npm i https://pkg.pr.new/@cloudflare/vite-plugin@14898

@cloudflare/vitest-pool-workers

npm i https://pkg.pr.new/@cloudflare/vitest-pool-workers@14898

@cloudflare/workers-auth

npm i https://pkg.pr.new/@cloudflare/workers-auth@14898

@cloudflare/workers-editor-shared

npm i https://pkg.pr.new/@cloudflare/workers-editor-shared@14898

@cloudflare/workers-utils

npm i https://pkg.pr.new/@cloudflare/workers-utils@14898

wrangler

npm i https://pkg.pr.new/wrangler@14898

commit: f0a41ff

@workers-devprod
workers-devprod force-pushed the changeset-release/main branch 15 times, most recently from dc7113b to eaa6d3a Compare July 30, 2026 11:20
devin-ai-integration[bot]

This comment was marked as resolved.

@workers-devprod
workers-devprod force-pushed the changeset-release/main branch 4 times, most recently from 30d2ffe to 555a60c Compare July 30, 2026 13:11
@workers-devprod
workers-devprod force-pushed the changeset-release/main branch from 555a60c to f0a41ff Compare July 30, 2026 13:40
@NuroDev
NuroDev enabled auto-merge (squash) July 30, 2026 15:25
@NuroDev
NuroDev merged commit 96fd16f into main Jul 30, 2026
138 of 149 checks passed
@NuroDev
NuroDev deleted the changeset-release/main branch July 30, 2026 16:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants