🚧 Changelog
2.6.0
Features
- 🪣 Add support for R2 bucket bindings. Closes issue #276, thank you so much @CraigglesO for the massive PR.
- Add support for
navigator.userAgent. Closes issue #209, thanks @Electroid. - Return fixed time from
new Date()/Date.now(), unless the--actual-time/actualTime: trueoption is set, to match the behaviour the Workers runtime. Closes issue #225, thanks @ItalyPaleAle. - Add support for
(De)CompressionStream. Closes issue #206, thanks @Electroid. - Add an interactive REPL via the
--replflag. Any other flag can be passed too, and options will automatically be loaded fromwrangler.tomlfiles. Specifying a script is optional when--replis enabled. The REPL can also be started programmatically via theMiniflare#startREPL()method. See for more details. Thanks @threepointone for the idea over at cloudflare/wrangler2#1263.
Fixes
- Load service bindings from
servicesinstead ofexperimental_services, and usebindinginstead ofnamefor the binding name. Thanks @jrencz for the PR. issue #280. - Log warning instead of error when fetching
Request#cfobject fails. Closes issue #224, thanks @threepointone. - Increase the subrequest limit for
unboundworkers from 50 to 1000, and limit the number of calls to internal APIs such as KV/Durable Object to 1000. Closes issue #274, thanks @isaac-mcfadyen. - Fix logging of accessible hosts in Node.js 18
- Remove
namefromDurableObjectIds inDurableObjectStateto match the behaviour of the Workers runtime. Closes issue #219. - Allow failure WebSocket upgrade responses. Closes issue #174, thanks @jinjor.
- Correctly handle internationalised domain names in routes. Closes issue #186, thanks @dsod.
- Improve the error message when Durable Object bindings are missing a script to mention mounting. Closes issue #221, thanks @konsumer.
- Allow WebSockets to be closed without a status code. Closes issue #284, thanks @hansottowirtz.
- Allow Durable Object alarms to be scheduled less than 30 seconds in the future. Closes issue #290, thanks @wighawag and @CraigglesO for the PR.
- Fix
DurableObjectStorage#list()when alarms are scheduled. Closes issue #297, thanks @evanderkoogh and @CraigglesO for the PR.
2.5.1
⚠️ Security Update
- Upgrade
undicito5.5.1, addressing GHSA-pgw7-wx7w-2w33 - Upgrade
node-forgeto1.3.1, addressing GHSA-2r2c-g63r-vccr, GHSA-x4jg-mjrx-434g and GHSA-cfm4-qjh2-4765 - Upgrade
minimistto1.2.6, addressing GHSA-xvch-5gv4-984h
2.5.0
Features
- ⏰ Add support for Durable Object alarms. Thanks @CraigglesO for the PR.
- Add support for
URLPattern. Closes issue #199, thanks @Electroid and @tom-sherman for the PR. - Add support for the
Response.json()static method. Closes issue #272, thanks @Cherry. - Add support for the
startAfterDurable Objectlist()option. Closes issue #266, thanks @vlovich. - Add support for Jest 28 and custom
export conditions.
By default, the Miniflare Jest environment will use the
workercondition, followed bybrowser. Closes issues #249 and #255, thanks @awwong1 and @SupremeTechnopriest.
Fixes
- Fixed issue where
403 Forbiddenresponses were returned when a site behind Cloudflare was set as the upstream. Closes issue #237, thanks @james-maher for the PR. - Respect
env_pathoption inwrangler.tomlwhen using mounts or the Miniflare Jest environment. Closes issue #240, thanks @bkniffler. - Fix cases where BYOB readers didn't notice the end of the stream. Closes issue #192, thanks @vlovich for the PR.
- Wait for unawaited writes within a Durable Object transaction before attempting to commit. Closes issue #250, thanks @vlovich.
- Correctly bind
thisincryptoandcrypto.subtle. Closes issue #256, thanks @lmcarreiro and @awwong1 for the PR. - Bump
busboyto resolve a security issue. Closes issue #267, thanks @grempe and @Cherry for the PR. - Set incoming
Accept-Encodingheaders togzipand put actual client encodings inrequest.cf.clientAcceptEncodingto match the behaviour of the Workers runtime. Closes issue #180, thanks @evanderkoogh and @leader22 for the PR. - Remove restriction
on supported
TextDecoderencodings. Closes issue #212. - Make
headerson returnedfetchResponses immutable. Closes issue #242, thanks @nickreese. - Use lexicographic ordering for KV/Durable Object
list()s. Closes issue #235, thanks @vlovich. - Re-export
Request,RequestInfo,RequestInitandResponsefromminiflare. Closes issue #258, thanks @ajwootto. - Add
jest-environment-miniflare's missingdependencies. Thanks @BasixKOR for the PR.
2.4.0
Features
- Add support for
[text_blobs]. Closes issue #211, thanks @caass for the PR. - Add support for
[data_blobs]. Closes issue #231, thanks @threepointone for the PR. - Do not display the pretty error page when making requests with
curl. Closes issue #198, thanks @GregBrimble for the PR.
Fixes
- Pass correctly-typed value to
webcrypto.getRandomValues(). Closes issue #188, thanks @vlovich. - Fix
fetchwithContent-Length: 0header. Closes issue #193, thanks @orls for the PR. - Bind
thistowebcryptomethods, fixingcrypto.getRandomValues()andcrypto.subtle.generateKey(). Thanks @szkl for the PR.
2.3.0
Features
- Route
/cdn-cgi/mf/scheduledrequests based on mount routes. Closes issue #163, thanks @jed. - Add clear error if a Durable Object class is missing a
fetchhandler. Closes issue #164, thanks @aboodman. - Upgrade
undicito4.13.0
Fixes
- Fix
instanceofwhen subclassingError. Subclasses ofErrorwere previously treated asErrors themselves ininstanceofchecks. Closes issue #159, thanks @valeriangalliat. - Return
nullbodies whenfetchingResponses with a null status. Closes issue #165, thanks @lukaszczerpak for reporting this and @GregBrimble for the PR. - Clone
ArrayBufferbodies when constructingRequest/Responses. Closes issue #171, thanks @segator and @leader22. - Watch
index.jsby default intype = "webpack"projects - Throw
TypeErrors instead ofstrings onHTMLRewriterparser errors - Disable nested mounts via
Miniflare#getMount().setOptions()
2.2.0
Features
- Add support for the
HTMLRewriterElement#onEndTag(handler)method - Add support for the
html_rewriter_treats_esi_include_as_void_tagcompatibility flag - Make the error message when attempting to import Node.js built-in modules more helpful
Fixes
- Fix
instanceofchecks withnullvalues. Closes issues #152 and #154. Thanks @Cerberus for the PR, and @bduff9, @huw & @g45t345rt for reporting this. - Fix subdirectory watching on Linux. Closes issue #153, thanks @huw for reporting this.
- Throw a
TypeErrorinstead of astringwhen the parameter passed to aHTMLRewriterhandler is used outside the handler
2.1.0
Features
Allow multiple build watch paths to be set in
wrangler.tomlfiles. Use the[miniflare] build_watch_dirsoption. Note this gets merged with the regular[build] watch_diroption:[build]watch_dir = "src1"[miniflare]build_watch_dirs = ["src2", "src3"]WebSocket handshake headers are now included in responses from the HTTP server and WebSocket upgrade
fetches. Closes issue #151, thanks @jed.
Fixes
- Allow Miniflare to be installed with Yarn PnP. Closes issue #144, thanks @lookfirst, @merceyz, and @DJtheRedstoner.
- Use the actual body length for the
Content-Lengthheader in HTTP server responses, instead of the value provided in theResponseconstructor. Closes issue #148, thanks @lukaszczerpak. - Don't rewrite the
Hostheader to match the upstream URL. Closes issue #149, thanks @hansede. - Bump dependencies, fixing
npm auditwarnings. Thanks @leader22 for the PR. - Make
instanceofspec-compliant, ensuring checks likeObject instanceof Objectsucceed. This particular check was used by Lodash's_.isPlainObject()method, which is internally called by_.merge(), causing unexpected results. - Make the unimplemented
Response#typeproperty non-enumerable - Copy header guard when
clone()ingRequests, ensuringRequests with immutable headers still have immutable headers whenclone()ed - Fix race conditions in file-system watcher
2.0.0
Miniflare 2 has been completely redesigned from version 1 with 3 primary design goals:
- 📚 Modular: Miniflare 2 splits Workers components (KV, Durable Objects,
etc.) into separate packages (
@miniflare/kv,@miniflare/durable-objects, etc.) that you can import separately for testing. - ✨ Lightweight: Miniflare 1 included
122 third-party packages with a
total install size of
88MB. Miniflare 2 reduces this to 24 packages and6MBby leveraging features included with Node.js 16. - ✅ Accurate: Miniflare 2 more accurately replicates the quirks and thrown errors of the real Workers runtime, so you'll know before you deploy if things are going to break.
Check out the migration guide if you're upgrading from version 1.
Notable Changes
- ✳️ Node.js 16.7.0 is now the minimum required version
- 🤹 Added a custom Jest test environment, allowing you to run unit tests in the Miniflare sandbox, with isolated storage for each test
- 🔌 Added support for running multiple workers in the same Miniflare instance
- ⚡️ Added a live reload feature (
--live-reload) that automatically refreshes your browser when your worker reloads - 🚪 Added Durable Object input and output gates, and write coalescing
- 🛑 Added the
DurableObjectState#blockConcurrencyWhile(callback)method - 📅 Added support for compatibility dates and flags:
durable_object_fetch_requires_full_url,fetch_refuses_unknown_protocols,formdata_parser_supports_files - 📚 Added a proper CommonJS module loader
- 🗺 Automatically fetch the incoming
Request#cfobject from a trusted Cloudflare endpoint - 🎲 Added support for
crypto.randomUUID() - 🔐 Added support for the
NODE-ED25519algorithm - ✉️ Added support for sending/receiving binary WebSocket messages
Breaking Changes
Node.js 16.7.0 is now the minimum required version. You should use the latest Node.js version if possible, as Cloudflare Workers use a very up-to-date version of V8. Consider using a Node.js version manager such as https://volta.sh/ or https://github.com/nvm-sh/nvm.
Changed the storage format for Durable Objects and cached responses. If you're using file-system or Redis storage, you'll need to delete these directories/namespaces.
Changed the Durable Object ID format to include a hash of the object name. Durable Object IDs generated in Miniflare 1 cannot be used with Miniflare 2.
Correctly implement the Durable Object
script_nameoption. In Miniflare 1, this incorrectly expected a script path instead of a script name. This now relies on mounting the other worker. See 📌 Durable Objects for more details.Removed the non-standard
DurableObjectStub#storage()method. To access Durable Object storage outside a worker, use the newMiniflare#getDurableObjectStorage(id)method, passing aDurableObjectIdobtained from a stub. See 📌 Durable Objects for more details.Renamed the
--disable-cache/disableCache: trueoption to--no-cache/cache: falseRenamed the
--disable-updateroption to--no-update-checkWhen using the API,
wrangler.toml,package.jsonand.envare no longer automatically loaded from their default locations. To re-enable this behaviour, set these options totrue:const mf = new Miniflare({wranglerConfigPath: true,packagePath: true,envPath: true,});Replaced the
ConsoleLogclass with theLogclass from@miniflare/shared. You can construct this with aLogLevelto control how much information is logged to the console:import { Miniflare, Log, LogLevel } from "miniflare";const mf = new Miniflare({log: new Log(LogLevel.DEBUG),});Load WASM bindings from the standard
wasm_moduleswrangler.tomlkey instead ofminiflare.wasm_bindings.wrangler.toml
[miniflare]wasm_bindings = [{ name = "MODULE1", path="module1.wasm" },{ name = "MODULE2", path="module2.wasm" }]...should now be...
wrangler.toml
[wasm_modules]MODULE1 = "module1.wasm"MODULE2 = "module2.wasm"Renamed the
buildWatchPathoption tobuildWatchPaths. This is now an array of string paths to watch as opposed to a single string.Replaced the
Miniflare#reloadOptions()method with theMiniflare#reload()andMiniflare#setOptions({ ... })methods.reload()will reload options fromwrangler.toml(useful if not watching), andsetOptions()accepts the same options object as thenew Miniflareconstructor, applies those options, then reloads the worker.Replaced the
Miniflare#getCache()method theMiniflare#getCaches()method. This returns the globalcachesobject. See ✨ Cache .Miniflare#createServer()now always returns aPromisewhich you must await to get ahttp.Server/https.Serverinstance. You may want to check out the newMiniflare#startServer()method which automatically starts a server using the configuredhostandport.Redis support is no longer included by default. If you're persisting KV, Durable Objects or cached responses in Redis, you must install the
@miniflare/storage-redisoptional peer dependency.Replaced how Miniflare sanitises file paths for file-system storage so namespace separators (
/,\,:and|) now create new directories.The result of
Miniflare#dispatchScheduledwill no longer includeundefinedif a module scheduled handler doesn't return a value
Features and Fixes
Cache:
- Added support for
cf.cacheKey,cf.cacheTtlandcf.cacheTtlByStatusonRequest. Closes issue #37, thanks @cdloh. - Added the
CF-Cache-Status: HITheader to matchedResponses - Log warning when trying to use cache with
workers_dev = trueinwrangler.toml. Cache operations are a no-op onworkers.devsubdomains. - Throw errors when trying to cache Web Socket, non-
GET,206 Partial Content, orVary: *responses - Throw an error when trying to
opena cache with a name longer than1024characters
CLI:
- Separated command line options into sections
- Validate types of all command line options
Core:
Added support for running multiple workers in the same Miniflare instance. See 🔌 Multiple Workers for more details.
Added support for compatibility dates and flags, specifically the flags
durable_object_fetch_requires_full_url,fetch_refuses_unknown_protocols,formdata_parser_supports_filesare now supported. This feature is exposed under the--compat-dateand--compat-flagCLI options, in addition to the standard keys inwrangler.toml. Closes issue #48, thanks @PaganMuffin. See 📅 Compatibility Dates for more details.Added a proper CommonJS module loader. Workers built with Webpack will be more likely to work with Miniflare now. Closes issue #44, thanks @TimTinkers.
Don't crash on unhandled promise rejections when using the CLI. Instead, log them. Closes issue #115, thanks @togglydev.
Limit the number of subrequests to 50, as per the Workers runtime. Closes issue #117, thanks @leader22 for the suggestion.
To match the behaviour of the Workers runtime, some functionality, such as asynchronous I/O (
fetch, Cache API, KV), timeouts (setTimeout,setInterval), and generating cryptographically-secure random values (crypto.getRandomValues,crypto.subtle.generateKey), can now only be performed while handling a request.This behaviour can be disabled by setting the
--global-async-io/globalAsyncIO,--global-timers/globalTimersand--global-random/globalRandomoptions respectively, which may be useful for tests or libraries that need async I/O for setup during local development. Note the Miniflare Jest environment automatically enables these options.KV namespaces and caches returned from
Miniflare#getKVNamespace()andgetCaches()are unaffected by this change, so they can still be used in tests without setting any additional options.To match the behaviour of the Workers runtime, Miniflare now enforces recursion depth limits. Durable Object
fetches can recurse up to 16 times, and service bindings can recurse up to 32 times. This means if a Durable Object fetch triggers another Durable Object fetch, and so on 16 times, an error will be thrown.Incoming request headers are now immutable. Closes issue #36, thanks @grahamlyons.
Disabled dynamic WebAssembly compilation in the Miniflare sandbox
Fixed
instanceofon primitives such asObject,Array,Promise, etc. from outside the Miniflare sandbox. This makes it much easier to run Rust workers in Miniflare, aswasm-bindgenfrequently generates this code.Added a new
--verbose/verbose: trueoption that enables verbose logging with more debugging informationThrow a more helpful error with suggested fixes when Miniflare can't find your worker's script
Only rebuild parts of the sandbox that need to change when options are updated
Added a new reload event to
Miniflareinstances that is dispatched whenever the worker reloads:const mf = new Miniflare({ ... });mf.addEventListener("reload", (event) => {console.log("Worker reloaded!");});Added a new
Miniflare#getGlobalScope()method for getting the global scope of the Miniflare sandbox. This allows you to access and manipulate the Miniflare environment whilst your worker is running without reloading it. Closes issue #38, thanks @cdloh.Added a new
Miniflare#startScheduler()method that starts a CRON scheduler that dispatchesscheduledevents according to CRON expressions in optionsMiniflare-added
CF-*headers are now included in the HTML error responseUpdated build script to use ES module exports of dependencies where possible. Thanks @lukeed for the PR.
Bindings:
Added
--global KEY=VALUE/globals: { KEY: "value" }option for binding arbitrary values to the global scope. This behaves exactly like the--binding/bindings: { ... }option, but always binds to the global scope, even in modules mode.Added a new global variable
MINIFLAREto the Miniflare sandbox, which will always have the valuetruewhen your script is running within MiniflareMiniflare now stringifies all environment variables from
wrangler.toml. Closes issue #50, thanks @ozburo.Adds highly experimental support for service bindings. This is primarily meant for internal testing, and users outside the beta can't deploy workers using this feature yet, but feel free to play around with them locally and let us know what you think in the Cloudflare Workers Discord server.
To enable these, mount your service (so Miniflare knows where to find it) then add the binding. Note the bound service name must match the mounted name:
$ miniflare --mount auth=./auth --service AUTH_SERVICE=auth # or -S# wrangler.tomlexperimental_services = [# Note environment is currently ignored{ name = "AUTH_SERVICE", service = "auth", environment = "production" }][miniflare.mounts]auth = "./auth"const mf = new Miniflare({mounts: { auth: "./auth" },serviceBindings: { AUTH_SERVICE: "auth" },});...then to use the service binding:
export default {async fetch(request, env, ctx) {const res = await env.AUTH_SERVICE.fetch("...");// ...},};If
./auth/wrangler.tomlcontains its own service bindings, those services must also be mounted in the root worker (i.e. inwrangler.tomlnot./auth/wrangler.toml). Nested mounts are not supported.
Builds:
- When running your worker's build script, Miniflare will set the environment
variable
MINIFLARE=1. Closes issue #65, thanks @maraisr. - Added an alias,
-B, for the--build-commandoption - Multiple build watch paths can now be specified. If any of them change, your worker will rebuild and reload.
- Pass the
--envflag towrangler buildwhen--wrangler-envis set fortype = "webpack"/"rust"builds - Fixed an issue where workers would not rebuild if the build watch path started
with
./. Closes issue #53, thanks @janat08.
Standards:
- Added support for
crypto.randomUUID() - Added support for
structuredClone. Note thetransferoption is only supported on Node.js >= 17. - Added support for
queueMicrotask - Added support for the
NODE-ED25519algorithm tocrypto.subtle.sign()andcrypto.subtle.verify() - Added support for
AbortSignal.timeout() - Added support for
crypto.DigestStream - Added support for
scheduler.wait() - Added support for
FixedLengthStream. Closes issue #123, thanks @vlovich. - Throw an error when attempting to create a new
TextDecoderwith a non-UTF-8 encoding - Throw errors when attempting to use
FetchEvent/ScheduledEventmethods with incorrectly boundthis - Throw errors when attempting to call
respondWith()twice, or after thefetchhandler has finished executing synchronously. Closes issue #63, thanks @Kikobeats. - Added support for the
unhandledrejectionandrejectionhandledevents - Throw an error (with a suggested fix) when trying to access an
envbinding globally in modules mode - Throw errors when trying to use
addEventListener(),removeEventListener()anddispatchEvent()globals in modules mode - Split the
FetchError: No fetch handler responded and unable to proxy request to upstream?error into more specific errors with suggested fixes - Added the
non-standard
Headers#getAll()method. This can only be used with theSet-Cookieheader. - Switch to a
more spec-compliant
fetchimplementation, and getcrypto,EventTargetand Web Streams from Node.js. Closes issues #56 and #59, thanks @jasnell, @jonathannorris and @SupremeTechnopriest. - Added support for the
Response#encodeBodyproperty. If this is omitted or set toauto,Responses with aContent-Encodingheader that includesgzip,deflateorbrwill be automatically encoded. Closes issue #72, thanks @SupremeTechnopriest. - Return a non-
opaqueResponsecontaining headers when fetching with aredirectmode set tomanualin response to a redirect, closes issue #133, thanks @hansede, @vzaramel and @hnrqer. - Set the
redirectmode of incoming requests tomanual, matching the behaviour of the Workers runtime - Remove extra headers not sent by Cloudflare Workers with
fetchrequests. Closes issue #139, thanks @dfcowell. Request/Responsebodys are now byte streams, allowing them to be read with bring-your-own-buffer readers- Throw an error when attempting to construct a WebSocket response with a status
other than
101 - Throw an error when attempting to clone a WebSocket response
- Added support for the non-standard
ReadableStreamBYOBReader#readAtLeast(size, buffer)method - Include
Filein the Miniflare sandbox. Closes issue #66, thanks @tranzium.
Durable Objects:
- Added input and output gates for ensuring consistency without explicit transactions
- Added write coalescing for
put/deletewithout interleavingawaits for automatic atomic writes - Added the
DurableObjectState#blockConcurrencyWhile(callback)method. This prevents newfetchevents being delivered to your object whilst the callback runs. Closes issue #45, thanks @gmencz. - Added the
DurableObjectId#equals(id)method for comparing if 2 Durable Object IDs have the same hex-ID - Automatically resolve relative URLs passed to
DurableObjectStub#fetch(input, init?)againsthttps://fast-host. Closes issue #27, thanks @halzy. - Throw an error if the string passed to
DurableObjectNamespace#idFromString(hexId)is not 64 hex digits - Throw an error if the hex-ID passed to
DurableObjectNamespace#idFromString(hexId)is for a different Durable Object - Throw an error if the ID passed to
DurableObjectNamespace#get(id)is for a different Durable Object - Throw an error when keys are greater than
2KiBorundefined - Throw an error when values are greater than
128KiB - Throw an error when attempting to
get,putordeletemore than128keys, or when attempting to modify more than128keys in a transaction - Throw an error when attempting to
putanundefinedvalue - Throw an error when attempting to list keys with a negative
limit - Throw an error when attempting to perform an operation in a rolledback transaction or in a transaction that has already committed
- Throw an error when attempting to call
deleteAll()in a transaction - Throw an error when a Durable Object
fetchhandler doesn't return aResponse - Use the same V8 serialization as Cloudflare Workers to store values
- Fixed an issue where keys added in a transaction callback were not reported as deleted in the same transaction
- Fixed an issue where keys added in a transaction callback were not included in the list of keys in the same transaction
HTMLRewriter:
- Remove
Content-Lengthheader fromHTMLRewritertransformedResponses - Don't start transforming until transformed
Responsebody is needed - Throw an error when attempting to transform body streams containing non-ArrayBuffer/ArrayBufferView chunks
HTTP Server:
Added a live reload feature, that automatically refreshes your browser when your worker reloads. For this to work, pass the
--live-reloadoption, and return an HTML response containing a<body>tag with theContent-Typeset totext/html. See ⚡️ Live Reload for more details.addEventListener("fetch", (event) => {const body = `<!DOCTYPE html><html><body><p>Try update me!</p></body></html>`;const res = new Response(body, {headers: { "Content-Type": "text/html; charset=utf-8" },});event.respondWith(res);});Added
--open/-Ooption that automatically opens your browser once your worker is running. You can optionally specify a different URL to open with--open https://example.com. Closes issue #121, thanks @third774 for the suggestion.Automatically fetch the incoming
Request#cfobject from a trusted Cloudflare endpoint, so the values are the same as you'd get for real. Closes issue #61, thanks @aaronsdevera and @Electroid.Added a
metaProvideroption that allows you fetch metadata for an incomingRequest:const mf = new Miniflare({async metaProvider(req) {return {forwardedProto: req.headers["X-Forwarded-Proto"],realIp: req.headers["X-Forwarded-For"],cf: {// Could get these from a geo-IP databasecolo: "SFO",country: "US",// ...},};},});Split out the Node request to
Requestobject conversion logic into aconvertNodeRequest(req, meta?)function. You can import this from@miniflare/http-server.Only return a pretty-error page when the request
Acceptheader includestext/htmlAdded a new
Miniflare#startServer(options?)method that starts an HTTP server using the configuredportandhost.optionscan be ahttp.ServerOptionsorhttps.ServerOptionsobject. Closes issue #39, thanks @amlwwalkerInclude a default
Content-Typeheader oftext/plaininResponses. Closes issue #57, thanks @Rysertio.
Jest Environment:
- Added a custom Jest test environment, allowing you to run unit tests in the Miniflare sandbox, with isolated storage for each test. See 🤹 Jest Environment for more details.
KV:
- Throw an error when keys are empty,
.,..,undefined, or greater than512Bwhen UTF-8 encoded - Throw an error when values are greater than
25MiB - Throw an error when metadata is greater than
1KiB - Throw an error when the
cacheTtloption is less than60s - Throw an error when
expirationTtlis non-numeric, less than or equal 0, or less than60s - Throw an error when
expirationis non-numeric, less than or equal the current time, or less than60sin the future - Throw an error when the
limitpassed toKVNamespace#list()is non-numeric, less than or equal0, or greater than1000
Scheduler:
- Moved the
/.mf/scheduledendpoint for triggering scheduled events to/cdn-cgi/mf/scheduled. Closes issue #42, thanks @ObsidianMinor. - Switched the CRON validation and scheduling package from
node-crontocron-schedule. This improves error messages for invalid CRON expressions, and removes a transitive dependency onmoment-timezone, reducing the installation size by 5MB.
Workers Sites:
- Added support for the new
__STATIC_CONTENT_MANIFESTtext module allowing you to use Workers Sites in modules mode
Web Sockets:
- Added support for sending/receiving binary messages. Closes issue #67, thanks @NostalgiaRunner.
- Removed the
WebSocket#readyStateproperty. Closes issue #47, thanks @aboodman. - Wait for worker response before opening WebSocket in client, closes issue #88, thanks @TimTinkers.
httpandhttpsprotocols are now required for WebSocket upgrades viafetchas per the workers runtime- Throw an error when attempting to use a
WebSocketin aResponsethat has already been used - Throw an error when attempting to use a
WebSocketin aResponseafter callingaccept()on it - Throw an error when attempting to construct a
WebSocketusing theWebSocketconstructor - Throw an error when attempting to call
WebSocket#send()orWebSocket#close()without first callingaccept(). Closes issue #43, thanks @aboodman. - Throw an error when attempting to call
WebSocket#send()after callingclose() - Throw an error when attempting to call
WebSocket#close()on an already closed WebSocket - Throw an error when attempting to call
WebSocket#close()with an invalid close code - Make WebSocket event constructors more spec-compliant
1.4.1
Fixes
- Fixed linking of modules with cyclic imports, allowing new Rust workers to be run with Miniflare. Closes issue #41, thanks @nuvanti.
- Fixed handling of
ArrayBufferViews asResponsebodies
1.4.0
Features
- Added
EventandEventTargetto the sandbox. The global scope andWebSocketnow inherit fromEventTargetsoremoveEventListeneris now supported. Closes issue #18, thanks @jayphelps. - Added workers' uncompressed size to logs, closes issue #23, thanks @ItsWendell
- Switch to lighter dependencies, thanks @lukeed. There's still lots of work to do here for the next major release.
Fixes
- Require the
GETmethod for WebSocket upgrades, closes issue #25, thanks @ItsWendell - Added
WebSocketto the sandbox, closes issue #30, thanks @ItsWendell. Note you still need to useWebSocketPairandfetchto set up WebSocket connections. See ✉️ WebSockets for more details. - Fixed caching with
URLrequest keys, closes issue #33, thanks @TimTinkers - Disable the watcher whilst rebuilding, closes issue #34, thanks @TimTinkers
1.3.3
Features
- Added an option to disable default and named caches. When disabled, the caches will still be available in the sandbox, they just won't cache anything. Thanks @frandiox for the suggestion. See ✨ Cache for more details.
- Added the corresponding
wrangler.tomlkey for the--disable-updaterflag:miniflare.disable_updater
Fixes
- Fixed the
package.jsonfile path the update checker checked against
1.3.2
Features
- Responses are now streamed when using the built-in HTTP(S) server
- Return values of Durable Object transaction closures are now propagated as the
return value of the
transactioncall
Fixes
- Upgraded
html-rewriter-wasmto version0.3.2, fixingasynchandler support, closeshtml-rewriter-wasmissue #1
1.3.1
Fixes
- Upgraded
html-rewriter-wasmto version0.3.1, fixing the return type ofElement.attributes
1.3.0
Features
- Switched to a
lol-html-based WebAssembly implementation ofHTMLRewriterfor a more accurate simulation of the real Workers environment. See 📄 HTMLRewriter for more details. - Added HTTPS support for local development, thanks @RichiCoder1 for the suggestion (#12). See 💻 Using the CLI and 🧰 Using the API for more details.
- When using the CLI, the
--watchflag is now assumed if--build-watch-pathis set, thanks @evanderkoogh for the PR (#8) - Added source maps to
CommonJSmodule transformation
Fixes
- Switched to real values for the
cfproperty, thanks @chase for the PR (#11) - Upgraded the TOML parser to support dotted keys, thanks @leader22 for the PR (#13)
- Added
CryptoKeyto the sandbox, thanks @mosch for the PR (#14)
1.2.0
Features
- Added Redis persistence support for 📦 KV, ✨ Cache and 📌 Durable Objects
- Added support for loading scripts from
package.json, closes issue #7. See 💻 Using the CLI and ⚡️ Developing with esbuild for more details. - Added
FormDatato the sandbox, closes issue #6 - Added an automatic update checker. See 💻 Using the CLI for more details.
- 📚 Modules mode is now always enabled when specifying 📌 Durable Objects bindings
Fixes
- Fixed Windows support, closes issue #10
- Fixed issue where scripts were not reloaded correctly when editing script path
in
wrangler.toml. Scripts are now always reloaded on options change.Miniflare.reloadScript()is now deprecated. You should useMiniflare.reloadOptions()instead.
1.1.0
Features
- Added support for namespaced caches with
caches.open. See ✨ Cache for more details.
1.0.1
Fixes
- Fixed
/usr/bin/env: 'node --experimental-vm-modules': No such file or directoryerror when running the CLI in Linux. See 💻 Using the CLI for more details.
1.0.0
Breaking Changes
The first and only argument to the
Miniflareconstructor is now an object. Scripts should be specified via thescriptoption for strings and thescriptPathoption for files:// Previous versionimport vm from "vm";import { Miniflare } from "miniflare";const mf1 = new Miniflare(new vm.Script(`addEventListener("fetch", (event) => { ... })`),{ kvPersist: true });const mf2 = new Miniflare("script.js", { kvPersist: true });// New versionimport { Miniflare } from "miniflare";const mf1 = new Miniflare({script: `addEventListener("fetch", (event) => { ... })`,kvPersist: true,});const mf2 = new Miniflare({scriptPath: "script.js",kvPersist: true,});The
Miniflare.getNamespacemethod has been renamed toMiniflare.getKVNamespaceLogged errors will now throw a
MiniflareErrorif no log is providedWhen using file system KV persistence, key names are now sanitised to replace special characters such as
:,/, and\. Reading keys containing these characters may now returnnullif a value was stored in the previous version.
Features
- Added support for 📚 Modules (requires
--experimental-vm-modulesflag) - Added support for 📌 Durable Objects
- Added support for ✉️ Web Sockets (client and server)
- Added support for 🛠 Builds (custom
builds and
webpack/rustWrangler builds) - Added support for ⚙️ WebAssembly
- Added support for 📄 HTMLRewriter
- Made CLI
scriptparameter optional, it can now be inferred in some cases fromwrangler.toml - Added
hostoption (--host/-Hflag) for restricting hosts the HTTP server listens on - Added
Miniflare.disposemethod for cleaning up file watcher - Added
CF-*headers andcfobject to HTTP server requests - Added
cronproperty to ⏰ Scheduled Events - Added manual triggering for
⏰ Scheduled Events via
/.mf/scheduledHTTP endpoint - Added pretty error page powered by Youch
- Added many more tests
Fixes
- Fixed error if options object (containing
typeandcacheTtlproperties) passed as second parameter to KVgetmethod, closes issue #3 - Fixed error if
ArrayBufferpassed asdatatocrypto.subtle.digest("md5", data) - Fixed handling of
ignoreMethodoption forCachematchanddelete - Disabled edge caching when using Workers Sites, files are now always loaded from disk
- Provided
SetandWeakSetfrom Miniflare's realm to sandbox, removingPromise, so(async () => {})() instanceof Promiseevaluates totrue
0.1.1
Fixes
- Depend on
@mrbbot/node-fetchfrom npm instead of GitHub, closes issue #2
0.1.0
Initial Release
Features
- Added support for 📨 Fetch Events
- Added support for ⏰ Scheduled Events
- Added support for 🔑 Variables and Secrets
- Added support for 📦 KV
- Added support for ✨ Cache
- Added support for 🌐 Workers Sites
- Added support for 🗺 Source Maps