Merged
Conversation
create-cloudflare
@cloudflare/kv-asset-handler
miniflare
@cloudflare/pages-shared
@cloudflare/unenv-preset
@cloudflare/vite-plugin
@cloudflare/vitest-pool-workers
@cloudflare/workers-editor-shared
wrangler
commit: |
5f09175 to
951773f
Compare
6 tasks
a938ab5 to
1949a45
Compare
dario-piotrowicz
approved these changes
Aug 20, 2025
1949a45 to
10a968f
Compare
10a968f to
6356f2f
Compare
lrapoport-cf
approved these changes
Aug 21, 2025
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.20250816.1
Minor Changes
4728c68Thanks @penalosa! - Support unsafe dynamic worker loading bindingswrangler@4.32.0
Minor Changes
#10354
da40571Thanks @edmundhung! - Enable cross-process communication forwrangler devwith multiple config filesWorkers running in separate
wrangler devsessions can now communicate with each other regardless of whether you are running with single or multiple config files.Check out the Developing with multiple Workers guide to learn more about the different approaches and when to use each one.
#10012
4728c68Thanks @penalosa! - Support unsafe dynamic worker loading bindingsPatch Changes
#10245
d304055Thanks @edmundhung! - Migrate wrangler dev to use Miniflare dev registry implementationUpdated
wrangler devto use a shared dev registry implementation that now powers both the Cloudflare Vite plugin and Wrangler. This internal refactoring has no user-facing changes but consolidates registry logic for better consistency across tools.#10407
f534c0dThanks @emily-shen! - defaultcontainers.rollout_active_grace_periodto 0#10425
0a96e69Thanks @dario-piotrowicz! - Fix debugging logs not including headers for CF API requests and responsesFix the fact that
wrangler, when run with theWRANGLER_LOG=DEBUGandWRANGLER_LOG_SANITIZE=falseenvironment variables, displays{}instead of the actual headers for requests and responses for CF API fetches#10337
f9f7519Thanks @emily-shen! - containers:rollout_step_percentagenow also accepts an array of numbers. Previously it accepted a single number, and each rollout step would target the same percentage of instances. Now users can customise percentages for each step.rollout_step_percentagealso now defaults to[10,100](previously25), which should make rollouts progress slightly faster.You can also use
wrangler deploy --containers-rollout=immediateto override rollout settings in Wrangler configuration and update all instances in one step. Note this doesn't overriderollout_active_grace_periodif configured.Updated dependencies [
4728c68]:@cloudflare/pages-shared@0.13.65
Patch Changes
4728c68]:@cloudflare/vite-plugin@1.11.7
Patch Changes
718fffcThanks @jamesopstad! - Exclude Cloudflare built-ins from client dependency optimization.Some frameworks allow users to mix client and server code in the same file and then extract the server code.
As the dependency optimization may happen before the server code is extracted, we now exclude Cloudflare built-ins from client optimization.
d304055,f534c0d,da40571,0a96e69,f9f7519,4728c68]:@cloudflare/vitest-pool-workers@0.8.66
Patch Changes
d304055,f534c0d,da40571,0a96e69,f9f7519,4728c68]:@cloudflare/workers-shared@0.18.6
Patch Changes
#10402
8fd6dc0Thanks @danielrs! - Sanitize double-slashes in asset-worker relative redirects.Without sanitizing, some relative redirect patterns were being treated as external redirects.