github cloudflare/workers-sdk miniflare@3.20240129.0

latest releases: wrangler@3.63.1, @cloudflare/vitest-pool-workers@0.4.9, wrangler@3.63.0...
5 months ago

Minor Changes

  • #4873 1e424ff2 Thanks @dom96! - feature: implemented basic Python support

    Here is an example showing how to construct a MiniFlare instance with a Python module:

    const mf = new Miniflare({
    	modules: [
    		{
    			type: "PythonModule",
    			path: "index",
    			contents:
    				"from js import Response;\ndef fetch(request):\n  return Response.new('hello')",
    		},
    	],
    	compatibilityFlags: ["experimental"],
    });

Patch Changes

Don't miss a new workers-sdk release

NewReleases is sending notifications on new releases.