dependabot[bot] opened a new pull request, #249: URL: https://github.com/apache/arrow-js/pull/249
Bumps [web-streams-polyfill](https://github.com/MattiasBuelens/web-streams-polyfill) from 3.2.1 to 4.2.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.2.0</h2> <ul> <li>👓 Align with <a href="https://github.com/whatwg/streams/tree/080852ccd709e063cc6af239ae07fc040e365179/">spec version <code>080852c</code></a> (<a href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/161">#161</a>)</li> </ul> <h2>v4.1.0</h2> <ul> <li>👓 Align with <a href="https://github.com/whatwg/streams/tree/fa4891a35ff05281ff8ed66f8ad447644ea7cec3/">spec version <code>fa4891a</code></a> (<a href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/156">#156</a>) <ul> <li>Commit pull-into descriptors <em>after</em> filling them from the internal queue. This prevents an issue where an incorrect BYOB request would temporarily be visible through a patched <code>Object.prototype.then</code>, which broke some internal invariants.</li> <li>The <code>next()</code> and <code>return()</code> methods of <code>ReadableStream</code>'s async iterator are now correctly "chained", such that the promises returned by <em>either</em> of these methods are always resolved in the same order as those methods were called.</li> </ul> </li> <li>💅 Improve type of <code>WritableStreamDefaultController.signal</code>. (<a href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/157">#157</a>)</li> </ul> <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>"node16"</code>, <code>"nodenext"</code> or <code>"bundler"</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> </tbody> </table> <!-- 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.2.0 (2025-08-17)</h2> <ul> <li>👓 Align with <a href="https://github.com/whatwg/streams/tree/080852ccd709e063cc6af239ae07fc040e365179/">spec version <code>080852c</code></a> (<a href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/161">#161</a>)</li> </ul> <h2>4.1.0 (2025-01-05)</h2> <ul> <li>👓 Align with <a href="https://github.com/whatwg/streams/tree/fa4891a35ff05281ff8ed66f8ad447644ea7cec3/">spec version <code>fa4891a</code></a> (<a href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/156">#156</a>) <ul> <li>Commit pull-into descriptors <em>after</em> filling them from the internal queue. This prevents an issue where an incorrect BYOB request would temporarily be visible through a patched <code>Object.prototype.then</code>, which broke some internal invariants.</li> <li>The <code>next()</code> and <code>return()</code> methods of <code>ReadableStream</code>'s async iterator are now correctly "chained", such that the promises returned by <em>either</em> of these methods are always resolved in the same order as those methods were called.</li> </ul> </li> <li>💅 Improve type of <code>WritableStreamDefaultController.signal</code>. (<a href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/pull/157">#157</a>)</li> </ul> <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>"node16"</code>, <code>"nodenext"</code> or <code>"bundler"</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<R></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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/46d22ccb22bd9f6a10f488694cd89b3ca0d2bc9b"><code>46d22cc</code></a> 4.2.0</li> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/d52ac12a344fee6262f23f2b6aec0063876ce630"><code>d52ac12</code></a> Update changelog [skip ci]</li> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/848cdb2aae10ac759ba6858e80f27bf8baf2e253"><code>848cdb2</code></a> Merge pull request <a href="https://redirect.github.com/MattiasBuelens/web-streams-polyfill/issues/161">#161</a> from MattiasBuelens/update-20250403</li> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/ef982600c1fbe00ca188cd5dfbf1f3c655e0ec59"><code>ef98260</code></a> Update copyright year</li> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/a16cbe47956a6cb107217e37cc7e63d4059863ab"><code>a16cbe4</code></a> Bump minimum supported TypeScript version to 5.7</li> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/5c05bf9adb243dd0bdfdc3ba8a844feb6509556d"><code>5c05bf9</code></a> Fix CI</li> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/ca42de58ac2e1c95ed1eaad68ec626e766f2ad21"><code>ca42de5</code></a> Fix lint issues</li> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/fa14baa36805d27f4f3908ef1bbb53332eba7108"><code>fa14baa</code></a> Tweak</li> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/877b6e6cb097b313f9224f246f7724b84eec96da"><code>877b6e6</code></a> Rename stuff</li> <li><a href="https://github.com/MattiasBuelens/web-streams-polyfill/commit/a854c4761b778ebdd418a82bc52d2ee17664d00e"><code>a854c47</code></a> Use npm workspace</li> <li>Additional commits viewable in <a href="https://github.com/MattiasBuelens/web-streams-polyfill/compare/v3.2.1...v4.2.0">compare view</a></li> </ul> </details> <br /> [](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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org