releases.shpreview
Cloudflare/Workers SDK/@cloudflare/workers-utils@0.9.0

@cloudflare/workers-utils@0.9.0

$npx -y @buildinternet/releases show rel_993nOxnEtk2Rcopu2wQ4T

Minor Changes

  • #11803 1bd1488 Thanks @dario-piotrowicz! - Add a new subrequests limit to the limits field of the Wrangler configuration file

    Before only the cpu_ms limit was supported in the limits field of the Wrangler configuration file, now a subrequests limit can be specified as well which enables the user to limit the number of fetch requests that a Worker's invocation can make.

    Example:

    {
    	"$schema": "./node_modules/wrangler/config-schema.json",
    	"limits": {
    		"cpu_ms": 1000,
    		"subrequests": 150 // newly added field
    	}
    }

Fetched March 31, 2026