Version Packages#13859
Merged
Merged
Conversation
Contributor
Changeset ReviewSkipped (per guidelines)The following create-cloudflare dependency-update changesets are not validated per rule #5:
Validated Changesets
Issues FoundNone. ✅ All changesets look good |
Contributor
|
UnknownError: ProviderInitError |
Contributor
|
@workers-devprod Bonk workflow failed. Check the logs for details. View workflow run · To retry, trigger Bonk again. |
create-cloudflare
@cloudflare/kv-asset-handler
miniflare
@cloudflare/pages-shared
@cloudflare/unenv-preset
@cloudflare/vite-plugin
@cloudflare/vitest-pool-workers
@cloudflare/workers-editor-shared
@cloudflare/workers-utils
wrangler
commit: |
02f9fbc to
f03ad10
Compare
f03ad10 to
b5fe14e
Compare
petebacondarwin
approved these changes
May 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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
miniflare@4.20260508.0
Minor Changes
5d936c5Thanks @penalosa! - Supportworkerdautogates via theMINIFLARE_WORKERD_AUTOGATESenvironment variable.Patch Changes
#13866
4e44ce6Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
create-cloudflare@2.68.2
Patch Changes
#13873
a6914bdThanks @dependabot! - Update dependencies of "create-cloudflare"The following dependency versions have been updated:
#13874
012e949Thanks @dependabot! - Update dependencies of "create-cloudflare"The following dependency versions have been updated:
#13875
fb3a42bThanks @dependabot! - Update dependencies of "create-cloudflare"The following dependency versions have been updated:
#13876
7ec2a93Thanks @dependabot! - Update dependencies of "create-cloudflare"The following dependency versions have been updated:
#13877
e93ab6cThanks @dependabot! - Update dependencies of "create-cloudflare"The following dependency versions have been updated:
#13878
13abe2bThanks @dependabot! - Update dependencies of "create-cloudflare"The following dependency versions have been updated:
#13879
3e0dbd6Thanks @dependabot! - Update dependencies of "create-cloudflare"The following dependency versions have been updated:
@cloudflare/pages-shared@0.13.134
Patch Changes
4e44ce6,5d936c5]:@cloudflare/vite-plugin@1.36.4
Patch Changes
#13888
2af4ce0Thanks @jamesopstad! - Update Vite to v8.0.12This updates the bundled Vite module runner to include the bug fix in fix(module-runner): prevent partial-exports race on concurrent imports of in-flight invalidated re-export chains vitejs/vite#22369.
Updated dependencies [
4e44ce6,b0cee1d,d878e13,971dfe3,971dfe3,5d936c5]:@cloudflare/vitest-pool-workers@0.16.4
Patch Changes
4e44ce6,b0cee1d,d878e13,971dfe3,971dfe3,5d936c5]:wrangler@4.90.1
Patch Changes
#13866
4e44ce6Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13837
b0cee1dThanks @matingathani! - Fix beta/open-beta status message ignoringprintBanner: false— when a command setsprintBanner: (args) => !args.json, the status banner no longer appears in JSON output#13887
d878e13Thanks @apeacock1991! - Fixwrangler devhanging on shutdown when remote bindings are presentstartDev() registers dev hotkeys before authenticating the user. During interactive dev sessions, the auth callback re-registers hotkeys, which updates the local unregisterHotKeys variable to a new cleanup function. However, the unregisterHotKeys value returned to callers was captured as a direct reference to the initial registration, so it would call the stale cleanup function instead of the current one.
This has been fixed by returning a wrapper function () => unregisterHotKeys?.() instead of the variable directly. The wrapper evaluates unregisterHotKeys at call time, ensuring it always invokes the latest cleanup function even after re-registration.
#13867
971dfe3Thanks @petebacondarwin! - Fix race inRemoteProxySession.updateBindingsso it waits for the remote worker to finish reloading with the new bindings before resolvingPreviously,
updateBindingsresolved as soon as the config update event was dispatched, long before the remote worker had been re-uploaded and the local proxy worker had unpaused. Callers that issued requests immediately afterwards could see flaky failures — typically "WebSocket connection failed" for JSRPC bindings such as service bindings or dispatch namespaces — because the local proxy worker was still in its paused state during the reload window.updateBindingsnow waits for the nextreloadCompleteevent and for the local proxy worker's runtime-message queue to drain before returning, so callers can safely issue requests afterawait session.updateBindings(...). If the reload fails, the rejection fromupdateBindingscarries the underlying error.#13867
971dfe3Thanks @petebacondarwin! - Fix unhandledAbortErrorfromwrangler dev's remote tail WebSocket when the bundle rebuilds or the dev session shuts downThe remote-runtime tail-logs WebSocket (
#activeTailinRemoteRuntimeController) was constructed with the sameAbortSignalthatonBundleStartaborts to cancel in-flight preview-session operations. The abort destroyed the WebSocket's underlying upgrade request withAbortError, which had noerrorlistener attached and propagated as an unhandled exception. We now attach anerrorlistener at WebSocket construction that ignores errors (logging at debug level), matching the safeguards already present on theterminatepaths in#previewTokenandteardown().Updated dependencies [
4e44ce6,5d936c5]:@cloudflare/workers-shared@0.19.6
Patch Changes
#13855
dba84c2Thanks @courtney-sims! - Temporarily hardcode asset worker cohort to "ent" for latency testingDisables the
lookupCohortRPC call and cohort-based version routing in the outer entrypoint while keeping all the glue code (analytics, bindings, types) in place for re-enablement.