|
7 | 7 | - Fixed linking of modules with cyclic imports, allowing |
8 | 8 | [new Rust workers](https://blog.cloudflare.com/workers-rust-sdk/) to be run |
9 | 9 | with Miniflare. Closes |
10 | | - [issue #41](https://github.com/mrbbot/miniflare/issues/41), thanks |
| 10 | + [issue #41](https://github.com/cloudflare/miniflare/issues/41), thanks |
11 | 11 | [@nuvanti](https://github.com/nuvanti). |
12 | 12 | - Fixed handling of `ArrayBufferView`s as `Response` bodies |
13 | 13 |
|
|
17 | 17 |
|
18 | 18 | - Added `Event` and `EventTarget` to the sandbox. The global scope and |
19 | 19 | `WebSocket` now inherit from `EventTarget` so `removeEventListener` is now |
20 | | - supported. Closes [issue #18](https://github.com/mrbbot/miniflare/issues/18), |
| 20 | + supported. Closes [issue #18](https://github.com/cloudflare/miniflare/issues/18), |
21 | 21 | thanks [@jayphelps](https://github.com/jayphelps). |
22 | 22 | - Added workers' uncompressed size to logs, closes |
23 | | - [issue #23](https://github.com/mrbbot/miniflare/issues/23), thanks |
| 23 | + [issue #23](https://github.com/cloudflare/miniflare/issues/23), thanks |
24 | 24 | [@ItsWendell](https://github.com/ItsWendell) |
25 | 25 | - Switch to lighter dependencies, thanks [@lukeed](https://github.com/lukeed). |
26 | 26 | There's still lots of work to do here for the next major release. |
27 | 27 |
|
28 | 28 | ### Fixes |
29 | 29 |
|
30 | 30 | - Require the `GET` method for WebSocket upgrades, closes |
31 | | - [issue #25](https://github.com/mrbbot/miniflare/issues/25), thanks |
| 31 | + [issue #25](https://github.com/cloudflare/miniflare/issues/25), thanks |
32 | 32 | [@ItsWendell](https://github.com/ItsWendell) |
33 | 33 | - Added `WebSocket` to the sandbox, closes |
34 | | - [issue #30](https://github.com/mrbbot/miniflare/issues/30), thanks |
| 34 | + [issue #30](https://github.com/cloudflare/miniflare/issues/30), thanks |
35 | 35 | [@ItsWendell](https://github.com/ItsWendell). Note you still need to use |
36 | 36 | `WebSocketPair` and `fetch` to set up WebSocket connections. See |
37 | 37 | [✉️ WebSockets](https://miniflare.dev/web-sockets.html) for more details. |
38 | 38 | - Fixed caching with `URL` request keys, closes |
39 | | - [issue #33](https://github.com/mrbbot/miniflare/issues/33), thanks |
| 39 | + [issue #33](https://github.com/cloudflare/miniflare/issues/33), thanks |
40 | 40 | [@TimTinkers](https://github.com/TimTinkers) |
41 | 41 | - Disable the watcher whilst rebuilding, closes |
42 | | - [issue #34](https://github.com/mrbbot/miniflare/issues/34), thanks |
| 42 | + [issue #34](https://github.com/cloudflare/miniflare/issues/34), thanks |
43 | 43 | [@TimTinkers](https://github.com/TimTinkers) |
44 | 44 |
|
45 | 45 | ## 1.3.3 |
|
88 | 88 | [📄 HTMLRewriter](https://miniflare.dev/html-rewriter.html) for more details. |
89 | 89 | - Added HTTPS support for local development, thanks |
90 | 90 | [@RichiCoder1](https://github.com/RichiCoder1) for the |
91 | | - [suggestion (#12)](https://github.com/mrbbot/miniflare/issues/12). See |
| 91 | + [suggestion (#12)](https://github.com/cloudflare/miniflare/issues/12). See |
92 | 92 | [💻 Using the CLI](https://miniflare.dev/cli.html#https-server) and |
93 | 93 | [🧰 Using the API](https://miniflare.dev/api.html#https-server) for more |
94 | 94 | details. |
95 | 95 | - When using the CLI, the `--watch` flag is now assumed if `--build-watch-path` |
96 | 96 | is set, thanks [@evanderkoogh](https://github.com/evanderkoogh) for the |
97 | | - [PR (#8)](https://github.com/mrbbot/miniflare/pull/8) |
| 97 | + [PR (#8)](https://github.com/cloudflare/miniflare/pull/8) |
98 | 98 | - Added source maps to `CommonJS` module transformation |
99 | 99 |
|
100 | 100 | ### Fixes |
101 | 101 |
|
102 | 102 | - Switched to real values for the `cf` property, thanks |
103 | 103 | [@chase](https://github.com/chase) for the |
104 | | - [PR (#11)](https://github.com/mrbbot/miniflare/pull/11) |
| 104 | + [PR (#11)](https://github.com/cloudflare/miniflare/pull/11) |
105 | 105 | - Upgraded the TOML parser to support dotted keys, thanks |
106 | 106 | [@leader22](https://github.com/leader22) for the |
107 | | - [PR (#13)](https://github.com/mrbbot/miniflare/pull/13) |
| 107 | + [PR (#13)](https://github.com/cloudflare/miniflare/pull/13) |
108 | 108 | - Added `CryptoKey` to the sandbox, thanks [@mosch](https://github.com/mosch) |
109 | | - for the [PR (#14)](https://github.com/mrbbot/miniflare/pull/14) |
| 109 | + for the [PR (#14)](https://github.com/cloudflare/miniflare/pull/14) |
110 | 110 |
|
111 | 111 | ## 1.2.0 |
112 | 112 |
|
|
117 | 117 | [✨ Cache](https://miniflare.dev/cache.html#persistence) and |
118 | 118 | [📌 Durable Objects](https://miniflare.dev/durable-objects.html#persistence) |
119 | 119 | - Added support for loading scripts from `package.json`, closes |
120 | | - [issue #7](https://github.com/mrbbot/miniflare/issues/7). See |
| 120 | + [issue #7](https://github.com/cloudflare/miniflare/issues/7). See |
121 | 121 | [💻 Using the CLI](https://miniflare.dev/cli.html#script-requirement) and |
122 | 122 | [⚡️ Developing with esbuild](https://miniflare.dev/recipes/esbuild.html#dependencies) |
123 | 123 | for more details. |
124 | 124 | - Added `FormData` to the sandbox, closes |
125 | | - [issue #6](https://github.com/mrbbot/miniflare/issues/6) |
| 125 | + [issue #6](https://github.com/cloudflare/miniflare/issues/6) |
126 | 126 | - Added an automatic update checker. See |
127 | 127 | [💻 Using the CLI](https://miniflare.dev/cli.html#update-checker) for more |
128 | 128 | details. |
|
134 | 134 | ### Fixes |
135 | 135 |
|
136 | 136 | - Fixed **Windows** support, closes |
137 | | - [issue #10](https://github.com/mrbbot/miniflare/issues/10) |
| 137 | + [issue #10](https://github.com/cloudflare/miniflare/issues/10) |
138 | 138 | - Fixed issue where scripts were not reloaded correctly when editing script path |
139 | 139 | in `wrangler.toml`. Scripts are now always reloaded on options change. |
140 | 140 | `Miniflare.reloadScript()` is now deprecated. You should use |
|
232 | 232 |
|
233 | 233 | - Fixed error if options object (containing `type` and `cacheTtl` properties) |
234 | 234 | passed as second parameter to KV `get` method, closes |
235 | | - [issue #3](https://github.com/mrbbot/miniflare/issues/3) |
| 235 | + [issue #3](https://github.com/cloudflare/miniflare/issues/3) |
236 | 236 | - Fixed error if `ArrayBuffer` passed as `data` to |
237 | 237 | `crypto.subtle.digest("md5", data)` |
238 | 238 | - Fixed handling of `ignoreMethod` option for `Cache` `match` and `delete` |
|
246 | 246 | ### Fixes |
247 | 247 |
|
248 | 248 | - Depend on `@mrbbot/node-fetch` from npm instead of GitHub, closes |
249 | | - [issue #2](https://github.com/mrbbot/miniflare/issues/2) |
| 249 | + [issue #2](https://github.com/cloudflare/miniflare/issues/2) |
250 | 250 |
|
251 | 251 | ## 0.1.0 |
252 | 252 |
|
|
0 commit comments