Releases: cloudflare/workers-sdk
[email protected]
Minor Changes
- #8477
fd9dff8
Thanks @gabivlj! - wrangler deploy includes container configuration when uploading the script
Patch Changes
-
#8220
14680b9
Thanks @IRCody! - Fix a bug in cloudchamber build where it would still attempt to push an image if the build failed. -
#8186
05973bb
Thanks @IRCody! - Add cloudchamber images {list,delete} commands to list and delete images stored in cloudchamber managed registry. -
Updated dependencies [
ff26dc2
,4ad78ea
]:- [email protected]
- @cloudflare/[email protected]
[email protected]
Patch Changes
-
#8357
ff26dc2
Thanks @dario-piotrowicz! - feat: add newunsafeInspectorProxy
option to miniflareAdd a new
unsafeInspectorProxy
option to the miniflare worker options, if
at least one worker has the option set then miniflare will establish a proxy
between itself and workerd for the v8 inspector APIs which exposes only the
requested workers to inspector clients. The inspector proxy communicates through
miniflare'sinspectorPort
and exposes each requested worker via a path comprised
of the worker's nameexample:
import { Miniflare } from "miniflare"; const mf = new Miniflare({ // the inspector proxy will be accessible through port 9229 inspectorPort: 9229, workers: [ { name: "worker-a", scriptPath: "./worker-a.js", // enable the inspector proxy for worker-a unsafeInspectorProxy: true, }, { name: "worker-b", scriptPath: "./worker-b.js", // worker-b is not going to be proxied }, { name: "worker-c", scriptPath: "./worker-c.js", // enable the inspector proxy for worker-c unsafeInspectorProxy: true, }, ], });
In the above example an inspector proxy gets set up which exposes
worker-a
andworker-b
,
inspector clients can discover such workers viahttp://localhost:9229
and communicate with
them respectively viaws://localhost:9229/worker-a
andws://localhost:9229/worker-b
Note: this API is experimental, thus it's not being added to the public documentation and
it's prefixed byunsafe
[email protected]
Patch Changes
-
#8379
2b37abe
Thanks @emily-shen! - Graduate Workers + Assets hello world templates from experimental status -
#8541
cfa525d
Thanks @GregBrimble! - fix: Fixes the Cloudflare logo in the Vite React starter to support both dark and light mode
@cloudflare/[email protected]
@cloudflare/[email protected]
Patch Changes
-
#8505
03435cc
Thanks @jamesopstad! - Support Wrangler v4 as peer dependency. -
#8523
c7f86cb
Thanks @dario-piotrowicz! - add validation for the Wrangler configmain
field -
#8515
3d69e52
Thanks @jamesopstad! - Settarget
inoptimizeDeps.esbuildOptions
toes2022
. This fixes a bug where the target for prebundled dependencies did not match the build target. -
Updated dependencies [
14680b9
,fd9dff8
,ff26dc2
,05973bb
,4ad78ea
]:- [email protected]
- [email protected]
- @cloudflare/[email protected]
@cloudflare/[email protected]
@cloudflare/[email protected]
Patch Changes
- Updated dependencies [
ff26dc2
]:
[email protected]
Minor Changes
-
#8337
1b2aa91
Thanks @Ltadrian! - Add mTLS configuration fields to Hyperdrive commandhyperdrive create test123 ... --ca-certificate-uuid=CA_CERT_UUID --mtls-certificate-uuid=MTLS_CERT_UUID
Patch Changes
-
#8401
b8fd1b1
Thanks @petebacondarwin! - Supportno_bundle
config in Pages for bothdev
anddeploy
.This was already supported via a command line arg (
--no-bundle
). -
#8472
4978e5b
Thanks @edmundhung! - fix: throw explicit error for unknown mimetype duringwrangler check startup
-
#8478
931b53d
Thanks @penalosa! - Addwrangler types
support for importable env andprocess.env
-
#8503
edf169d
Thanks @GregBrimble! - Fix Workers Assets metafiles (_headers
and_redirects
) resolution when running Wrangler from a different directory
[email protected]
Patch Changes
-
#8453
f90a669
Thanks @workers-devprod! - trigger dummy v3 maintenance release for testing -
#8500
80bbee3
Thanks @workers-devprod! - Supportno_bundle
config in Pages for bothdev
anddeploy
.This was already supported via a command line arg (
--no-bundle
). -
#8521
5cd32b1
Thanks @emily-shen! - fix: throw explicit error for unknown mimetype duringwrangler check startup
-
#8504
0192aae
Thanks @workers-devprod! - Fix Workers Assets metafiles (_headers
and_redirects
) resolution when running Wrangler from a different directory -
Updated dependencies [
f90a669
]:
[email protected]
Minor Changes
- #8445
74b0c73
Thanks @lambrospetrou! - D1 local developer experience supports sessions API bookmarks
Patch Changes
-
#8538
5ae180e
Thanks @emily-shen! - chore: update dependencies of "miniflare" packageThe following dependency versions have been updated:
Dependency From To workerd 1.20250310.0 1.20250317.0 @cloudflare/workers-types ^4.20250310.0 ^4.20250317.0