Skip to content

Releases: cloudflare/workers-sdk

[email protected]

19 Mar 09:19
9609b9f
Compare
Choose a tag to compare

Minor Changes

  • #8477 fd9dff8 Thanks @gabivlj! - wrangler deploy includes container configuration when uploading the script

Patch Changes

[email protected]

19 Mar 09:19
9609b9f
Compare
Choose a tag to compare

Patch Changes

  • #8357 ff26dc2 Thanks @dario-piotrowicz! - feat: add new unsafeInspectorProxy option to miniflare

    Add 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's inspectorPort and exposes each requested worker via a path comprised
    of the worker's name

    example:

    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 and worker-b,
    inspector clients can discover such workers via http://localhost:9229 and communicate with
    them respectively via ws://localhost:9229/worker-a and ws://localhost:9229/worker-b

    Note: this API is experimental, thus it's not being added to the public documentation and
    it's prefixed by unsafe

[email protected]

19 Mar 09:19
9609b9f
Compare
Choose a tag to compare

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]

19 Mar 09:19
9609b9f
Compare
Choose a tag to compare

@cloudflare/[email protected]

19 Mar 09:19
9609b9f
Compare
Choose a tag to compare

Patch Changes

@cloudflare/[email protected]

19 Mar 09:19
9609b9f
Compare
Choose a tag to compare

Minor Changes

  • #8514 4ad78ea Thanks @vicb! - Use the native implementation for connect and TLSSocket from node:tls

@cloudflare/[email protected]

19 Mar 09:19
9609b9f
Compare
Choose a tag to compare

Patch Changes

[email protected]

17 Mar 23:45
db01727
Compare
Choose a tag to compare

Minor Changes

  • #8337 1b2aa91 Thanks @Ltadrian! - Add mTLS configuration fields to Hyperdrive command

    hyperdrive create test123 ... --ca-certificate-uuid=CA_CERT_UUID --mtls-certificate-uuid=MTLS_CERT_UUID

Patch Changes

[email protected]

17 Mar 21:52
6b88c8e
Compare
Choose a tag to compare

Patch Changes

[email protected]

17 Mar 23:45
db01727
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • #8538 5ae180e Thanks @emily-shen! - chore: update dependencies of "miniflare" package

    The 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