Bump miniflare from 2.8.2 to 2.9.0 #21

Closed
dependabot[bot] wants to merge 1 commit from dependabot/npm_and_yarn/miniflare-2.9.0 into master
dependabot[bot] commented 2022-09-24 22:08:18 +00:00 (Migrated from github.com)

Bumps miniflare from 2.8.2 to 2.9.0.

Release notes

Sourced from miniflare's releases.

2.9.0

Features

  • 💾 Add support for D1. Closes [issue #277](cloudflare/miniflare#277), thanks @​geelen for the PR. Docs coming soon™... 👀

  • 🚪 Add getMiniflareDurableObjectState() and runWithMiniflareDurableObjectGates() functions to the Jest/Vitest environments. This allows you to construct and call instance methods of Durable Objects directly, without having to fetch through a stub. Closes [issue #157](cloudflare/miniflare#157), thanks @​jorroll.

    // Durable Object class, would probably come from an import
    class Counter {
      constructor(state) {
        this.storage = state.storage;
      }
      async fetch() {
        const count = ((await this.storage.get("count")) ?? 0) + 1;
        void this.storage.put("count", count);
        return new Response(String(count));
      }
    }
    

    const env = getMiniflareBindings(); // Use standard Durable Object bindings to generate IDs const id = env.COUNTER.newUniqueId(); // Get DurableObjectState, and seed data const state = await getMiniflareDurableObjectState(id); await state.storage.put("count", 3); // Construct object directly const object = new Counter(state, env); // Call instance method directly, closing input gate, // and waiting for output gate to open const res = await runWithMiniflareDurableObjectGates(state, () => object.fetch(new Request("http://localhost/")) ); expect(await res.text()).toBe("4");

  • 🥷 Don't construct corresponding Durable Object instance when calling Miniflare#getDurableObjectStorage(). This allows you to seed data before your Durable Object's constructor is invoked. Closes [issue #300](cloudflare/miniflare#300), thanks @​spigaz.

  • ☑️ Add support for WebSocket#readyState and WebSocket.READY_STATE_{CONNECTING,OPEN,CLOSING,CLOSED} constants. Note these constant names intentionally deviate from the spec to match the Workers runtime.

  • 📜 Add persistent history to the REPL. This respects the MINIFLARE_REPL_HISTORY, MINIFLARE_REPL_HISTORY_SIZE, and MINIFLARE_REPL_MODE environment variables based on Node's.

  • 💵 Add support for Range, If-Modified-Since and If-None-Match headers on Requests to Cache#match. Closes [issue #246](cloudflare/miniflare#246).

Fixes

  • Don't wait for waitUntil Promises to resolve before opening WebSocket connections
  • Allow WebSockets to be close()d on receiving a close event. Closes [issue #331](cloudflare/miniflare#331), thanks @​awthwathje.
  • Ensure calling WebSocket#close() before returning a WebSocket response sends the correct close code and reason.
  • Fix delivery of incoming WebSocket error events
  • Ensure only scheduled Durable Object alarms are flushed. Previously, flushing all alarms would attempt to execute the alarm handler of every constructed Durable Object instance, even if that instance hadn't scheduled an alarm, or didn't have an alarm handler.
  • Delay scheduled missed alarms. Previously, if Durable Object persistence was enabled, and an alarm should've executed when Miniflare wasn't running, Miniflare may have crashed on startup. Closes [issue #359](cloudflare/miniflare#359), thanks @​AlCalzone.
  • Allow empty-chunk writes to IdentityTransformStream. Closes [issue #374](cloudflare/miniflare#374), thanks @​cdloh.
  • Don't hang when fetching from Durable Objects with fake-timers installed. Closes [issue #190](cloudflare/miniflare#190), thanks @​vlovich.

... (truncated)

Changelog

Sourced from miniflare's changelog.

2.9.0

Features

  • 💾 Add support for D1. Closes [issue #277](cloudflare/miniflare#277), thanks @​geelen for the PR. Docs coming soon™... 👀

  • 🚪 Add getMiniflareDurableObjectState() and runWithMiniflareDurableObjectGates() functions to the Jest/Vitest environments. This allows you to construct and call instance methods of Durable Objects directly, without having to fetch through a stub. Closes [issue #157](cloudflare/miniflare#157), thanks @​jorroll.

    // Durable Object class, would probably come from an import
    class Counter {
      constructor(state) {
        this.storage = state.storage;
      }
      async fetch() {
        const count = ((await this.storage.get("count")) ?? 0) + 1;
        void this.storage.put("count", count);
        return new Response(String(count));
      }
    }
    

    const env = getMiniflareBindings(); // Use standard Durable Object bindings to generate IDs const id = env.COUNTER.newUniqueId(); // Get DurableObjectState, and seed data const state = await getMiniflareDurableObjectState(id); await state.storage.put("count", 3); // Construct object directly const object = new Counter(state, env); // Call instance method directly, closing input gate, // and waiting for output gate to open const res = await runWithMiniflareDurableObjectGates(state, () => object.fetch(new Request("http://localhost/")) ); expect(await res.text()).toBe("4");

  • 🥷 Don't construct corresponding Durable Object instance when calling Miniflare#getDurableObjectStorage(). This allows you to seed data before your Durable Object's constructor is invoked. Closes [issue #300](cloudflare/miniflare#300), thanks @​spigaz.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps [miniflare](https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare) from 2.8.2 to 2.9.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cloudflare/miniflare/releases">miniflare's releases</a>.</em></p> <blockquote> <h2>2.9.0</h2> <h3>Features</h3> <ul> <li> <p>💾 <strong>Add support for D1. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/277">#277</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/277">cloudflare/miniflare#277</a>), thanks <a href="https://github.com/geelen"><code>@​geelen</code></a> for <a href="https://github-redirect.dependabot.com/cloudflare/miniflare/pull/329">the PR</a>.</strong> Docs coming soon™... 👀</p> </li> <li> <p>🚪 <strong>Add <code>getMiniflareDurableObjectState()</code> and <code>runWithMiniflareDurableObjectGates()</code> functions</strong> to the Jest/Vitest environments. This allows you to construct and call instance methods of Durable Objects directly, without having to fetch through a stub. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/157">#157</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/157">cloudflare/miniflare#157</a>), thanks <a href="https://github.com/jorroll"><code>@​jorroll</code></a>.</p> <pre lang="js"><code>// Durable Object class, would probably come from an import class Counter { constructor(state) { this.storage = state.storage; } async fetch() { const count = ((await this.storage.get(&quot;count&quot;)) ?? 0) + 1; void this.storage.put(&quot;count&quot;, count); return new Response(String(count)); } } <p>const env = getMiniflareBindings(); // Use standard Durable Object bindings to generate IDs const id = env.COUNTER.newUniqueId(); // Get DurableObjectState, and seed data const state = await getMiniflareDurableObjectState(id); await state.storage.put(&quot;count&quot;, 3); // Construct object directly const object = new Counter(state, env); // Call instance method directly, closing input gate, // and waiting for output gate to open const res = await runWithMiniflareDurableObjectGates(state, () =&gt; object.fetch(new Request(&quot;<a href="http://localhost/">http://localhost/</a>&quot;)) ); expect(await res.text()).toBe(&quot;4&quot;); </code></pre></p> </li> <li> <p>🥷 Don't construct corresponding Durable Object instance when calling <code>Miniflare#getDurableObjectStorage()</code>. This allows you to seed data <em>before</em> your Durable Object's constructor is invoked. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/300">#300</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/300">cloudflare/miniflare#300</a>), thanks <a href="https://github.com/spigaz"><code>@​spigaz</code></a>.</p> </li> <li> <p>☑️ <strong>Add support for <code>WebSocket#readyState</code></strong> and <code>WebSocket.READY_STATE_{CONNECTING,OPEN,CLOSING,CLOSED}</code> constants. Note these constant names intentionally deviate from <a href="https://websockets.spec.whatwg.org/#interface-definition">the spec</a> to match the Workers runtime.</p> </li> <li> <p>📜 <strong>Add persistent history to the REPL.</strong> This respects the <code>MINIFLARE_REPL_HISTORY</code>, <code>MINIFLARE_REPL_HISTORY_SIZE</code>, and <code>MINIFLARE_REPL_MODE</code> environment variables <a href="https://nodejs.org/api/repl.html#environment-variable-options">based on Node's</a>.</p> </li> <li> <p>💵 <strong>Add support for <code>Range</code>, <code>If-Modified-Since</code> and <code>If-None-Match</code> headers</strong> on <code>Request</code>s to <code>Cache#match</code>. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/246">#246</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/246">cloudflare/miniflare#246</a>).</p> </li> </ul> <h3>Fixes</h3> <ul> <li>Don't wait for <code>waitUntil</code> <code>Promise</code>s to resolve before opening WebSocket connections</li> <li>Allow WebSockets to be <code>close()</code>d on receiving a <code>close</code> event. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/331">#331</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/331">cloudflare/miniflare#331</a>), thanks <a href="https://github.com/awthwathje"><code>@​awthwathje</code></a>.</li> <li>Ensure calling <code>WebSocket#close()</code> before returning a WebSocket response sends the correct close code and reason.</li> <li>Fix delivery of incoming <code>WebSocket</code> <code>error</code> events</li> <li>Ensure only scheduled Durable Object alarms are flushed. Previously, flushing all alarms would attempt to execute the <code>alarm</code> handler of every constructed Durable Object instance, even if that instance hadn't scheduled an alarm, or didn't have an <code>alarm</code> handler.</li> <li>Delay scheduled missed alarms. Previously, if Durable Object persistence was enabled, and an alarm should've executed when Miniflare wasn't running, Miniflare may have crashed on startup. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/359">#359</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/359">cloudflare/miniflare#359</a>), thanks <a href="https://github.com/AlCalzone"><code>@​AlCalzone</code></a>.</li> <li>Allow empty-chunk writes to <code>IdentityTransformStream</code>. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/374">#374</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/374">cloudflare/miniflare#374</a>), thanks <a href="https://github.com/cdloh"><code>@​cdloh</code></a>.</li> <li>Don't hang when fetching from Durable Objects with fake-timers installed. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/190">#190</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/190">cloudflare/miniflare#190</a>), thanks <a href="https://github.com/vlovich"><code>@​vlovich</code></a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cloudflare/miniflare/blob/master/docs/CHANGELOG.md">miniflare's changelog</a>.</em></p> <blockquote> <h2>2.9.0</h2> <h3>Features</h3> <ul> <li> <p>💾 <strong>Add support for D1. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/277">#277</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/277">cloudflare/miniflare#277</a>), thanks <a href="https://github.com/geelen"><code>@​geelen</code></a> for <a href="https://github-redirect.dependabot.com/cloudflare/miniflare/pull/329">the PR</a>.</strong> Docs coming soon™... 👀</p> </li> <li> <p>🚪 <strong>Add <code>getMiniflareDurableObjectState()</code> and <code>runWithMiniflareDurableObjectGates()</code> functions</strong> to the Jest/Vitest environments. This allows you to construct and call instance methods of Durable Objects directly, without having to fetch through a stub. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/157">#157</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/157">cloudflare/miniflare#157</a>), thanks <a href="https://github.com/jorroll"><code>@​jorroll</code></a>.</p> <pre lang="js"><code>// Durable Object class, would probably come from an import class Counter { constructor(state) { this.storage = state.storage; } async fetch() { const count = ((await this.storage.get(&quot;count&quot;)) ?? 0) + 1; void this.storage.put(&quot;count&quot;, count); return new Response(String(count)); } } <p>const env = getMiniflareBindings(); // Use standard Durable Object bindings to generate IDs const id = env.COUNTER.newUniqueId(); // Get DurableObjectState, and seed data const state = await getMiniflareDurableObjectState(id); await state.storage.put(&quot;count&quot;, 3); // Construct object directly const object = new Counter(state, env); // Call instance method directly, closing input gate, // and waiting for output gate to open const res = await runWithMiniflareDurableObjectGates(state, () =&gt; object.fetch(new Request(&quot;<a href="http://localhost/">http://localhost/</a>&quot;)) ); expect(await res.text()).toBe(&quot;4&quot;); </code></pre></p> </li> <li> <p>🥷 Don't construct corresponding Durable Object instance when calling <code>Miniflare#getDurableObjectStorage()</code>. This allows you to seed data <em>before</em> your Durable Object's constructor is invoked. Closes [issue <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/300">#300</a>](<a href="https://github-redirect.dependabot.com/cloudflare/miniflare/issues/300">cloudflare/miniflare#300</a>), thanks <a href="https://github.com/spigaz"><code>@​spigaz</code></a>.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cloudflare/miniflare/commit/974c7c2796cfa243f8eb0569cd2f37b59795ed71"><code>974c7c2</code></a> Bump versions to <code>2.9.0</code>, update <code>CHANGELOG.md</code> and docs</li> <li><a href="https://github.com/cloudflare/miniflare/commit/6bace6b464e1458ac3621d14d639750455299853"><code>6bace6b</code></a> D1 beta support (<a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/329">#329</a>)</li> <li><a href="https://github.com/cloudflare/miniflare/commit/2ca811522797015671a0e2a3cef99b60e9c52a73"><code>2ca8115</code></a> Add persistent history to REPL, closes <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/304">#304</a></li> <li><a href="https://github.com/cloudflare/miniflare/commit/6299d1dd5b2c2cb07a67e4a3a4547bf35edf1343"><code>6299d1d</code></a> Don't construct object on <code>getDurableObjectStorage</code>, closes <a href="https://github.com/cloudflare/miniflare/tree/HEAD/packages/miniflare/issues/300">#300</a></li> <li><a href="https://github.com/cloudflare/miniflare/commit/3c9763bb60d7893f4529af8e724b91dba69aa876"><code>3c9763b</code></a> Make <code>StorageFactory#storage</code> synchronous</li> <li>See full diff in <a href="https://github.com/cloudflare/miniflare/commits/v2.9.0/packages/miniflare">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=miniflare&package-manager=npm_and_yarn&previous-version=2.8.2&new-version=2.9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
dependabot[bot] commented 2022-09-25 06:51:03 +00:00 (Migrated from github.com)

Looks like miniflare is up-to-date now, so this is no longer needed.

Looks like miniflare is up-to-date now, so this is no longer needed.

Pull request closed

Sign in to join this conversation.
No description provided.