dependabot[bot] opened a new pull request, #41483:
URL: https://github.com/apache/arrow/pull/41483

   Bumps 
[web-streams-polyfill](https://github.com/MattiasBuelens/web-streams-polyfill) 
from 3.2.1 to 4.0.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/releases";>web-streams-polyfill's
 releases</a>.</em></p>
   <blockquote>
   <h2>v4.0.0</h2>
   <ul>
   <li>💥 Rework the list of variants to have more modern defaults. The table 
below shows how to upgrade your v3 import to their equivalent v4 import. See 
the <a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/blob/master/MIGRATING.md";>migration
 guide</a> for more information. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/82";>#82</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/139";>#139</a>)</li>
   <li>💥 Remove the ES2018 variant, in favor of the ES2015 variant.</li>
   <li>💥 Switch to <a 
href="https://nodejs.org/api/packages.html#subpath-exports";>subpath exports</a> 
for variants.
   <ul>
   <li>Node 12 or higher is required to <code>import</code> or 
<code>require()</code> a variant.</li>
   <li>When using TypeScript, version 4.7 or higher is now required. 
Additionally, <a 
href="https://www.typescriptlang.org/tsconfig#moduleResolution";><code>moduleResolution</code></a>
 must be set to <code>&quot;node16&quot;</code>, 
<code>&quot;nodenext&quot;</code> or <code>&quot;bundler&quot;</code>.</li>
   </ul>
   </li>
   <li>🚀 Support <a href="https://nodejs.org/api/esm.html";>importing as ESM in 
Node</a>.</li>
   <li>💅 Minify all code in the published package, to reduce the download 
size.</li>
   <li>💅 Rework <code>ReadableStream.from()</code> implementation to avoid 
depending on <code>async function*</code> down-leveling for ES5. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/144";>#144</a>)</li>
   </ul>
   <table>
   <thead>
   <tr>
   <th>v3 import</th>
   <th>v4 import</th>
   <th>description</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td><code>web-streams-polyfill</code></td>
   <td><code>web-streams-polyfill/polyfill/es5</code></td>
   <td>ES5+ polyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/es6</code></td>
   <td><code>web-streams-polyfill/polyfill</code></td>
   <td>ES2015+ polyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/es2018</code></td>
   <td><code>web-streams-polyfill/polyfill</code></td>
   <td>ES2015+ polyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/ponyfill</code></td>
   <td><code>web-streams-polyfill/es5</code></td>
   <td>ES5+ ponyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/ponyfill/es6</code></td>
   <td><code>web-streams-polyfill</code></td>
   <td>ES2015+ ponyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/ponyfill/es2018</code></td>
   <td><code>web-streams-polyfill</code></td>
   <td>ES2015+ ponyfill</td>
   </tr>
   </tbody>
   </table>
   <h2>v4.0.0-beta.3</h2>
   <ul>
   <li>👓 Align with <a 
href="https://github.com/whatwg/streams/tree/e9355ce79925947e8eb496563d599c329769d315/";>spec
 version <code>e9355ce</code></a>. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/115";>#115</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/117";>#117</a>)</li>
   <li>🐛 Fix <code>pipeTo()</code> never rejecting when aborting its 
<code>signal</code> and <code>preventCancel</code> is set to <code>true</code>. 
(<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/118";>#118</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/119";>#119</a>)</li>
   </ul>
   <h2>v4.0.0-beta.2</h2>
   <ul>
   <li>🚀 Support calling <code>ReadableStream.pipeTo(writable)</code> and 
<code>.pipeThrough({ readable, writable })</code> when <code>writable</code> is 
a native (i.e. not polyfilled) <code>WritableStream</code>. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/99";>#99</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/101";>#101</a>)</li>
   <li>💅 Add fallback for package exports for backwards compatibility with 
older Node versions. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/107";>#107</a>)</li>
   <li>🐛 Prevent <a 
href="http://bluebirdjs.com/docs/warning-explanations.html#warning-a-promise-was-created-in-a-handler-but-was-not-returned-from-it";>warnings
 from Bluebird</a> about a promise being created within a handler but not being 
returned from a handler. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/91";>#91</a>)</li>
   </ul>
   <h2>v4.0.0-beta.1</h2>
   <ul>
   <li>💥 Rework the list of variants to have more modern defaults.
   The table below shows how to upgrade your v3 import to their equivalent v4 
import.
   See the <a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/blob/v4.0.0-beta.1/MIGRATING.md";>migration
 guide</a> for more information.
   (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/82";>#82</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/83";>#83</a>)</li>
   <li>💥 Remove the ES2018 variant, in favor of the ES2015 variant.</li>
   <li>🚀 Support <a href="https://nodejs.org/api/esm.html";>importing as ESM in 
Node</a>.</li>
   <li>💅 Minify all code in the published package, to reduce the download 
size.</li>
   </ul>
   <table>
   <thead>
   <tr>
   <th>v3 import</th>
   <th>v4 import</th>
   <th>description</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td><code>web-streams-polyfill</code></td>
   <td><code>web-streams-polyfill/polyfill/es5</code></td>
   <td>ES5+ polyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/es6</code></td>
   <td><code>web-streams-polyfill/polyfill</code></td>
   <td>ES2015+ polyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/es2018</code></td>
   <td><code>web-streams-polyfill/polyfill</code></td>
   <td>ES2015+ polyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/ponyfill</code></td>
   <td><code>web-streams-polyfill/es5</code></td>
   <td>ES5+ ponyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/ponyfill/es6</code></td>
   <td><code>web-streams-polyfill</code></td>
   <td>ES2015+ ponyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/ponyfill/es2018</code></td>
   <td><code>web-streams-polyfill</code></td>
   <td>ES2015+ ponyfill</td>
   </tr>
   </tbody>
   </table>
   <h2>v3.3.3</h2>
   <ul>
   <li>🐛 Fix <code>ReadableStream</code> to match TypeScript's 
<code>AsyncIterable&lt;R&gt;</code> type. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/141";>#141</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/142";>#142</a>)</li>
   </ul>
   <h2>v3.3.2</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/blob/master/CHANGELOG.md";>web-streams-polyfill's
 changelog</a>.</em></p>
   <blockquote>
   <h2>4.0.0 (2024-02-28)</h2>
   <ul>
   <li>💥 Rework the list of variants to have more modern defaults.
   The table below shows how to upgrade your v3 import to their equivalent v4 
import.
   See the <a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/blob/master/MIGRATING.md";>migration
 guide</a> for more information.
   (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/82";>#82</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/139";>#139</a>)</li>
   <li>💥 Remove the ES2018 variant, in favor of the ES2015 variant.</li>
   <li>💥 Switch to <a 
href="https://nodejs.org/api/packages.html#subpath-exports";>subpath exports</a> 
for variants.
   <ul>
   <li>Node 12 or higher is required to <code>import</code> or 
<code>require()</code> a variant.</li>
   <li>When using TypeScript, version 4.7 or higher is now required. 
Additionally, <a 
href="https://www.typescriptlang.org/tsconfig#moduleResolution";><code>moduleResolution</code></a>
 must be set to <code>&quot;node16&quot;</code>, 
<code>&quot;nodenext&quot;</code> or <code>&quot;bundler&quot;</code>.</li>
   </ul>
   </li>
   <li>🚀 Support <a href="https://nodejs.org/api/esm.html";>importing as ESM in 
Node</a>.</li>
   <li>💅 Minify all code in the published package, to reduce the download 
size.</li>
   <li>💅 Rework <code>ReadableStream.from()</code> implementation to avoid 
depending on <code>async function*</code> down-leveling for ES5. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/144";>#144</a>)</li>
   </ul>
   <table>
   <thead>
   <tr>
   <th>v3 import</th>
   <th>v4 import</th>
   <th>description</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td><code>web-streams-polyfill</code></td>
   <td><code>web-streams-polyfill/polyfill/es5</code></td>
   <td>ES5+ polyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/es6</code></td>
   <td><code>web-streams-polyfill/polyfill</code></td>
   <td>ES2015+ polyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/es2018</code></td>
   <td><code>web-streams-polyfill/polyfill</code></td>
   <td>ES2015+ polyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/ponyfill</code></td>
   <td><code>web-streams-polyfill/es5</code></td>
   <td>ES5+ ponyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/ponyfill/es6</code></td>
   <td><code>web-streams-polyfill</code></td>
   <td>ES2015+ ponyfill</td>
   </tr>
   <tr>
   <td><code>web-streams-polyfill/ponyfill/es2018</code></td>
   <td><code>web-streams-polyfill</code></td>
   <td>ES2015+ ponyfill</td>
   </tr>
   </tbody>
   </table>
   <h2>3.3.3 (2024-02-16)</h2>
   <ul>
   <li>🐛 Fix <code>ReadableStream</code> to match TypeScript's 
<code>AsyncIterable&lt;R&gt;</code> type. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/141";>#141</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/142";>#142</a>)</li>
   </ul>
   <h2>3.3.2 (2024-01-04)</h2>
   <ul>
   <li>🐛 Fix bad publish to npm.</li>
   </ul>
   <h2>3.3.1 (2024-01-04)</h2>
   <ul>
   <li>🐛 Revert <code>engines</code> bump in <code>package.json</code>. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/137";>#137</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/138";>#138</a>)</li>
   <li>🐛 Re-introduce support for TypeScript 3.5 and below. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/137";>#137</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/138";>#138</a>)</li>
   </ul>
   <h2>3.3.0 (2024-01-04)</h2>
   <ul>
   <li>🚀 Added global augmentations for <code>ReadableStream</code> to the 
polyfill's type definitions. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/130";>#130</a>)
   <ul>
   <li>This allows TypeScript users to use new methods such as 
<code>ReadableStream.prototype[Symbol.asyncIterator]()</code>,
   even when TypeScript doesn't yet have a built-in type definition for 
them.</li>
   </ul>
   </li>
   <li><del>💥 The type definitions now require TypeScript 3.6 or higher. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/130";>#130</a>)</del>
 (Reverted in version 3.3.1)</li>
   <li>👓 Align with <a 
href="https://github.com/whatwg/streams/tree/4dc123a6e7f7ba89a8c6a7975b021156f39cab52/";>spec
 version <code>4dc123a</code></a> (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/115";>#115</a>,
 <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/134";>#134</a>)
   <ul>
   <li>Added <code>ReadableStream.from(asyncIterable)</code>, which creates a 
<code>ReadableStream</code> wrapping the given iterable or async iterable.
   This can also be used to wrap a native <code>ReadableStream</code> (e.g. a 
<code>Response.body</code> from <code>fetch()</code>),
   even if the native <code>ReadableStream</code> doesn't yet support async 
iteration. (<a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/135";>#135</a>)</li>
   <li>Added <code>Transformer.cancel</code> method, which is called when the 
readable side of a <code>TransformStream</code> is cancelled or when its 
writable side is aborted.</li>
   <li>Added <code>min</code> option to 
<code>ReadableStreamBYOBReader.read(view, options)</code>.</li>
   <li>Added support for <code>AbortSignal.reason</code> when aborting a 
pipe.</li>
   </ul>
   </li>
   <li>🚀 Buffers passed to <code>ReadableStreamBYOBReader.read(view)</code> 
will now be correctly <a 
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer#transferring_arraybuffers";>transferred</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/9eeeb1355f46f1ffd116799d236a34987d1f4e45";><code>9eeeb13</code></a>
 4.0.0</li>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/4b0cdbf321e6c64ab8b67fff2a88499daf653f09";><code>4b0cdbf</code></a>
 Update changelog [skip ci]</li>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/f0f67cbe62cbe3f3952904f55992561ec4593825";><code>f0f67cb</code></a>
 Remove obsolete note [skip ci]</li>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/a5eb58fceb70abe4bdd3fc7280277c6b1b372cfe";><code>a5eb58f</code></a>
 Update links [skip ci]</li>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/1b99bf05881fb656e843c6bd6a3fcfe07056b7eb";><code>1b99bf0</code></a>
 Merge branch 'v4'</li>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/7ffbb951ceeed30cad7688fff54dce82ddf170c0";><code>7ffbb95</code></a>
 Merge pull request <a 
href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/144";>#144</a>
 from MattiasBuelens/optimize-rs-from</li>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/93d28a18611eeebe7488ce14dbc35b3f0da76750";><code>93d28a1</code></a>
 Update changelog [skip ci]</li>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/fc67d1626e9e020b36236a0b63702d64b4eee1b9";><code>fc67d16</code></a>
 Implement CreateAsyncFromSyncIterator manually</li>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/a5d18304f1c84d9a7de2975ed15c71ccf1f3dee8";><code>a5d1830</code></a>
 Remove IteratorComplete and IteratorValue</li>
   <li><a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/52778d48645de4d19e08ccfcc936608d8c477e06";><code>52778d4</code></a>
 Use promiseCall</li>
   <li>Additional commits viewable in <a 
href="https://github.com/MattiasBuelens/web-streams-polyfill/compare/v3.2.1...v4.0.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=web-streams-polyfill&package-manager=npm_and_yarn&previous-version=3.2.1&new-version=4.0.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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to