Releases: cloudflare/workers-sdk
Release list
@cloudflare/vite-plugin@1.8.0
Minor Changes
-
#9773
45e97e8Thanks @jamesopstad! - Vite 7 is now supported and included as a peer dependency. We continue to also support Vite 6. -
#9753
67130b3Thanks @jamesopstad! - AllowoptimizeDeps.excludeto be specified for Worker environments. This enables other plugins to exclude dependencies from optimization that require access to virtual modules. Note that excluded dependencies must be ESM.
wrangler@4.22.0
Minor Changes
-
#7871
f2a8d4aThanks @dario-piotrowicz! - add support for assets bindings togetPlatformProxythis change makes sure that that
getPlatformProxy, when the input configuration
file contains an assets field, correctly returns the appropriate asset binding proxyexample:
// wrangler.jsonc { "name": "my-worker", "assets": { "directory": "./public/", "binding": "ASSETS", }, }
import { getPlatformProxy } from "wrangler"; const { env, dispose } = await getPlatformProxy(); const text = await (await env.ASSETS.fetch("http://0.0.0.0/file.txt")).text(); console.log(text); // logs the content of file.txt await dispose();
Patch Changes
-
#9717
d2f2f72Thanks @nikitassharma! - Containers should default to a "dev" instance type when no instance type is specified in the wrangler config -
#9620
1b967eaThanks @gpanders! - Simplify containers images list output format -
#9684
94a340eThanks @WillTaylorDev! - Select only successfully deployed deployments when tailing.
create-cloudflare@2.50.2
Patch Changes
-
#9742
9b85137Thanks @dependabot! - chore: update dependencies of "create-cloudflare" packageThe following dependency versions have been updated:
Dependency From To create-vue 3.16.4 3.17.0 -
#9743
8c71de1Thanks @dependabot! - chore: update dependencies of "create-cloudflare" packageThe following dependency versions have been updated:
Dependency From To create-vite 6.5.0 7.0.0
@cloudflare/vitest-pool-workers@0.8.47
wrangler@3.114.10
Patch Changes
-
#9713
3ff9592Thanks @penalosa! - Supportwrangler version uploadfor Python Workers -
#9453
0e2949cThanks @emily-shen! - Point to the right location for docs on telemetry -
#9594
0f2f75dThanks @vicb! - drop unusedWRANGLER_UNENV_RESOLVE_PATHSenv var -
#9631
e101451Thanks @CarmenPopoviciu! - Remove "Cloudchamber" from user facing error messages
wrangler@4.21.2
Patch Changes
-
#9731
75b75f3Thanks @gabivlj! - containers: Check for container scopes before running a container command to give a better error -
#9641
fdbc9f6Thanks @IRCody! - Update container builds to use a more robust method for detecting if the currently built image already exists. -
#9736
55c83a7Thanks @gabivlj! - containers: Do not check scopes if not defined -
#9667
406fba5Thanks @IRCody! - Fail earlier in the deploy process when deploying a container worker if docker is not detected.
wrangler@4.21.1
Patch Changes
-
#9626
9c938c2Thanks @penalosa! - Supportwrangler version uploadfor Python Workers -
#9718
fb83341Thanks @mhart! - fix error message when docker daemon is not running -
#9689
b137a6fThanks @emily-shen! - fix: correctly pass container engine config to miniflare -
#9722
29e911aThanks @emily-shen! - Update containers config schema.Deprecates
containers.configurationin favour of top level fields. Makes top levelimagerequired. Deprecatesinstancesanddurable_objects. Makesnameoptional. -
#9666
f3c5791Thanks @IRCody! - Add a reasonable default name for containers that have no defined name. -
Updated dependencies [
b137a6f]:- miniflare@4.20250617.4
miniflare@4.20250617.4
Patch Changes
- #9689
b137a6fThanks @emily-shen! - fix: correctly pass container engine config to miniflare